-
Notifications
You must be signed in to change notification settings - Fork 79
Description
Hi everyone -
As you may have seen in this week's ASP.NET Community Standup and Scott Hanselman's blog post ASP.NET 5 is dead - Introducing ASP.NET Core 1.0 and .NET Core 1.0, ASP.NET 5 is being renamed to ASP.NET Core 1 and Entity Framework 7 is being renamed to Entity Framework Core 1.
In this post I'll share some of the technical details of the update to prepare you for the change.
The three largest parts of the change are:
- The
Microsoft.AspNet.*
packages and namespaces are changing toMicrosoft.AspNetCore.*
. - The
EntityFramework.*
packages and namespaces are changing toMicrosoft.EntityFrameworkCore.*
. - The version numbers of all of the above are being reset to
1.0.0-*
.
Some smaller changes are:
- A few packages are having their versions dropped to
0.1.0-*
. This is going to be used in packages that are not quite ready for prime-time and so we are leaving them in a pre-release state. For example, the SignalR packages remain in this state for the time being. Once 1.0.0 ships we will work to bring these packages back to the RTM state. - GitHub issue milestones and Git repo tags will be updated to reflect the new versions (though we will keep legacy Git repo tags to reflect the original history).
Some things that are not changing are:
- The
Microsoft.Extensions.*
packages are remaining pretty much as-is (same names, same versions). - No functionality is being changed (at least, not on purpose!).
- MyGet feed locations, web sites, etc.
There are a number of small exceptions to the items above, such as the Microsoft.AspNet.Identity.EntityFramework
package being renamed to Microsoft.AspNetCore.Identity.EntityFrameworkCore
(to reflect the new names of both ASP.NET and Entity Framework). We will post a full list of renamed packages so you can quickly see the before/after.
This is of course a rather large task, and we have already started work on the rename, and we kindly ask for your patience as we work to resolve all the issues.
We are working on a guidance document that provides further details and we will post a link here when that is available.
We will keep this issue updated with any related breaking changes.
The discussion post for this issue is here: dotnet/aspnetcore#1255
Many thanks,
Eilon Lipton on behalf of the ASP.NET and Entity Framework team