Skip to content

Commit 2603fc7

Browse files
authored
Switches AppVeyor to use VS 2017 (#76)
* Switches AppVeyor to use VS 2017 Should massively speed up builds * Update appveyor.yml
1 parent 15f4660 commit 2603fc7

File tree

1 file changed

+0
-15
lines changed

1 file changed

+0
-15
lines changed

appveyor.yml

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -8,21 +8,6 @@ branches:
88
nuget:
99
disable_publish_on_pr: true
1010

11-
install:
12-
## # .NET Core SDK binaries
13-
## ## 1) from direct url
14-
## - ps: $url = "https://go.microsoft.com/fwlink/?LinkID=798402" # v1.0.0-preview1 x64
15-
## ## 2) from url based on version, for example using an env var CLI_VERSION that can be a
16-
## ## a specific version `1.0.0-preview2-003121` or `Latest` (for latest dev version)
17-
- ps: $url = "https://dotnetcli.blob.core.windows.net/dotnet/Sdk/rel-1.0.0/dotnet-dev-win-x64.latest.zip"
18-
# Download .NET Core SDK and add to PATH
19-
- ps: $env:DOTNET_INSTALL_DIR = "$pwd\.dotnetsdk"
20-
- ps: mkdir $env:DOTNET_INSTALL_DIR -Force | Out-Null
21-
- ps: $tempFile = [System.IO.Path]::GetTempFileName()
22-
- ps: (New-Object System.Net.WebClient).DownloadFile($url, $tempFile)
23-
- ps: Add-Type -AssemblyName System.IO.Compression.FileSystem; [System.IO.Compression.ZipFile]::ExtractToDirectory($tempFile, $env:DOTNET_INSTALL_DIR)
24-
- ps: $env:Path = "$env:DOTNET_INSTALL_DIR;$env:Path"
25-
2611
build_script:
2712
- ps: .\build.ps1
2813

0 commit comments

Comments
 (0)