aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/WixToolset.Core/Compiler_Bundle.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/WixToolset.Core/Compiler_Bundle.cs b/src/WixToolset.Core/Compiler_Bundle.cs
index 58a4ee64..0ed49fbc 100644
--- a/src/WixToolset.Core/Compiler_Bundle.cs
+++ b/src/WixToolset.Core/Compiler_Bundle.cs
@@ -687,7 +687,7 @@ namespace WixToolset.Core
687 // Add the application as an attached container and if an Id was provided add that too. 687 // Add the application as an attached container and if an Id was provided add that too.
688 if (!this.Core.EncounteredError) 688 if (!this.Core.EncounteredError)
689 { 689 {
690 this.Core.AddTuple(new WixBundleContainerTuple(sourceLineNumbers, new Identifier(AccessModifier.Private, Compiler.BurnUXContainerId)) 690 this.Core.AddTuple(new WixBundleContainerTuple(sourceLineNumbers, Compiler.BurnUXContainerId)
691 { 691 {
692 Name = "bundle-ux.cab", 692 Name = "bundle-ux.cab",
693 Type = ContainerType.Attached 693 Type = ContainerType.Attached
@@ -1148,7 +1148,7 @@ namespace WixToolset.Core
1148 1148
1149 this.Core.AddTuple(tuple); 1149 this.Core.AddTuple(tuple);
1150 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 } 1152 }
1153 1153
1154 return tuple; 1154 return tuple;