-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathappveyor.yml
More file actions
26 lines (23 loc) · 777 Bytes
/
appveyor.yml
File metadata and controls
26 lines (23 loc) · 777 Bytes
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
skip_tags: true
image: Visual Studio 2022
install:
- cmd: choco install gitversion.portable --version 5.0.1 -y
# - cmd: choco install dotnetcore-sdk --version 3.1.201
before_build:
- ps: gitversion /l console /output buildserver
build:
verbosity: detailed
build_script:
- cmd: dotnet tool install -g dotnet-format
- cmd: dotnet-format -w ./src -v normal --dry-run --check
- cmd: dotnet restore src --disable-parallel
- cmd: dotnet build src -c Release --disable-parallel
- cmd: dotnet pack src -c Release --output %APPVEYOR_BUILD_FOLDER%/artifacts/
artifacts:
- path: artifacts/*
deploy:
provider: NuGet
api_key:
secure: u8JpW5kkti8pMi+ra2QcXTJPhkHCA8pkKSiiZOJbcS/vFVHNvF3W8qw1Fy2If6a7
skip_symbols: false
artifact: /.*\.nupkg/