Skip to content

Commit 86abfc1

Browse files
qmfrederikbrendandburns
authored andcommitted
Update to .NET Core 2.1 RTM (#166)
1 parent 9253eeb commit 86abfc1

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ env:
2323
- MINIKUBE_WANTUPDATENOTIFICATION=false
2424
- KUBECONFIG=/home/travis/.kube/config
2525

26-
# We need the .NET Core 2.1 (preview 1) SDK to build. Travis doesn't know how to install this yet.
26+
# We need the .NET Core 2.1 SDK to build. Travis doesn't know how to install this yet.
2727
before_install:
2828
- ./install-$TRAVIS_OS_NAME.sh
2929

install-linux.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ curl https://packages.microsoft.com/keys/microsoft.asc | gpg --dearmor > microso
55
sudo mv microsoft.gpg /etc/apt/trusted.gpg.d/microsoft.gpg
66
sudo sh -c 'echo "deb [arch=amd64] https://packages.microsoft.com/repos/microsoft-ubuntu-trusty-prod trusty main" > /etc/apt/sources.list.d/dotnetdev.list'
77
sudo apt-get -qq update
8-
sudo apt-get install -y dotnet-sdk-2.1.300-rc1-008673
8+
sudo apt-get install -y dotnet-sdk-2.1
99

1010
echo 'Installing kubecl'
1111
curl -Lo kubectl https://storage.googleapis.com/kubernetes-release/release/v1.9.0/bin/linux/amd64/kubectl

install-osx.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
#!/bin/sh
22
echo 'Installing .NET Core...'
33

4-
wget https://dotnetcli.blob.core.windows.net/dotnet/Sdk/2.1.300-rc1-008673/dotnet-sdk-2.1.300-rc1-008673-osx-x64.pkg -O ~/dotnet-sdk-2.1.300-rc1-008673-osx-x64.pkg
5-
sudo installer -pkg ~/dotnet-sdk-2.1.300-rc1-008673-osx-x64.pkg -target /
4+
wget https://download.microsoft.com/download/8/8/5/88544F33-836A-49A5-8B67-451C24709A8F/dotnet-sdk-2.1.300-osx-x64.pkg -O ~/dotnet-sdk-2.1.300-osx-x64.pkg
5+
sudo installer -pkg ~/dotnet-sdk-2.1.300-osx-x64.pkg -target /
66

77
# https://github.com/dotnet/cli/issues/2544
88
ln -s /usr/local/share/dotnet/dotnet /usr/local/bin/

0 commit comments

Comments
 (0)