aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Core/CompilerCore.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/WixToolset.Core/CompilerCore.cs')
-rw-r--r--src/WixToolset.Core/CompilerCore.cs3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/WixToolset.Core/CompilerCore.cs b/src/WixToolset.Core/CompilerCore.cs
index d737b359..0bc63d79 100644
--- a/src/WixToolset.Core/CompilerCore.cs
+++ b/src/WixToolset.Core/CompilerCore.cs
@@ -1059,8 +1059,7 @@ namespace WixToolset.Core
1059 /// <returns>New section.</returns> 1059 /// <returns>New section.</returns>
1060 internal IntermediateSection CreateSection(string id, SectionType type, int codepage, string compilationId) 1060 internal IntermediateSection CreateSection(string id, SectionType type, int codepage, string compilationId)
1061 { 1061 {
1062 var section = new IntermediateSection(id, type, codepage); 1062 var section = new IntermediateSection(id, type, codepage, compilationId);
1063 section.CompilationId = compilationId;
1064 1063
1065 this.intermediate.Sections.Add(section); 1064 this.intermediate.Sections.Add(section);
1066 1065