forked from vivet/HungarianAlgorithm
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathappveyor.yml
More file actions
32 lines (32 loc) · 717 Bytes
/
appveyor.yml
File metadata and controls
32 lines (32 loc) · 717 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
27
28
29
30
31
32
version: 2.3.1.{build}
skip_tags: true
max_jobs: 1
image: Visual Studio 2022
configuration: Release
platform: Any CPU
force_https_clone: true
nuget:
account_feed: false
project_feed: false
environment:
NUGET_HOST: https://www.nuget.org
NUGET_APIKEY:
secure: /vHTgQBuJuGNirZJcRhuYKr1M7BzjDE3/Gy+sONcNKzqaod1qDI/IeW3WljxMV1P
build: off
build_script:
- ps: >-
dotnet build .\HungarianAlgorithm
test_script:
- ps: >-
dotnet test .\.tests\HungarianAlgorithm.Test\HungarianAlgorithm.Test.csproj
artifacts:
- path: '**\*.nupkg'
name: NuGet Package
- path: '**\*.snupkg'
name: NuGet Symbol Package
deploy:
- provider: NuGet
server: $(NUGET_HOST)
api_key: $(NUGET_APIKEY)
on:
branch: master