Skip to content

Commit e96adaa

Browse files
committed
Revert back to Visual Studio 2017 to fix build
It seems the Windows Runtime Component build fails on missing Windows SDK or something. I don't see anything obvious at: https://www.appveyor.com/docs/windows-images-software/#windows-sdks Need to revisit this. Revert "Fix path to msbuild 16" This reverts commit 0e98fd2.
1 parent 0e98fd2 commit e96adaa

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Build/build-functions.psm1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ $nuget = "$root\Tools\NuGet.exe"
77
$vswhere = "${env:ProgramFiles(x86)}\Microsoft Visual Studio\Installer\vswhere.exe"
88
$msbuild = & $vswhere -latest -products * -requires Microsoft.Component.MSBuild -property installationPath
99
if ($msbuild) {
10-
$msbuild = join-path $msbuild 'MSBuild\Current\Bin\MSBuild.exe'
10+
$msbuild = join-path $msbuild 'MSBuild\15.0\Bin\MSBuild.exe'
1111
}
1212

1313
function Remove-ArtifactsDir {

appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
version: '{build}'
2-
image: Visual Studio 2019
2+
image: Visual Studio 2017
33

44
# Don't build PR commits twice
55
skip_branch_with_pr: true

0 commit comments

Comments
 (0)