How To Migrating from ASP.NET 5 RC1 to ASP.NET Core 1.0
ReviewCoreASPNETHosting.NET | Best and cheap ASP.NET Core 1.0 hosting. ASP.NET 5 RC1 apps were based on the .NET Execution Environment (DNX) and made use of DNX specific features. ASP.NET Core 1.0 is based on .NET Core, so you must first migrate your application to the new .NET Core project model.Update Target Framework Monikers (TFMs)
If your app targeted dnx451 or dnxcore50 in the frameworks section of project.json, you must make the following changes:
[su_table]DNX
.NET Corednx451
net451dnxcore50
netcoreapp1.0[/su_table]
.NET Core apps must add a dependency to the Microsoft.NETCore.App package:"dependencies": {
"Microsoft.NETCore.App": {
"version": "1.0.0",
"type": "platform"
},
Namespace and package ID changesASP.NET 5 has been renamed to ASP.NET Core 1.0
ASP.NET MVC and Identity are now part of ASP.NET Core
ASP.NET MVC 6 is now ASP.NET Core MVC
ASP.NET Identity 3 is now ASP.NET Core Identity
ASP.NET Core 1.0 package versions are 1.0.0
ASP.NET Core 1.0...