当我尝试在Visual Studio 2015 Community Edition中创建ASP.NET 5项目时,我没有看到MVC模板:
我已尝试过" Missing MVC template in Visual Studio 2015"的解决方案。但没有快乐。
Visual Studio 2015 Community Edition是否具有MVC模板?
答案 0 :(得分:9)
我继续前进的答案简直令人尴尬。在ASP.NET 5下,MVC模板没有选项,因为选择Web应用程序会为您提供MVC模板。
答案 1 :(得分:4)
如果您在4.5.2部分中选择MVC模板,则Asp.net 4.5.2使用MVC 5。您可以在创建项目后查看web.config来检查这一点,并且MVC的版本号将在那里。
<dependentAssembly>
<assemblyIdentity name="System.Web.Mvc" publicKeyToken="31bf3856ad364e35" />
<bindingRedirect oldVersion="0.0.0.0-5.2.3.0" newVersion="5.2.3.0" />
</dependentAssembly>
如果您选择ASP.NET 5,您将获得MVC 6,这是一种非常不同的动物。