Ich verwende Visual Studio 2019 Version 16.3.7. Ich gehe davon aus, dass es das neueste Update ist.
Wenn ich versuche, eine grundlegende .NET Core 2.2-Konsolenanwendung zu kompilieren:
... ich bekomme folgenden Fehler:
It was not possible to find any compatible framework version
The specified framework 'Microsoft.NETCore.App', version '2.2.0' was not found.
- The following frameworks were found:
1.0.1 at [C:\Program Files\dotnet\shared\Microsoft.NETCore.App]
2.0.9 at [C:\Program Files\dotnet\shared\Microsoft.NETCore.App]
2.1.11 at [C:\Program Files\dotnet\shared\Microsoft.NETCore.App]
2.1.12 at [C:\Program Files\dotnet\shared\Microsoft.NETCore.App]
2.1.13 at [C:\Program Files\dotnet\shared\Microsoft.NETCore.App]
3.0.0 at [C:\Program Files\dotnet\shared\Microsoft.NETCore.App]
You can resolve the problem by installing the specified framework and/or SDK.
The .NET Core frameworks can be found at:
- https://aka.ms/dotnet-download .
Nach meinem Verständnis ist .NET Core 3.0 abwärtskompatibel. Warum hat das Visual Studio-Installationsprogramm alle Versionen von .NET Core außer 2.2 installiert? Wie löse ich dieses Problem?