Created
March 5, 2019 17:50
-
-
Save bogdanbujdea/22582531688c0c61d000566540fdd3e4 to your computer and use it in GitHub Desktop.
Install dotnet sdk 2.2 in WSL
This file contains hidden or 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
| curl https://packages.microsoft.com/keys/microsoft.asc | gpg --dearmor > microsoft.gpg | |
| sudo mv microsoft.gpg /etc/apt/trusted.gpg.d/microsoft.gpg | |
| sudo sh -c 'echo "deb [arch=amd64] https://packages.microsoft.com/repos/microsoft-ubuntu-bionic-prod bionic main" > /etc/apt/sources.list.d/dotnetdev.list' | |
| sudo apt-get install apt-transport-https | |
| sudo apt-get update | |
| sudo apt-get install dotnet-sdk-2.2 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment