aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Core.WindowsInstaller
diff options
context:
space:
mode:
authorRob Mensching <rob@firegiant.com>2021-03-01 10:14:38 -0800
committerRob Mensching <rob@firegiant.com>2021-03-01 12:23:34 -0800
commit3eb3c26c796984b64365fda077f173af8bf31559 (patch)
tree0912d69363973bc8db704a18b1b4bcede6a84360 /src/WixToolset.Core.WindowsInstaller
parent697f2cdbdcd8198d06ebf14fc2b65f0ce3fa5a94 (diff)
downloadwix-3eb3c26c796984b64365fda077f173af8bf31559.tar.gz
wix-3eb3c26c796984b64365fda077f173af8bf31559.tar.bz2
wix-3eb3c26c796984b64365fda077f173af8bf31559.zip
Fix handling of suppress modularization
Partially fixes wixtoolset/issues#5944
Diffstat (limited to 'src/WixToolset.Core.WindowsInstaller')
-rw-r--r--src/WixToolset.Core.WindowsInstaller/Bind/ModularizeCommand.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/WixToolset.Core.WindowsInstaller/Bind/ModularizeCommand.cs b/src/WixToolset.Core.WindowsInstaller/Bind/ModularizeCommand.cs
index 66ca502d..49ef1adf 100644
--- a/src/WixToolset.Core.WindowsInstaller/Bind/ModularizeCommand.cs
+++ b/src/WixToolset.Core.WindowsInstaller/Bind/ModularizeCommand.cs
@@ -21,7 +21,7 @@ namespace WixToolset.Core.WindowsInstaller.Bind
21 this.ModularizationSuffix = modularizationSuffix; 21 this.ModularizationSuffix = modularizationSuffix;
22 22
23 // Gather all the unique suppress modularization identifiers. 23 // Gather all the unique suppress modularization identifiers.
24 this.SuppressModularizationIdentifiers = new HashSet<string>(suppressSymbols.Select(s => s.Id.Id)); 24 this.SuppressModularizationIdentifiers = new HashSet<string>(suppressSymbols.Select(s => s.SuppressIdentifier));
25 } 25 }
26 26
27 private WindowsInstallerData Output { get; } 27 private WindowsInstallerData Output { get; }