Install scripts to manage dotnet core SDKs
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
#!/bin/sh | |
curl -sSL https://raw.githubusercontent.com/dotnet/cli/master/scripts/obtain/uninstall/dotnet-uninstall-pkgs.sh \ | |
| sudo tee /usr/local/bin/dotnet-uninstall-pkgs > /dev/null | |
sudo chmod +x /usr/local/bin/dotnet-uninstall-pkgs | |
curl -sSL https://dot.net/v1/dotnet-install.sh \ | |
| sudo tee /usr/local/bin/dotnet-install > /dev/null | |
chmod +x /usr/local/bin/dotnet-install | |
curl -sSL https://gist.github.com/breiter/aef0c0acbeb24cabe0fa16c7ecfdb88c/raw/b4e9de4b20141b0a05aadd03d5842752104b1475/dotnet-upgrade-sdks.sh \ | |
| sudo tee /usr/local/bin/dotnet-upgrade-sdks > /dev/null | |
chmod +x /usr/local/bin/dotnet-upgrade-sdks |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment