Skip to content

Commit

Permalink
Please... I beg of you....
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewlock committed Nov 22, 2024
1 parent 9caa7bb commit a9bddb2
Showing 1 changed file with 9 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,15 @@ lang_variant:
os_distro: deb
os_branch: ubuntu20_amd64
remote-command: |
sudo apt-get update;
sudo apt-get install -y apt-transport-https;
wget https://dot.net/v1/dotnet-install.sh -O dotnet-install.sh
chmod +x ./dotnet-install.sh
sudo ./dotnet-install.sh --channel 2.1 -InstallDir /opt
sudo ln -s /opt/dotnet /usr/local/bin/dotnet
sudo ln -s /opt/dotnet /usr/bin/dotnet
sudo apt-get update
sudo apt-get install -y wget
wget https://packages.microsoft.com/config/ubuntu/20.04/packages-microsoft-prod.deb -O packages-microsoft-prod.deb
sudo dpkg -i packages-microsoft-prod.deb
rm packages-microsoft-prod.deb
sudo apt-get update;
sudo apt-get install -y apt-transport-https
sudo apt-get update
sudo apt-get install -y dotnet-sdk-2.1


weblog:
Expand Down

0 comments on commit a9bddb2

Please sign in to comment.