aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Core.Burn/Bundles/ProcessMspPackageCommand.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/WixToolset.Core.Burn/Bundles/ProcessMspPackageCommand.cs')
-rw-r--r--src/WixToolset.Core.Burn/Bundles/ProcessMspPackageCommand.cs6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/WixToolset.Core.Burn/Bundles/ProcessMspPackageCommand.cs b/src/WixToolset.Core.Burn/Bundles/ProcessMspPackageCommand.cs
index dc832d40..5acffe33 100644
--- a/src/WixToolset.Core.Burn/Bundles/ProcessMspPackageCommand.cs
+++ b/src/WixToolset.Core.Burn/Bundles/ProcessMspPackageCommand.cs
@@ -127,14 +127,12 @@ namespace WixToolset.Core.Burn.Bundles
127 127
128 if (uniqueTargetCodes.Add(targetCode)) 128 if (uniqueTargetCodes.Add(targetCode))
129 { 129 {
130 var tuple = new WixBundlePatchTargetCodeTuple(packagePayload.SourceLineNumbers) 130 this.Section.AddTuple(new WixBundlePatchTargetCodeTuple(packagePayload.SourceLineNumbers)
131 { 131 {
132 PackageRef = packagePayload.Id.Id, 132 PackageRef = packagePayload.Id.Id,
133 TargetCode = targetCode, 133 TargetCode = targetCode,
134 Attributes = attributes 134 Attributes = attributes
135 }; 135 });
136
137 this.Section.Tuples.Add(tuple);
138 } 136 }
139 } 137 }
140 138