Skip to content

Commit 0cd4fd6

Browse files
committed
Build
1 parent e823a10 commit 0cd4fd6

File tree

1 file changed

+44
-0
lines changed

1 file changed

+44
-0
lines changed

appveyor.yml

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
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'))

0 commit comments

Comments
 (0)