aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Core/CompilerCore.cs
diff options
context:
space:
mode:
authorRob Mensching <rob@firegiant.com>2021-03-26 12:59:03 -0700
committerRob Mensching <rob@firegiant.com>2021-04-02 14:58:00 -0700
commit9cca339473d77c7036035f949239f5231c325968 (patch)
tree342399ad52d1eb8102be17c71a12242c566fca25 /src/WixToolset.Core/CompilerCore.cs
parent67bcf306aa020c5480b6dd28eab5db3d49264585 (diff)
downloadwix-9cca339473d77c7036035f949239f5231c325968.tar.gz
wix-9cca339473d77c7036035f949239f5231c325968.tar.bz2
wix-9cca339473d77c7036035f949239f5231c325968.zip
Integrate the IntermediateSection and IntermediateSymbol mutable changes
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