Last active
July 20, 2021 17:14
-
-
Save jonsagara/1f7ed8fe9ebda1de028c6e7b844a0b3e to your computer and use it in GitHub Desktop.
dotnet-core-uninstall commands for macOS
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
# List the installed SDKs and runtimes. | |
sudo ./dotnet-core-uninstall list | |
# Remove a specific runtime version without a confirmation prompt. | |
sudo ./dotnet-core-uninstall remove -y --runtime 3.1.10 | |
# Remove a specific SDK version without a confirmation prompt. | |
sudo ./dotnet-core-uninstall remove -y --sdk 3.1.10 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment