-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathappveyor.yml
28 lines (28 loc) · 922 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
version: 1.0.{build}
branches:
only:
- master
except:
- gh-pages
configuration:
- Release
platform: Any CPU
assembly_info:
patch: true
file: '**\AssemblyInfo.*'
assembly_version: '{version}'
assembly_file_version: '{version}'
assembly_informational_version: '{version}'
before_build:
- ps: nuget restore Source\PowerTools.sln
build:
verbosity: minimal
project: Source\PowerTools.sln
after_build:
- cmd: 7z a image-powertools.zip "%APPVEYOR_BUILD_FOLDER%\Source\PowerTools.CommandLine\bin\Release\*.dll" "%APPVEYOR_BUILD_FOLDER%\Source\PowerTools.CommandLine\bin\Release\*.exe" "%APPVEYOR_BUILD_FOLDER%\Source\PowerTools.CommandLine\bin\Release\*.txt" "%APPVEYOR_BUILD_FOLDER%\Source\PowerTools.CommandLine\bin\Release\*.md"
- cmd: 7z a examples.zip "%APPVEYOR_BUILD_FOLDER%\Examples\*"
artifacts:
- path: image-powertools.zip
name: image-powertools.zip
- path: examples.zip
name: examples.zip