From 5c695bff70e4e7a128bd692d0e506207b0669403 Mon Sep 17 00:00:00 2001 From: Chris Kaczor Date: Mon, 12 Feb 2018 18:04:55 -0500 Subject: [PATCH] Add AppVeyor configuration --- WixFileVersionExtension.csproj | 1 + appveyor.yml | 24 ++++++++++++++++++++++++ 2 files changed, 25 insertions(+) create mode 100644 appveyor.yml diff --git a/WixFileVersionExtension.csproj b/WixFileVersionExtension.csproj index ec26639..513d28c 100644 --- a/WixFileVersionExtension.csproj +++ b/WixFileVersionExtension.csproj @@ -89,6 +89,7 @@ + diff --git a/appveyor.yml b/appveyor.yml new file mode 100644 index 0000000..3491c19 --- /dev/null +++ b/appveyor.yml @@ -0,0 +1,24 @@ +version: 1.0.0.{build} +pull_requests: + do_not_increment_build_number: true +image: Visual Studio 2015 +configuration: Release +assembly_info: + patch: true + file: '**\AssemblyInfo.*' + assembly_version: '{version}' + assembly_file_version: '{version}' +build: + verbosity: minimal +after_build: +- cmd: nuget pack WixFileVersionExtension.nuspec -Version %appveyor_build_version% -Properties Configuration=Release -OutputDirectory bin\Release\ +artifacts: +- path: bin\$(configuration)\WixFileVersionExtension.dll + name: WixFileVersionExtension +- path: bin\$(configuration)\WixFileVersionExtension.*.nupkg + name: NuGet +deploy: +- provider: Environment + name: GitHub +- provider: Environment + name: NuGet \ No newline at end of file