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
39 lines (39 loc) · 882 Bytes
/
appveyor.yml
File metadata and controls
39 lines (39 loc) · 882 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
33
34
35
36
37
38
39
version: 2.2.0.{build}
skip_tags: true
max_jobs: 1
image: Visual Studio 2017
configuration: Release
platform: Any CPU
force_https_clone: true
dotnet_csproj:
patch: true
file: '**\*.csproj'
version: '{version}'
package_version: '{version}'
assembly_version: '{version}'
file_version: '{version}'
informational_version: '{version}'
nuget:
account_feed: false
project_feed: false
environment:
NUGET_HOST: https://www.nuget.org
NUGET_APIKEY:
secure: oeSwT33L7QcWnDXH3H/pWIUJDdM+el24LvqEQ6HqzpR0Ok/7Z3VZj51u14veU1Ho
build: off
build_script:
- ps: >-
dotnet build .\HungarianAlgorithm.sln;
test: off
test_script:
- ps: >-
dotnet test .\.tests\HungarianAlgorithm.Test\HungarianAlgorithm.Test.csproj
artifacts:
- path: '**\*.nupkg'
name: NuGet Package
deploy:
- provider: NuGet
server: $(NUGET_HOST)
api_key: $(NUGET_APIKEY)
on:
branch: master