I have a project which made by asp.net core 2.1, and now I wanna to migrate to the 2.2 version.
I installed the SDK of 2.2 and changed the target framework to 2.2 in properties of the project.
After I clean&rebuild the solution, there are some warnings here I can not clean it:
1.
I found a tutorial about this which provided by Microsoft:
https://learn.microsoft.com/en-us/aspnet/core/migration/21-to-22?view=aspnetcore-2.2&tabs=visual-studio
I tried but still no work.
I think updating the new version SDK is easier like the .net framework by just changes the target framework in properties of the project. However, it seems not.
I wonder if there have an official tool which to update the .net core SDK from 2.1 to 2.2. Or I'd better create a brand new 2.2 project as well as paste all the file into it rather than fix the troublesome warnings.
Thank you.