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?
visual-studio
.net-core
Allan Xu
quelle
quelle
In meinem Fall fehlte das x86 .NET Core 2.2.x-Plattform-SDK (Visual Studio .NET 16.4 + .NET Core 3.1 SDK; xUnit-Testprojekt).
Sie können dies versuchen:
C:\Program Files (x86)\dotnet\shared\Microsoft.NETCore.App
?dotnet --info
quelle
Es gibt zwei Möglichkeiten, die Visual Studio Update-Anwendung auszuführen, um festzustellen, ob fehlende Anforderungen für Sie installiert werden, oder das Net Core 2.2 SDK manuell unter https://dotnet.microsoft.com/download/dotnet-core/2.2 (oder) zu installieren https://aka.ms/dotnet-download ( wie in der Fehlermeldung angegeben).
quelle