Skip to content

Commit 1d1c255

Browse files
committedDec 12, 2019
Update AppVeyor builds:
Use VS2019 as AppVeyor environment Generate artifact in AppVeyor Avoid extension deployment on AppVeyor
1 parent e903c03 commit 1d1c255

File tree

2 files changed

+10
-16
lines changed

2 files changed

+10
-16
lines changed
 

‎GenerateCppFiltersExtension/GenerateCppFiltersExtension.csproj

+1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
<UpgradeBackupLocation>
1313
</UpgradeBackupLocation>
1414
<OldToolsVersion>15.0</OldToolsVersion>
15+
<DeployExtension Condition="'$(AppVeyor)' != ''">False</DeployExtension>
1516
</PropertyGroup>
1617
<PropertyGroup>
1718
<SignAssembly>true</SignAssembly>

‎appveyor.yml

+9-16
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,17 @@
1-
version: "1.50.{build}"
1+
version: 1.50.{build}
22

3-
#vc150
4-
os: Visual Studio 2017
3+
image: Visual Studio 2019
4+
5+
before_build:
6+
- cmd: nuget restore
57

68
configuration:
7-
- Debug
89
- Release
910

10-
init:
11-
- set PATH=C:\Program Files (x86)\MSBuild\15.0\Bin;%PATH%
12-
- cmd: msbuild /version
13-
14-
clone_folder: C:\projects\GenerateCppFiltersExtension
15-
1611
build:
17-
project: $(APPVEYOR_BUILD_FOLDER)\GenerateCppFiltersExtension.sln
18-
parallel: true
19-
verbosity: normal
12+
verbosity: minimal
13+
14+
artifacts:
15+
- path: '**\*.vsix'
2016

21-
before_build:
22-
- nuget restore GenerateCppFiltersExtension.sln -Verbosity quiet
2317

24-
test: off

0 commit comments

Comments
 (0)
Please sign in to comment.