aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorRob Mensching <rob@firegiant.com>2019-05-24 11:22:25 -0700
committerRob Mensching <rob@firegiant.com>2019-10-07 11:59:14 -0700
commit49b2da817e5d584e7acb8f716c0466bfd4fdc510 (patch)
tree488bbc8f739795b199c47d66b59bf4f2a1a1e958 /src
parent9170d12eed6fbb0af88963f71fdc661bdcecfd58 (diff)
downloadwix-49b2da817e5d584e7acb8f716c0466bfd4fdc510.tar.gz
wix-49b2da817e5d584e7acb8f716c0466bfd4fdc510.tar.bz2
wix-49b2da817e5d584e7acb8f716c0466bfd4fdc510.zip
Fix bundle BA container id
Diffstat (limited to 'src')
-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;