Skip to content
This repository was archived by the owner on Mar 1, 2021. It is now read-only.

Commit 9589a3e

Browse files
committed
(build) Added AppVeyor file
1 parent 06d6a06 commit 9589a3e

File tree

1 file changed

+31
-0
lines changed

1 file changed

+31
-0
lines changed

.appveyor.yml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
#---------------------------------#
2+
# Build Image #
3+
#---------------------------------#
4+
image: Visual Studio 2017
5+
6+
#---------------------------------#
7+
# Build Script #
8+
#---------------------------------#
9+
build_script:
10+
- ps: .\build.ps1 -Target AppVeyor
11+
12+
# Tests
13+
test: off
14+
15+
#---------------------------------#
16+
# Branches to build #
17+
#---------------------------------#
18+
branches:
19+
# Whitelist
20+
only:
21+
- develop
22+
- master
23+
- /release/.*/
24+
- /hotfix/.*/
25+
26+
#---------------------------------#
27+
# Build Cache #
28+
#---------------------------------#
29+
cache:
30+
- Source\packages -> Source\**\packages.config
31+
- tools -> recipe.cake

0 commit comments

Comments
 (0)