Skip to content

Instantly share code, notes, and snippets.

@FalconNL93
Last active February 2, 2024 07:42
Show Gist options
  • Save FalconNL93/d6b7bcad1c2741fc9a19cd5ccad4a45a to your computer and use it in GitHub Desktop.
Save FalconNL93/d6b7bcad1c2741fc9a19cd5ccad4a45a to your computer and use it in GitHub Desktop.
Dotnet install
# 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