From aad18fbd75dcf49ba9574f42667928b6a4a58dc8 Mon Sep 17 00:00:00 2001 From: Rob Mensching Date: Sun, 14 Dec 2025 17:03:22 -0800 Subject: Support setting InstallerPlatform from RuntimeIdentifier Resolves 9047 --- src/internal/WixInternal.MSTestSupport/MsbuildUtilities.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/internal') diff --git a/src/internal/WixInternal.MSTestSupport/MsbuildUtilities.cs b/src/internal/WixInternal.MSTestSupport/MsbuildUtilities.cs index 8f3fecd9..516143dd 100644 --- a/src/internal/WixInternal.MSTestSupport/MsbuildUtilities.cs +++ b/src/internal/WixInternal.MSTestSupport/MsbuildUtilities.cs @@ -30,7 +30,8 @@ namespace WixInternal.MSTestSupport if (binlog) { - MsbuildUtilities.GetQuotedSwitch(buildSystem, "bl", Path.ChangeExtension(projectPath, ".binlog")); + var binlogSwitch = MsbuildUtilities.GetQuotedSwitch(buildSystem, "bl", Path.ChangeExtension(projectPath, ".binlog")); + allArgs.Add(binlogSwitch); } if (arguments != null) -- cgit v1.2.3-55-g6feb