Reputation: 1
I have seen How to create an MVC 5 project in Visual Studio 2015 before asking this question, but it was asked one year before and I need an actual answer of my question. Which template should I select for creating an MVC5 project? According to the explanations of ASP.NET5 Web Application, it seems to use MVC template and have more features. But if so, why MVC checkbox is not selected? I am confused with this selections.
ASP.NET 4.5.2 Template
ASP.NET 5 Template
Upvotes: 0
Views: 382
Reputation: 24136
You are looking at old (preview) templates. ASP.NET 5 in fact no longer exists, it was re-introduced as ASP.NET Core 1.0.
Most likely you will want to use the 4.5.x template. Or you can read up on ASP.NET Core to see if that suits your needs, because it is still an early product.
More info:
http://www.hanselman.com/blog/ASPNET5IsDeadIntroducingASPNETCore10AndNETCore10.aspx
Upvotes: 1