forked from flcdrg/PowerShellWixExtension
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathappveyor.yml
More file actions
23 lines (18 loc) · 709 Bytes
/
appveyor.yml
File metadata and controls
23 lines (18 loc) · 709 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
version: 2.0.{build}
os: Visual Studio 2015
install:
- choco install gitversion.portable -pre -y
- set PATH=C:\Program Files (x86)\MSBuild\14.0\Bin;%PATH%
assembly_info:
patch: false
configuration:
- Release
before_build:
- nuget restore
- ps: gitversion /l console /output buildserver /updateAssemblyInfo
build:
project: PowerShellWixExtension.sln
after_build:
- cmd: ECHO nuget pack PowerShellWixExtension.nuspec -version "%GitVersion_NuGetVersion%" -prop "target=%CONFIGURATION%"
- cmd: nuget pack PowerShellWixExtension.nuspec -version "%GitVersion_NuGetVersion%" -prop "target=%CONFIGURATION%"
- cmd: appveyor PushArtifact "PowerShellWixExtension.%GitVersion_NuGetVersion%.nupkg"