Skip to content

Commit 75e481b

Browse files
committed
(GH-4) Added Basic AppVeyor.yml file
- This will need to be extended with actual notifications and environment variables used as part of this build
1 parent 8bdc4f5 commit 75e481b

File tree

2 files changed

+39
-0
lines changed

2 files changed

+39
-0
lines changed

appveyor.yml

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
#---------------------------------#
2+
# general configuration #
3+
#---------------------------------#
4+
5+
# version format
6+
version: 1.0.{build}
7+
8+
branches:
9+
only:
10+
- master
11+
- develop
12+
13+
#---------------------------------#
14+
# environment configuration #
15+
#---------------------------------#
16+
17+
# clone directory
18+
clone_folder: C:\projects\GitHubReleaseManager
19+
20+
#---------------------------------#
21+
# build configuration #
22+
#---------------------------------#
23+
24+
build_script:
25+
- ps: .\BuildScripts\build.ps1
26+
27+
test: off
28+
29+
#---------------------------------#
30+
# caching configuration #
31+
#---------------------------------#
32+
33+
cache:
34+
- Source\packages

src/GitHubReleaseNotes.sln

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,11 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "BuildScripts", "BuildScript
2727
..\BuildScripts\StyleCopReport.xsl = ..\BuildScripts\StyleCopReport.xsl
2828
EndProjectSection
2929
EndProject
30+
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "AppVeyor", "AppVeyor", "{EF94B2A3-E548-43B3-8A63-C7B28B5779D4}"
31+
ProjectSection(SolutionItems) = preProject
32+
..\appveyor.yml = ..\appveyor.yml
33+
EndProjectSection
34+
EndProject
3035
Global
3136
GlobalSection(SolutionConfigurationPlatforms) = preSolution
3237
Debug|Any CPU = Debug|Any CPU

0 commit comments

Comments
 (0)