Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/internal/WixInternal.MSTestSupport/MsbuildRunner.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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";

Expand Down
2 changes: 1 addition & 1 deletion src/internal/WixInternal.TestSupport/MsbuildRunner.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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";

Expand Down
Loading