Reputation: 1500
I am new to this ASP.NET versions and I built an app on ASP.NET CORE RC1, MVC6, EF7 & ANGULARJS. I was told that I would need to update the app to use v1 release of .NET Core instead of a release candidate.
I don't know much but that the change was significant with RC1 to RC2, but what do I have to do to update the app for it to work for the .NET Core v1 release?
Upvotes: 1
Views: 57
Reputation: 76597
The changes from RC1 to the recent RTM release are fairly substantial and contain lots of breaking changes (i.e. different API calls, differently named namespaces/packages, etc.) and there isn't really any type of automatic migration process.
Regarding Migrating Your Application
If you want to attempt to migrate your application to the recent release, you should consider checking out Shawn Wildermuth's blog posts on the process :
He goes into quite a bit of detail on all of the changes that you need to make that should get your application where it needs to be.
The other option would be to spin up a new ASP.NET Core application and manually migrate some of your existing code into it. This may not necessarily be feasible depending on the size of your project, but for smaller projects it'll likely be an easier and safer route.
Upvotes: 2