From 63ac319301dbe74c76c27f2e28fa93fcc1b786cc Mon Sep 17 00:00:00 2001 From: martinh2011 <1169790+martinh2011@users.noreply.github.com> Date: Thu, 26 Mar 2026 17:37:46 +0100 Subject: [PATCH] also find MSBuild v18 (VS 2026) --- src/internal/WixInternal.MSTestSupport/MsbuildRunner.cs | 2 +- src/internal/WixInternal.TestSupport/MsbuildRunner.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/internal/WixInternal.MSTestSupport/MsbuildRunner.cs b/src/internal/WixInternal.MSTestSupport/MsbuildRunner.cs index 69fc7292f..ed2384dd8 100644 --- a/src/internal/WixInternal.MSTestSupport/MsbuildRunner.cs +++ b/src/internal/WixInternal.MSTestSupport/MsbuildRunner.cs @@ -8,7 +8,7 @@ namespace WixInternal.MSTestSupport public class MsbuildRunner : ExternalExecutable { - private static readonly string VswhereFindArguments = "-property installationPath -version [17.0,18.0)"; + private static readonly string VswhereFindArguments = "-property installationPath -version [17.0,19.0)"; private static readonly string MsbuildCurrentRelativePath = @"MSBuild\Current\Bin\MSBuild.exe"; private static readonly string MsbuildCurrentRelativePath64 = @"MSBuild\Current\Bin\amd64\MSBuild.exe"; diff --git a/src/internal/WixInternal.TestSupport/MsbuildRunner.cs b/src/internal/WixInternal.TestSupport/MsbuildRunner.cs index 2cbf5e915..965b22f5b 100644 --- a/src/internal/WixInternal.TestSupport/MsbuildRunner.cs +++ b/src/internal/WixInternal.TestSupport/MsbuildRunner.cs @@ -8,7 +8,7 @@ namespace WixInternal.TestSupport public class MsbuildRunner : ExternalExecutable { - private static readonly string VswhereFindArguments = "-property installationPath -version [17.0,18.0)"; + private static readonly string VswhereFindArguments = "-property installationPath -version [17.0,19.0)"; private static readonly string MsbuildCurrentRelativePath = @"MSBuild\Current\Bin\MSBuild.exe"; private static readonly string MsbuildCurrentRelativePath64 = @"MSBuild\Current\Bin\amd64\MSBuild.exe";