diff options
-rw-r--r-- | src/WixToolset.Core.Burn/Bundles/ProcessMsiPackageCommand.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/WixToolset.Core.Burn/Bundles/ProcessMsiPackageCommand.cs b/src/WixToolset.Core.Burn/Bundles/ProcessMsiPackageCommand.cs index ec472a53..d21f640c 100644 --- a/src/WixToolset.Core.Burn/Bundles/ProcessMsiPackageCommand.cs +++ b/src/WixToolset.Core.Burn/Bundles/ProcessMsiPackageCommand.cs | |||
@@ -190,7 +190,7 @@ namespace WixToolset.Core.Burn.Bundles | |||
190 | private ISet<string> GetMsiPropertyNames(string packageId) | 190 | private ISet<string> GetMsiPropertyNames(string packageId) |
191 | { | 191 | { |
192 | var properties = this.Section.Symbols.OfType<WixBundleMsiPropertySymbol>() | 192 | var properties = this.Section.Symbols.OfType<WixBundleMsiPropertySymbol>() |
193 | .Where(p => p.Id.Id == packageId) | 193 | .Where(p => p.PackageRef == packageId) |
194 | .Select(p => p.Name); | 194 | .Select(p => p.Name); |
195 | 195 | ||
196 | return new HashSet<string>(properties, StringComparer.Ordinal); | 196 | return new HashSet<string>(properties, StringComparer.Ordinal); |