Installing
-
2. Installing .NET Core
Then to Install .NET Core 6 SDK in Ubuntu
For the Dotnet SDK play:sudo apt install -y dotnet-sdk-6.0
And instead for ASP.NET Core Runtime (Already included in the SDK):
sudo apt install -y aspnetcore-runtime-6.0
Finally, to install only the .NET Runtime without ASP.NET Core support:
sudo apt install -y dotnet-runtime-6.0
Contents