aboutsummaryrefslogtreecommitdiff
path: root/src/internal
diff options
context:
space:
mode:
authorRob Mensching <rob@firegiant.com>2025-12-14 17:03:22 -0800
committerRob Mensching <rob@firegiant.com>2025-12-15 13:36:08 -0800
commitaad18fbd75dcf49ba9574f42667928b6a4a58dc8 (patch)
tree951416110b05b6aeab51db334ae75e72f8453e89 /src/internal
parent101fc4ece59306c09e7871ed14c51b46fd958f27 (diff)
downloadwix-aad18fbd75dcf49ba9574f42667928b6a4a58dc8.tar.gz
wix-aad18fbd75dcf49ba9574f42667928b6a4a58dc8.tar.bz2
wix-aad18fbd75dcf49ba9574f42667928b6a4a58dc8.zip
Support setting InstallerPlatform from RuntimeIdentifier
Resolves 9047
Diffstat (limited to 'src/internal')
-rw-r--r--src/internal/WixInternal.MSTestSupport/MsbuildUtilities.cs3
1 files changed, 2 insertions, 1 deletions
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
30 30
31 if (binlog) 31 if (binlog)
32 { 32 {
33 MsbuildUtilities.GetQuotedSwitch(buildSystem, "bl", Path.ChangeExtension(projectPath, ".binlog")); 33 var binlogSwitch = MsbuildUtilities.GetQuotedSwitch(buildSystem, "bl", Path.ChangeExtension(projectPath, ".binlog"));
34 allArgs.Add(binlogSwitch);
34 } 35 }
35 36
36 if (arguments != null) 37 if (arguments != null)