Reputation: 775
I have developed my application in Mvc 5.2.3 using .net Framework. now i need to convert my application to Asp.net Mvc Core 2.0.
Can i convert it without code change or minimal code change or i have to migrate while code ?
Upvotes: 3
Views: 3777
Reputation: 979
Yes, it is possible to convert from Asp.Net from .NetFramework to Asp.Net Core You can find the details at : https://learn.microsoft.com/en-us/aspnet/core/migration/proper-to-2x/?view=aspnetcore-2.1
To answer as to how big a change would be required will depend on your project's complexity. There are certain libraries/classes which are not supported or certain behavioral changes in Asp.Net Core. You might have to figure out the right replacements for them in Asp.Net Core.
Upvotes: 2