Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to create ASP.NET MVC 5 Web Application in Visual Studio Community 2013?

I am trying to start an MVC 5 project after installing a fresh installation of Visual Studio Community 2013 but when I go to

New Project > Templates > Visual C# > Web > Version2012

all I see in the middle pane is ASP.NET MVC 4 Web Application. Does anyone have any ideas why I do not have ASP.NET MVC 5 Web Application?

I have .NET Framework 4.5.1 selected.

like image 673
Bob the Builder Avatar asked Dec 19 '14 15:12

Bob the Builder


People also ask

How do I create a new MVC project in Visual Studio 2013?

To create new project, Open Visual Studio, I am using Visual Studio 2013 and click on File Menu, then New and choose Project. It will open a new window from where you can choose the application type. Choose Web from Installed and then choose ASP.NET Web Application.

How do I create a Web form in Visual Studio 2013?

To create a Web application projectSelect the Templates -> Visual C# -> Web templates group on the left. Choose the ASP.NET Web Application template in the center column. Name your project BasicWebApp and click the OK button. Next, select the Web Forms template and click the OK button to create the project.

Can I use .NET core in Visual Studio 2013?

Yes, it's possible to build against the . NET Core 5 contracts in Visual Studio 2013 by creating a Portable Class Library that targets . NET Framework 4.5 and Windows 8.


3 Answers

In Visual Studio 2013, you need to select ASP.Net Web Application.

Then you can select what type of Web Application in next step.

enter image description here

enter image description here

like image 102
Win Avatar answered Sep 25 '22 04:09

Win


You must choose New Project > Templates > Visual C# > Web > ASP.NET Web Application and then you will be able to choose MVC between the core references WebForms, MVC and WebAPI

like image 30
dlimos Avatar answered Sep 25 '22 04:09

dlimos


They merged all the Web Applications into one project type. Select ASP.NET Web Application then in the next menu, click MVC to create a new MVC 5 project.

A description of the ASP.NET Web Application project can be found here

like image 22
Jonesopolis Avatar answered Sep 25 '22 04:09

Jonesopolis