How to create an ASP.NET MVC 5 web application in Visual Studio Community 2013?

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

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

All I see in the middle area is an ASP.NET MVC 4 web application. Does anyone have any ideas why I don't have an ASP.NET MVC 5 web application?

I chose the .NET Framework 4.5.1.

+5
source share
4 answers

I had to uninstall all old versions of Visual Studio, and then restore the community version, and then a template miraculously appeared, thanks to everyone who published it.

+2
source

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

Then you can select the type of web application in the next step.

enter image description here

enter image description here

+7
source

You should select New Project> Templates> Visual C #> Web> ASP.NET Web Application, and then you can choose MVC between the main links WebForms, MVC and WebAPI

+2
source

They combined all web applications into one type of project. Select ASP.NET Web Application , then on the next menu, click MVC to create a new MVC 5 project.

ASP.NET Web Application Project Description can be found here.

+2
source

Source: https://habr.com/ru/post/1209558/


All Articles