Skip to content

Commit ca75e18

Browse files
committed
[edit] appveyor.yml
1 parent 53e4d51 commit ca75e18

File tree

1 file changed

+5
-16
lines changed

1 file changed

+5
-16
lines changed

appveyor.yml

+5-16
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,19 @@
11
version: 1.0.0-{branch}-{build}
22

3-
os: Visual Studio 2015
4-
5-
environment:
6-
matrix:
7-
- CLI_VERSION: 1.0.0-preview2-003131
8-
9-
install:
10-
- ps: $url = "https://dotnetcli.blob.core.windows.net/dotnet/preview/Binaries/$($env:CLI_VERSION)/dotnet-dev-win-x64.$($env:CLI_VERSION.ToLower()).zip"
11-
- ps: $env:DOTNET_INSTALL_DIR = "$pwd\.dotnetsdk"
12-
- ps: mkdir $env:DOTNET_INSTALL_DIR -Force | Out-Null
13-
- ps: $tempFile = [System.IO.Path]::GetTempFileName()
14-
- ps: (New-Object System.Net.WebClient).DownloadFile($url, $tempFile)
15-
- ps: Add-Type -AssemblyName System.IO.Compression.FileSystem; [System.IO.Compression.ZipFile]::ExtractToDirectory($tempFile, $env:DOTNET_INSTALL_DIR)
16-
- ps: $env:Path = "$env:DOTNET_INSTALL_DIR;$env:Path"
17-
183
branches:
194
only:
205
- master
216
- dev
227

8+
image: Visual Studio 2015
9+
10+
init:
11+
- dotnet --version
12+
2313
pull_requests:
2414
do_not_increment_build_number: true
2515

2616
build_script:
27-
- cmd: dotnet --info
2817
- cmd: call cmd /C "cd .\build & pack.flurl.cmd & pack.flurl.http.cmd"
2918

3019
test_script:

0 commit comments

Comments
 (0)