aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Core/Compiler.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/WixToolset.Core/Compiler.cs')
-rw-r--r--src/WixToolset.Core/Compiler.cs12
1 files changed, 9 insertions, 3 deletions
diff --git a/src/WixToolset.Core/Compiler.cs b/src/WixToolset.Core/Compiler.cs
index 384f8795..7113c3b5 100644
--- a/src/WixToolset.Core/Compiler.cs
+++ b/src/WixToolset.Core/Compiler.cs
@@ -728,14 +728,17 @@ namespace WixToolset.Core
728 728
729 if (!this.Core.EncounteredError) 729 if (!this.Core.EncounteredError)
730 { 730 {
731 var symbol = this.Core.AddSymbol(new BinarySymbol(sourceLineNumbers, id) 731 this.Core.AddSymbol(new BinarySymbol(sourceLineNumbers, id)
732 { 732 {
733 Data = new IntermediateFieldPathValue { Path = sourceFile } 733 Data = new IntermediateFieldPathValue { Path = sourceFile }
734 }); 734 });
735 735
736 if (YesNoType.Yes == suppressModularization) 736 if (YesNoType.Yes == suppressModularization)
737 { 737 {
738 this.Core.AddSymbol(new WixSuppressModularizationSymbol(sourceLineNumbers, id)); 738 this.Core.AddSymbol(new WixSuppressModularizationSymbol(sourceLineNumbers)
739 {
740 SuppressIdentifier = id.Id
741 });
739 } 742 }
740 } 743 }
741 744
@@ -3502,7 +3505,10 @@ namespace WixToolset.Core
3502 3505
3503 if (YesNoType.Yes == suppressModularization) 3506 if (YesNoType.Yes == suppressModularization)
3504 { 3507 {
3505 this.Core.AddSymbol(new WixSuppressModularizationSymbol(sourceLineNumbers, id)); 3508 this.Core.AddSymbol(new WixSuppressModularizationSymbol(sourceLineNumbers)
3509 {
3510 SuppressIdentifier = id.Id
3511 });
3506 } 3512 }
3507 } 3513 }
3508 } 3514 }