aboutsummaryrefslogtreecommitdiff
path: root/src/wixext/UtilCompiler.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/wixext/UtilCompiler.cs')
-rw-r--r--src/wixext/UtilCompiler.cs4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/wixext/UtilCompiler.cs b/src/wixext/UtilCompiler.cs
index 68c7a234..7314570e 100644
--- a/src/wixext/UtilCompiler.cs
+++ b/src/wixext/UtilCompiler.cs
@@ -3706,13 +3706,15 @@ namespace WixToolset.Util
3706 var symbol = section.AddSymbol(new XmlConfigSymbol(sourceLineNumbers, id) 3706 var symbol = section.AddSymbol(new XmlConfigSymbol(sourceLineNumbers, id)
3707 { 3707 {
3708 File = file, 3708 File = file,
3709 ElementPath = elementId ?? elementPath, 3709 ElementId = elementId,
3710 ElementPath = elementPath,
3710 VerifyPath = verifyPath, 3711 VerifyPath = verifyPath,
3711 Name = name, 3712 Name = name,
3712 Value = value, 3713 Value = value,
3713 Flags = flags, 3714 Flags = flags,
3714 ComponentRef = componentId, 3715 ComponentRef = componentId,
3715 }); 3716 });
3717
3716 if (CompilerConstants.IntegerNotSet != sequence) 3718 if (CompilerConstants.IntegerNotSet != sequence)
3717 { 3719 {
3718 symbol.Sequence = sequence; 3720 symbol.Sequence = sequence;