1
- # Notes:
2
- # - Minimal appveyor.yml file is an empty file. All sections are optional.
3
- # - Indent each level of configuration with 2 spaces. Do not use tabs!
4
- # - All section names are case-sensitive.
5
- # - Section names should be unique on each level.
6
-
7
- # ---------------------------------#
8
- # general configuration #
9
- # ---------------------------------#
10
-
11
- # version format
12
1
version : 1.1.{build}
13
2
14
- # branches to build
15
3
branches :
16
- # whitelist
17
4
only :
18
5
- master
19
6
20
7
skip_tags : true
21
8
22
- # ---------------------------------#
23
- # environment configuration #
24
- # ---------------------------------#
9
+ skip_commits :
10
+ message : /\[ci skip\]/
11
+
12
+ image : Visual Studio 2015
25
13
26
- # Operating system (build VM template)
27
- os : Visual Studio 2015
14
+ init :
15
+ - git config --global core.autocrlf input
28
16
29
- # enable patching of AssemblyInfo.* files
30
17
assembly_info :
31
18
patch : true
32
19
file : AssemblyInfo.*
33
20
assembly_version : " {version}"
21
+ assembly_file_version : " {version}"
34
22
35
- # ---------------------------------#
36
- # build configuration #
37
- # ---------------------------------#
38
-
39
- # build platform, i.e. x86, x64, Any CPU. This setting is optional.
40
23
platform : Any CPU
41
24
42
- # build Configuration, i.e. Debug, Release, etc.
43
25
configuration : Release
44
26
45
- # ---------------------------------#
46
- # artifacts configuration #
47
- # ---------------------------------#
27
+ build :
28
+ verbosity : minimal
48
29
49
30
artifacts :
50
-
51
- # pushing a single file with environment variable in path and "Deployment name" specified
52
31
- path : src\WinQuickLook\bin\$(configuration)
53
- name : WinQuickLook
32
+ name : WinQuickLook
0 commit comments