forked from MirisWisdom/HCE
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathappveyor.yml
102 lines (81 loc) · 2.35 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
# Docs: https://www.appveyor.com/docs/appveyor-yml/
# version format
version: 1.0.{build}-{commitId}
# branches to build
branches:
# whitelist
#include:
# - master
# - production
# blacklist
except:
- gh-pages
# Do not build on tags (GitHub, Bitbucket, GitLab, Gitea)
#skip_tags: true
# Start builds on tags only (GitHub, BitBucket, GitLab, Gitea)
skip_non_tags: true
# Skipping commits with particular message or from specific user
#skip_commits:
# message: /(ci\(*\):|ci:)/ # Regex for matching commit message
# Skipping commits affecting specific files (GitHub only). More details here: /docs/appveyor-yml
skip_commits:
files:
- '*/docs/*'
- '**/*.html'
# Including commits affecting specific files (GitHub only). More details here: /docs/appveyor-yml
#only_commits:
# files:
# - Project-A/
# - Project-B/
# Do not build feature branch with open Pull Requests
skip_branch_with_pr: true
# Maximum number of concurrent jobs for the project
max_jobs: 1
#---------------------------------#
# environment configuration #
#---------------------------------#
# Build worker image (VM template)
image: Visual Studio 2019
configuration:
- Debug
- Release
assembly_info:
patch: true
file: 'spv3\loader\src\properties\AssemblyInfo.*'
assembly_version: '{version}'
assembly_file_version: '{version}'
assembly_informational_version: '{version}'
dotnet_csproj:
patch: true
file: 'spv3\loader\src\*.csproj'
version: '{version}'
version_prefix: '{version}'
package_version: '{version}'
assembly_version: '{version}'
file_version: '{version}'
informational_version: '{version}'
install:
- git submodule init
- git submodule update
nuget:
project_feed: true
before_build:
- nuget restore
build:
project: 'spv3\loader\src\spv3.sln'
parallel: true
verbosity: minimal
#---------------------------------#
# deployment configuration #
#---------------------------------#
# providers: Local, FTP, WebDeploy, AzureCS, AzureBlob, S3, NuGet, Environment
# provider names are case-sensitive!
# Deploy to GitHub Releases
#deploy:
# - provider: GitHub
# artifact: /.*\.nupkg/ # upload all NuGet packages to release assets
# draft: false
# prerelease: false
# on:
# branch: master # release from master branch only
# APPVEYOR_REPO_TAG: true # deploy on tag push only