I use Angular CLI with Visual Studio Code
After auto system update my computer I was unable to start my server part of Angular application
with "dotnet run", tried to use "dotnet restore" and got error:
error NU1100: Unable to resolve 'Microsoft.NET.Sdk ' for '.NETCoreApp,Version=v 2.2'.
How to resolve this?
.NET Core SDK v2.2.203 is for Visual Studio 2019. Even though it seems like it should work with your existing code, it does not work properly unless you have Visual Studio 2019 installed.
.NET Core SDK v2.2.106 Is the latest, stable release that works with supported earlier versions/configurations.
You can download both installers here.
If you find that you need to remove a particular version and/or SDK, follow the instructions here.