aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Core.Burn
diff options
context:
space:
mode:
authorSean Hall <r.sean.hall@gmail.com>2021-03-31 13:32:57 -0500
committerSean Hall <r.sean.hall@gmail.com>2021-03-31 13:36:55 -0500
commitc8d8b48c87254f2b3932f169bd5e2783fb8fb627 (patch)
tree3935f1fab34bfcacd98079fb647981fe7563b40e /src/WixToolset.Core.Burn
parent87ffd980dc518a7ab40901eeae27b75259ea32b0 (diff)
downloadwix-c8d8b48c87254f2b3932f169bd5e2783fb8fb627.tar.gz
wix-c8d8b48c87254f2b3932f169bd5e2783fb8fb627.tar.bz2
wix-c8d8b48c87254f2b3932f169bd5e2783fb8fb627.zip
Fix regression where PayloadRefs for harvested payloads weren't created
Diffstat (limited to 'src/WixToolset.Core.Burn')
-rw-r--r--src/WixToolset.Core.Burn/Bind/BindBundleCommand.cs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/WixToolset.Core.Burn/Bind/BindBundleCommand.cs b/src/WixToolset.Core.Burn/Bind/BindBundleCommand.cs
index 4e07d598..ea8d33d0 100644
--- a/src/WixToolset.Core.Burn/Bind/BindBundleCommand.cs
+++ b/src/WixToolset.Core.Burn/Bind/BindBundleCommand.cs
@@ -251,6 +251,7 @@ namespace WixToolset.Core.Burn
251 // Reindex the payloads now that all the payloads (minus the manifest payloads that will be created later) 251 // Reindex the payloads now that all the payloads (minus the manifest payloads that will be created later)
252 // are present. 252 // are present.
253 payloadSymbols = section.Symbols.OfType<WixBundlePayloadSymbol>().ToDictionary(t => t.Id.Id); 253 payloadSymbols = section.Symbols.OfType<WixBundlePayloadSymbol>().ToDictionary(t => t.Id.Id);
254 wixGroupSymbols = this.GetRequiredSymbols<WixGroupSymbol>();
254 packagesPayloads = RecalculatePackagesPayloads(payloadSymbols, wixGroupSymbols); 255 packagesPayloads = RecalculatePackagesPayloads(payloadSymbols, wixGroupSymbols);
255 256
256 // Process the payloads that were added by processing the packages. 257 // Process the payloads that were added by processing the packages.