forked from win-acme/win-acme
-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
32 lines (29 loc) · 890 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
version: 2.0.8.{build}
image: Visual Studio 2019
configuration: Release
platform: Any CPU
shallow_clone: true
assembly_info:
patch: true
file: '**\AssemblyInfo.*'
assembly_version: '{version}'
assembly_file_version: '{version}'
assembly_informational_version: '{version}'
environment:
PfxPassword:
secure: MoBSjfTA4dQsMSor6Lbst6kKjVNAYE5elSDK6+IrR1VhCTz5yAsjBbcUC4L4SAegHKABXov/4VyL+3KtrBS8shCkgAFfSK1j98Yvn5K3JyE=
before_build:
- ps: >-
cd $env:APPVEYOR_BUILD_FOLDER\src\
nuget restore
build:
project: '\src\wacs.sln'
verbosity: minimal
after_build:
- ps: >-
cd $env:APPVEYOR_BUILD_FOLDER\build\
.\create-artifacts.ps1 $env:APPVEYOR_BUILD_FOLDER $env:APPVEYOR_BUILD_VERSION $env:PfxPassword
Get-ChildItem $env:APPVEYOR_BUILD_FOLDER\build\artifacts\ | Foreach-Object {
Push-AppveyorArtifact $_.FullName -FileName $_.Name
}
deploy: off