问题
I have an application in ASP.NET Core 2.0. I want to upgrade it to ASP.NET Core 3.0. How can I do that?
回答1:
Follow this link. This will give some guidance for your migration.
https://docs.microsoft.com/en-us/aspnet/core/migration/22-to-30?view=aspnetcore-2.2&tabs=visual-studio
As stated in the comments, the complete path of migration from 2.0 to 3.0 would be:
- Migrate from ASP.NET Core 2.0 to 2.1
- Migrate from ASP.NET Core 2.1 to 2.2
- Migrate from ASP.NET Core 2.2 to 3.0...
You will have to go through them step by step.
来源:https://stackoverflow.com/questions/54779630/migrate-from-asp-net-core-2-0-to-3-0