From 50b3e55414878874ead824f13fb3a2b8634f708d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Wolfgang=20Wallh=C3=A4user?= Date: Mon, 30 Sep 2019 15:00:03 +0200 Subject: [PATCH] Fixed detection of VS2017InstallPath when both, Visual Studio 2017 and 2019 are installed --- build.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.ps1 b/build.ps1 index e5ff6b0..19e09cd 100644 --- a/build.ps1 +++ b/build.ps1 @@ -293,7 +293,7 @@ try Write-Diagnostic "VSWhere path $vswherePath" - $VS2017InstallPath = & $vswherePath -version 15 -property installationPath + $VS2017InstallPath = & $vswherePath -version '[15.0,16.0)' -property installationPath Write-Diagnostic "VS2017InstallPath: $VS2017InstallPath"