-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathappveyor.yml
44 lines (41 loc) · 979 Bytes
/
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
version: 5.0.0.{build}-beta
branches:
only:
- master
image: Visual Studio 2015
configuration: Release
assembly_info:
patch: true
file: '**\AssemblyInfo.*'
assembly_version: '{version}'
assembly_file_version: '{version}'
assembly_informational_version: '{version}'
install:
- cmd:
nuget:
account_feed: true
project_feed: true
disable_publish_on_pr: true
before_build:
- cmd: nuget restore Singleton.sln
build:
project: Singleton.sln
publish_nuget: true
publish_nuget_symbols: true
include_nuget_references: true
verbosity: normal
after_build:
- cmd: >-
7z a Singleton.zip %APPVEYOR_BUILD_FOLDER%\Singleton\bin\Release\*.*
appveyor PushArtifact Singleton.zip
deploy: off
notifications:
- provider: Email
to:
on_build_success: false
on_build_failure: true
on_build_status_changed: false
skip_commits:
# Regex for matching commit message
message: /Update.*\.(md)/