-
Notifications
You must be signed in to change notification settings - Fork 10
/
appveyor.yml
77 lines (57 loc) · 1.69 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
#---------------------------------#
# general configuration #
#---------------------------------#
# version format
version: 0.5.0-beta{build}
#---------------------------------#
# environment configuration #
#---------------------------------#
# Operating system (build VM template)
os: Windows Server 2012
# clone directory
clone_folder: c:\projects\drum
#---------------------------------#
# build configuration #
#---------------------------------#
# build platform, i.e. x86, x64, Any CPU. This setting is optional.
platform: Any CPU
# to add several platforms to build matrix:
#platform:
# - x86
# - Any CPU
# build Configuration, i.e. Debug, Release, etc.
configuration: Release
# scripts to run before build
before_build:
- git submodule init
- git submodule update
- nuget restore src\Drum.sln
- msbuild vendor\Strathweb.TypedRouting\Strathweb.TypedRouting.sln
build:
project: src\drum.sln
publish_nuget: true
# to disable automatic builds
#build: off
#---------------------------------#
# tests configuration #
#---------------------------------#
#---------------------------------#
# artifacts configuration #
#---------------------------------#
artifacts: []
#---------------------------------#
# deployment configuration #
#---------------------------------#
deploy:
provider: NuGet
api_key:
secure: RBbVRxtACiB2I4L0VSgWVx8Tf/L6HsA5rHVFFrdUvOnHWUSopbrqaBzsFr+Y7tT7
artifact: /.*\.nupkg/
on:
branch: release
#---------------------------------#
# global handlers #
#---------------------------------#
#---------------------------------#
# notifications #
#---------------------------------#