Last active
February 2, 2024 07:42
-
-
Save FalconNL93/d6b7bcad1c2741fc9a19cd5ccad4a45a to your computer and use it in GitHub Desktop.
Dotnet install
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Install Script | |
wget https://dot.net/v1/dotnet-install.sh | |
chmod +x dotnet-install.sh | |
# Install SDK's | |
./dotnet-install.sh -v 5.0.408 && \ | |
./dotnet-install.sh -v 6.0.418 && \ | |
./dotnet-install.sh -v 7.0.405 && \ | |
./dotnet-install.sh -v 8.0.101 | |
# Add to path | |
export PATH="$PATH:$HOME/.dotnet" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment