Skip to content

Commit f06867b

Browse files
committed
.net core preview2 is already installed on appveyor
1 parent 15263bf commit f06867b

File tree

1 file changed

+0
-13
lines changed

1 file changed

+0
-13
lines changed

appveyor.yml

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -4,23 +4,10 @@ init:
44
- git config --global core.autocrlf input
55

66
environment:
7-
global:
8-
CLI_VERSION: 1.0.0-preview2-003121 # released preview1
97
matrix:
108
- BUILD_TARGET: DotnetCliTests
119
- BUILD_TARGET: NuGet
1210

13-
install:
14-
# .NET Core SDK binaries
15-
- ps: $url = "https://dotnetcli.blob.core.windows.net/dotnet/preview/Binaries/$($env:CLI_VERSION)/dotnet-dev-win-x64.$($env:CLI_VERSION.ToLower()).zip"
16-
# Download .NET Core SDK and add to PATH
17-
- ps: $env:DOTNET_INSTALL_DIR = "$pwd\.dotnetsdk"
18-
- ps: mkdir $env:DOTNET_INSTALL_DIR -Force | Out-Null
19-
- ps: $tempFile = [System.IO.Path]::GetTempFileName()
20-
- ps: (New-Object System.Net.WebClient).DownloadFile($url, $tempFile)
21-
- ps: Add-Type -AssemblyName System.IO.Compression.FileSystem; [System.IO.Compression.ZipFile]::ExtractToDirectory($tempFile, $env:DOTNET_INSTALL_DIR)
22-
- ps: $env:Path = "$env:DOTNET_INSTALL_DIR;$env:Path"
23-
2411
build_script:
2512
- ps: dotnet --info
2613
- cmd: build.cmd %BUILD_TARGET%

0 commit comments

Comments
 (0)