Skip to content

Instantly share code, notes, and snippets.

@AxDSan
Created July 29, 2019 21:12
Show Gist options
  • Save AxDSan/7db8c3d799bc766d27252cb3d0639750 to your computer and use it in GitHub Desktop.
Save AxDSan/7db8c3d799bc766d27252cb3d0639750 to your computer and use it in GitHub Desktop.
A one-liner to install dotnet-3.0-preview7 in Ubuntu/Debian based systems :D
cd $HOME/Downloads && mkdir preview7 && cd preview7 && wget -c https://download.visualstudio.microsoft.com/download/pr/75df8900-3c7c-4c83-a142-ac464aba5424/2b9621b80f3e6777d436f6aabaaced27/dotnet-host-3.0.0-preview7-27912-14-x64.deb && wget -c https://download.visualstudio.microsoft.com/download/pr/14afe93a-0608-455f-835d-21bad58b79c5/0bdf5dea07ed8b2724a4a9b4f2e291c5/dotnet-hostfxr-3.0.0-preview7-27912-14-x64.deb && wget -c https://download.visualstudio.microsoft.com/download/pr/e091a028-ba39-4fa7-b67e-ea94cc17c796/486715c7f03753721d3e36eb2802b78a/dotnet-runtime-3.0.0-preview7-27912-14-x64.deb && wget -c https://download.visualstudio.microsoft.com/download/pr/24905020-03ea-4cfc-9362-c48067865fb1/9bf81548b0121de0e92565d99b2680c0/aspnetcore-runtime-3.0.0-preview7.19365.7-x64.deb && wget -c https://download.visualstudio.microsoft.com/download/pr/0262539c-3137-4a86-9df4-f82896d16317/d8756586ecd9f55097d89f45de523059/dotnet-targeting-pack-3.0.0-preview7-27912-14-x64.deb && wget -c https://download.visualstudio.microsoft.com/download/pr/e28b12ba-1e42-4749-aae1-1b3c5ed38794/202211c1e6c32569eec3e0d52638a1d6/dotnet-apphost-pack-3.0.0-preview7-27912-14-x64.deb && wget -c https://download.visualstudio.microsoft.com/download/pr/ab736c3a-7d76-4e4f-bb38-276a8461f136/e52cd442cf11475581d648c70e9a0fe9/aspnetcore-targeting-pack-3.0.0-preview7.19365.7.deb && wget -c https://download.visualstudio.microsoft.com/download/pr/5bfdb390-e660-4db9-9425-bea30457ddbc/0f2019c4665003bc5f7ea832c17ae606/netstandard-targeting-pack-2.1.0-preview7-27912-14-x64.deb && wget -c https://download.visualstudio.microsoft.com/download/pr/e9a2527e-e38f-4bec-9b63-2ba4dedfd748/358830b14b2a7d2ae5cf8260c041e898/dotnet-sdk-3.0.100-preview7-012821-x64.deb && wget -c https://download.visualstudio.microsoft.com/download/pr/d2aa2c7e-d7f5-4868-9217-63f8b5a9cc2e/d25435ba6ff71c8959c89eb3ab8dcd21/dotnet-runtime-deps-3.0.0-preview7-27912-14-x64.deb && sudo dpkg -i dotnet-host-3.0.0-preview7-27912-14-x64.deb && sudo dpkg -i dotnet-hostfxr-3.0.0-preview7-27912-14-x64.deb && sudo dpkg -i dotnet-runtime-3.0.0-preview7-27912-14-x64.deb && sudo dpkg -i aspnetcore-runtime-3.0.0-preview7.19365.7-x64.deb && sudo dpkg -i dotnet-targeting-pack-3.0.0-preview7-27912-14-x64.deb && sudo dpkg -i dotnet-apphost-pack-3.0.0-preview7-27912-14-x64.deb && sudo dpkg -i aspnetcore-targeting-pack-3.0.0-preview7.19365.7.deb && sudo dpkg -i netstandard-targeting-pack-2.1.0-preview7-27912-14-x64.deb && sudo dpkg -i dotnet-sdk-3.0.100-preview7-012821-x64.deb && sudo dpkg -i dotnet-runtime-deps-3.0.0-preview7-27912-14-x64.deb
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment