File tree Expand file tree Collapse file tree 1 file changed +44
-0
lines changed Expand file tree Collapse file tree 1 file changed +44
-0
lines changed Original file line number Diff line number Diff line change
1
+ version : 3.4.0.{build}
2
+
3
+ assembly_info :
4
+ patch : true
5
+ file : ' **\AssemblyInfo.*'
6
+ assembly_version : ' {version}'
7
+ assembly_file_version : ' {version}'
8
+ assembly_informational_version : ' {version}'
9
+
10
+ branches :
11
+ except :
12
+ - configdata
13
+ - gh-pages
14
+ - /experimental\/*/
15
+
16
+ matrix :
17
+ fast_finish : true
18
+
19
+ # https://www.appveyor.com/docs/build-environment/#build-worker-images
20
+ image : Visual Studio 2019
21
+
22
+ # init:
23
+ # - ps: iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-rdp.ps1'))
24
+
25
+ # Build settings, not to be confused with "before_build" and "after_build".
26
+ # "project" is relative to the original build directory and not influenced by directory changes in "before_build".
27
+ build :
28
+ # enable MSBuild parallel builds
29
+ parallel : true
30
+ # MSBuild verbosity level
31
+ verbosity : minimal
32
+
33
+ # to run your custom scripts instead of automatic MSBuild
34
+ build_script :
35
+ - ps : |
36
+ & .\cibuild.cmd -restore -build -logFileName build.binlog
37
+ if ($LastExitCode -ne 0) { $host.SetShouldExit($LastExitCode) }
38
+
39
+ artifacts :
40
+ - path : artifacts\log\**\*.binlog
41
+ - path : artifacts\bin\**\*.vsix
42
+
43
+ # on_finish:
44
+ # - ps: $blockRdp = $true; iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-rdp.ps1'))
You can’t perform that action at this time.
0 commit comments