-
Notifications
You must be signed in to change notification settings - Fork 2
/
appveyor.yml
52 lines (39 loc) · 1.32 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
# AppVeyor CI build file
# Notes:
# - Minimal appveyor.yml file is an empty file. All sections are optional.
# - Indent each level of configuration with 2 spaces. Do not use tabs!
# - All section names are case-sensitive.
# - Section names should be unique on each level.
# version format
version: 0.0.{build}
shallow_clone: true
#---------------------------------#
# build configuration #
#---------------------------------#
# build platform, i.e. x86, x64, Any CPU. This setting is optional.
platform: Any CPU
# build Configuration, i.e. Debug, Release, etc.
configuration: Release
build:
project: CertiPay.Taxes.State.sln
assembly_info:
patch: true
file: AssemblyInfo.*
assembly_version: "0.0.{build}"
assembly_file_version: "{version}"
assembly_informational_version: "{version}"
#---------------------------------#
# tests configuration #
#---------------------------------#
test:
assemblies:
- CertiPay.Taxes.State.Tests.dll
#---------------------------------#
# artifacts configuration #
#---------------------------------#
nuget:
account_feed: true
project_feed: true
on_success:
- cmd: NuGet pack CertiPay.Taxes.State\CertiPay.Taxes.State.nuspec -Version %APPVEYOR_BUILD_VERSION%
- ps: Push-AppveyorArtifact "CertiPay.Taxes.State.$($env:APPVEYOR_BUILD_VERSION).nupkg"