devmiles.com
devmiles.com

Reputation: 10014

How to create an MVC 5 project in Visual Studio 2015

When I select ASP.NET Web Application template my template chooser screen looks like this: enter image description here

There's no MVC template for ASP.NET 4.6. Same for 4.5 Framework versions.

Upvotes: 5

Views: 39215

Answers (4)

Boncho Valkov
Boncho Valkov

Reputation: 1619

There is a web application.. curretnly it is still in beta,but it provides good backend architecture and very fast download of functional MVC template

http://asptemplatestack.com/Templates/GetAll

Upvotes: 0

Nirav Madariya
Nirav Madariya

Reputation: 1508

As you had asked about MVC 5, and you don't have it in your template[as in screen shot] and not asking about asp.net 5,

You can download asp.net and web tool Here [VS Extension].

or you can directly add Microsoft ASP.NET MVC 5.2.3 Here [NuGet Package].

Here's prerelease version of MVC 6.0.0 rc1 [NuGet Package].

Alternate Link
Microsoft ASP.NET and Web Tools 2015 (RC) – Visual Studio 2015 : Microsoft Website

Upvotes: 1

W. Buzatto
W. Buzatto

Reputation: 51

to see the MVC template, download ans install the Microsoft Web Developer Tools.

Then, below the aspnet 4.6 templates will be your template MVC 5

To use MVC 6 (Now it is called MVC Core 1.0) choose Web Application under the Asp.Net 5 Template, and then MVC.

Att,

Upvotes: 1

Gabriel
Gabriel

Reputation: 2021

If you choose the Web Application under the ASP.NET 5 Preview Templates you will have a project that uses ASP.NET MVC and can be used to build Web Applications or Web API RESTFul services.

I do have the Visual Studio 2015 Enterprise, this is what I see: enter image description here

after you click this OK button, you will create a MVC 6 project in this VS2015

Did you have the "Microsoft Web Developer Tool" checked when you started the installation?

Upvotes: 5

Related Questions