Skip to content
This repository was archived by the owner on Apr 8, 2020. It is now read-only.

Commit 45ec148

Browse files
Update AppVeyor to use .NET Core 1.0.4 SDK
1 parent 4e847f4 commit 45ec148

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

appveyor.yml

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,17 +4,12 @@ install:
44
- ps: Install-Product node 6.9.2 x64
55
# .NET Core SDK binaries
66
# Download .NET Core SDK and add to PATH
7-
- ps: $urlCurrent = "https://go.microsoft.com/fwlink/?LinkID=834991"
8-
- ps: $urlPreview = "https://dotnetcli.blob.core.windows.net/dotnet/Sdk/rel-1.0.0/dotnet-dev-win-x64.latest.zip"
7+
- ps: $urlCurrent = "https://download.microsoft.com/download/E/7/8/E782433E-7737-4E6C-BFBF-290A0A81C3D7/dotnet-dev-win-x64.1.0.4.zip"
98
- ps: $env:DOTNET_INSTALL_DIR = "$pwd\.dotnetsdk"
109
- ps: mkdir $env:DOTNET_INSTALL_DIR -Force | Out-Null
1110
- ps: $tempFileCurrent = [System.IO.Path]::GetTempFileName()
12-
- ps: $tempFilePreview = [System.IO.Path]::GetTempFileName()
1311
- ps: (New-Object System.Net.WebClient).DownloadFile($urlCurrent, $tempFileCurrent)
14-
- ps: (New-Object System.Net.WebClient).DownloadFile($urlPreview, $tempFilePreview)
1512
- ps: Add-Type -AssemblyName System.IO.Compression.FileSystem; [System.IO.Compression.ZipFile]::ExtractToDirectory($tempFileCurrent, $env:DOTNET_INSTALL_DIR)
16-
- ps: Add-Type -AssemblyName System.IO.Compression.FileSystem; [System.IO.Compression.ZipFile]::ExtractToDirectory($tempFilePreview, $env:DOTNET_INSTALL_DIR + "preview")
17-
- ps: Copy-Item "${env:DOTNET_INSTALL_DIR}preview\*" "${env:DOTNET_INSTALL_DIR}" -Force -Recurse
1813
- ps: $env:Path = "$env:DOTNET_INSTALL_DIR;$env:Path"
1914
build_script:
2015
- ps: Push-Location

0 commit comments

Comments
 (0)