File tree 2 files changed +9
-6
lines changed
2 files changed +9
-6
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ sudo: required
2
2
language : csharp
3
3
os :
4
4
- linux
5
- dist : trusty
5
+ dist : artful
6
6
7
7
script :
8
8
- ./install-latest-dotnet.sh
Original file line number Diff line number Diff line change 1
1
#! /usr/bin/env bash
2
2
3
- sudo apt-get install -y libunwind8 libunwind8-dev gettext libicu-dev liblttng-ust-dev libcurl4-openssl-dev libssl-dev uuid-dev unzip
4
- wget https://download.microsoft.com/download/1/B/4/1B4DE605-8378-47A5-B01B-2C79D6C55519/dotnet-sdk-2.0.0-linux-x64.tar.gz
5
- mkdir ~ /dotnet
6
- tar zxf dotnet-sdk-2.0.0-linux-x64.tar.gz -C ~ /dotnet
7
- sudo ln -s ~ /dotnet/dotnet /usr/bin/
3
+ curl https://packages.microsoft.com/keys/microsoft.asc | gpg --dearmor > microsoft.gpg
4
+ sudo mv microsoft.gpg /etc/apt/trusted.gpg.d/microsoft.gpg
5
+ sudo sh -c ' echo "deb [arch=amd64] https://packages.microsoft.com/repos/microsoft-ubuntu-artful-prod artful main" > /etc/apt/sources.list.d/dotnetdev.list'
6
+
7
+ sudo apt-get install apt-transport-https
8
+ sudo apt-get update
9
+ sudo apt-get install dotnet-sdk-2.1.4
10
+
8
11
dotnet --info
You can’t perform that action at this time.
0 commit comments