From 0b9b38c51a1984ca7947065f6954420bbf18c475 Mon Sep 17 00:00:00 2001 From: "Samir L. Boulema" Date: Thu, 21 Jun 2018 10:08:24 +0200 Subject: [PATCH] Fix Appveyor --- appveyor.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/appveyor.yml b/appveyor.yml index 971a4c6..f7c53b0 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -1,16 +1,30 @@ version: 1.5.{build} skip_tags: true + +image: Visual Studio 2017 + configuration: - Release + install: - ps: (new-object Net.WebClient).DownloadString("https://raw.github.com/madskristensen/ExtensionScripts/master/AppVeyor/vsix.ps1") | iex + before_build: - ps: >- Vsix-IncrementVsixVersion | Vsix-UpdateBuildVersion nuget restore -Verbosity quiet + +assembly_info: + patch: true + file: '**\AssemblyInfo.*' + assembly_version: '{version}' + assembly_file_version: '{version}' + assembly_informational_version: '{version}' + build: verbosity: minimal + after_build: - ps: >- Get-ChildItem ./*.vsix -Recurse | Rename-Item -NewName {$_.basename + '_' + $env:APPVEYOR_BUILD_VERSION + $_.extension }