From 568cfa9b7ef94e9a2c6b1dadc6faa89e53391136 Mon Sep 17 00:00:00 2001 From: Adam Chester Date: Fri, 10 Mar 2017 06:40:24 +1000 Subject: [PATCH] Use dotnet core sdk 1.0.1 --- .travis.yml | 6 ++---- appveyor.yml | 2 +- build.sh | 2 +- global.json | 2 +- 4 files changed, 5 insertions(+), 7 deletions(-) diff --git a/.travis.yml b/.travis.yml index e10883035..813887d99 100644 --- a/.travis.yml +++ b/.travis.yml @@ -5,13 +5,11 @@ matrix: - os: linux # Ubuntu 14.04 dist: trusty sudo: required - dotnet: 1.0.0-preview2-003121 - CLI_VERSION: 1.0.0 + dotnet: 1.0.1 # Disabled temporarily due to Travis OSX issues # - os: osx # OSX 10.11 # osx_image: xcode7.3 - # dotnet: 1.0.0-preview2-003121 - # CLI_VERSION: 1.0.0 + # dotnet: 1.0.1 script: - ./build.sh \ No newline at end of file diff --git a/appveyor.yml b/appveyor.yml index 6c3d55e65..576ff6ee9 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -6,7 +6,7 @@ install: - ps: mkdir -Force ".\build\" | Out-Null - ps: Invoke-WebRequest "https://raw.githubusercontent.com/dotnet/cli/rel/1.0.0/scripts/obtain/dotnet-install.ps1" -OutFile ".\build\installcli.ps1" - ps: $env:DOTNET_INSTALL_DIR = "$pwd\.dotnetcli" - - ps: '& .\build\installcli.ps1 -InstallDir "$env:DOTNET_INSTALL_DIR" -NoPath -Version 1.0.0' + - ps: '& .\build\installcli.ps1 -InstallDir "$env:DOTNET_INSTALL_DIR" -NoPath -Version 1.0.1' - ps: $env:Path = "$env:DOTNET_INSTALL_DIR;$env:Path" test: off build_script: diff --git a/build.sh b/build.sh index 100633557..461b5510b 100755 --- a/build.sh +++ b/build.sh @@ -1,6 +1,6 @@ #!/bin/bash export DOTNET_INSTALL_DIR="$PWD/.dotnetcli" -DotnetCliVersion=${CLI_VERSION:="1.0.0"} +DotnetCliVersion=${CLI_VERSION:="1.0.1"} install_script_url=https://raw.githubusercontent.com/dotnet/cli/rel/1.0.0/scripts/obtain/dotnet-install.sh curl -sSL $install_script_url | bash /dev/stdin --version "$DotnetCliVersion" --install-dir "$DOTNET_INSTALL_DIR" export PATH="$DOTNET_INSTALL_DIR:$PATH" diff --git a/global.json b/global.json index 6cedd685d..a88380bf8 100644 --- a/global.json +++ b/global.json @@ -1,6 +1,6 @@ { "projects": [ "src", "test" ], "sdk": { - "version": "1.0.0" + "version": "1.0.1" } }