-
Notifications
You must be signed in to change notification settings - Fork 4
/
appveyor.yml
27 lines (23 loc) · 1.14 KB
/
appveyor.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
image: Visual Studio 2019
install:
# .NET Core SDK binaries
- ps: $urlCurrent = "https://dotnetcli.blob.core.windows.net/dotnet/Sdk/release/5.0.2xx/dotnet-sdk-latest-win-x64.zip"
- ps: $env:DOTNET_INSTALL_DIR = "$pwd\.dotnetsdk"
- ps: mkdir $env:DOTNET_INSTALL_DIR -Force | Out-Null
- ps: $tempFileCurrent = [System.IO.Path]::GetTempFileName()
- ps: (New-Object System.Net.WebClient).DownloadFile($urlCurrent, $tempFileCurrent)
- ps: Add-Type -AssemblyName System.IO.Compression.FileSystem; [System.IO.Compression.ZipFile]::ExtractToDirectory($tempFileCurrent, $env:DOTNET_INSTALL_DIR)
- ps: $env:Path = "$env:DOTNET_INSTALL_DIR;$env:Path"
build_script:
- ps: dotnet build src/Community.VisualStudio.VSCT/Community.VisualStudio.VSCT.csproj /p:configuration=Release /p:ContinuousIntegrationBuild=true /p:Version=16.0.29.$($env:appveyor_build_number)
artifacts:
- path: _Packages\*.nupkg
name: NuGet package
deploy:
- provider: NuGet
artifact: /NuGet/
api_key:
secure: 2LiTL6oY/0UkItVFZDP+iQqDsLl9BK9yM4rMyvbB9pL+/bXzzaerqFhR6NRmhRbs
on:
branch: main
appveyor_repo_commit_message_extended: /\[release\]/