Wie repariere ich meine beschädigte .NET 6-Installation?

Wie repariere ich meine beschädigte .NET 6-Installation?

Ich habe .NET 6 und .NET 7 auf meinem Ubuntu-System. Wenn ich versuche, einen Test in Rider auszuführen, wird angezeigt, dass .NET 6 nicht installiert ist. Ist es aber. Wenn ich dotnet --list-runtimeses ausführe, wird nur .NET 7 angezeigt.

Konsolenausgabe:

Reading state information... Done
aspnetcore-runtime-6.0 is already the newest version (6.0.110-0ubuntu1~22.04.1).
0 upgraded, 0 newly installed, 0 to remove and 10 not upgraded.
aaronlord@system76-pc:~/Downloads$ dotnet --list-runtimes
Microsoft.AspNetCore.App 7.0.0 [/usr/share/dotnet/shared/Microsoft.AspNetCore.App]
Microsoft.NETCore.App 7.0.0 [/usr/share/dotnet/shared/Microsoft.NETCore.App]
aaronlord@system76-pc:~/Downloads$ dotnet --list-sdks
6.0.403 [/usr/share/dotnet/sdk]
7.0.100 [/usr/share/dotnet/sdk]

Antwort1

Schritt 1: Deinstallierenhttps://askubuntu.com/a/1386715/231561

Schritt 2: Requisiten in Preferences.d festlegenhttps://stackoverflow.com/a/73899341/16454

Schritt 3: Mit einigen expliziten Werten installierenhttps://github.com/dotnet/sdk/issues/27082#issuecomment-1211181940

ich benutzte

sudo apt install aspnetcore-runtime-6.0=6.0.11-1 dotnet-apphost-pack-6.0=6.0.11-1 dotnet-host=6.0.11-1 dotnet-hostfxr-6.0=6.0.11-1 dotnet-runtime-6.0=6.0.11-1 dotnet-sdk-6.0=6.0.400-1 dotnet-targeting-pack-6.0=6.0.11-1

verwandte Informationen