-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
appveyor.yml
37 lines (33 loc) · 1.33 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
28
29
30
31
32
33
34
35
36
37
version: 2.1.{build}
branches:
only:
- master
pull_requests:
do_not_increment_build_number: true
image: Visual Studio 2022
## temporary until 7.0.102 sdk is installed
install:
- ps: $urlCurrent = "https://dotnetcli.blob.core.windows.net/dotnet/Sdk/7.0.102/dotnet-sdk-7.0.102-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"
nuget:
disable_publish_on_pr: true
build_script:
- ps: dotnet restore Bet.Extensions.Resilience.sln -v quiet
- ps: dotnet build Bet.Extensions.Resilience.sln /p:configuration=Release /p:Version=$($env:appveyor_build_version)
test_script:
- dotnet test test/Bet.AspNetCore.Resilience.UnitTest/Bet.AspNetCore.Resilience.UnitTest.csproj -c Release --no-build
artifacts:
- path: .\src\**\*.nupkg
name: NuGet package
deploy:
- provider: NuGet
artifact: /NuGet/
api_key:
secure: UoXwimuupOGBg7Tfs29QI0TSMExk841FqvCvWef6nYGLCKBnewYMdMX1QTfkEB8E
on:
branch: master