@joebigelow / wix / commits / 49b2da81

Fix bundle BA container id

Rob Mensching committed May 24, 2019 at 11:22 UTC 49b2da817e5d584e7acb8f716c0466bfd4fdc510
1 file changed +2 -2
src/WixToolset.Core/Compiler_Bundle.cs
+2 -2
@@ -687,7 +687,7 @@ namespace WixToolset.Core
687 // Add the application as an attached container and if an Id was provided add that too.
688 if (!this.Core.EncounteredError)
689 {
690 - this.Core.AddTuple(new WixBundleContainerTuple(sourceLineNumbers, new Identifier(AccessModifier.Private, Compiler.BurnUXContainerId))
690 + this.Core.AddTuple(new WixBundleContainerTuple(sourceLineNumbers, Compiler.BurnUXContainerId)
691 {
692 Name = "bundle-ux.cab",
693 Type = ContainerType.Attached
@@ -1148,7 +1148,7 @@ namespace WixToolset.Core
1148
1149 this.Core.AddTuple(tuple);
1150
1151 - this.CreateGroupAndOrderingRows(sourceLineNumbers, parentType, parentId.Id, ComplexReferenceChildType.Payload, id.Id, previousType, previousId.Id);
1151 + this.CreateGroupAndOrderingRows(sourceLineNumbers, parentType, parentId.Id, ComplexReferenceChildType.Payload, id.Id, previousType, previousId?.Id);
1152 }
1153
1154 return tuple;