aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Core/Compiler.cs
diff options
context:
space:
mode:
authorBob Arnson <bob@firegiant.com>2020-01-06 14:54:31 -0500
committerBob Arnson <bob@firegiant.com>2020-01-06 15:04:11 -0500
commit69651a71ff2fdc1e9897b878782d79dcc1f9b896 (patch)
tree103699cd0d8a3f8887c3f0b04f33f411fde62789 /src/WixToolset.Core/Compiler.cs
parent427e1a8c65c038e63674503f4f56e53fe00ac7f0 (diff)
downloadwix-69651a71ff2fdc1e9897b878782d79dcc1f9b896.tar.gz
wix-69651a71ff2fdc1e9897b878782d79dcc1f9b896.tar.bz2
wix-69651a71ff2fdc1e9897b878782d79dcc1f9b896.zip
Ensure Errors have ids so they can be referenced.
Diffstat (limited to 'src/WixToolset.Core/Compiler.cs')
-rw-r--r--src/WixToolset.Core/Compiler.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/WixToolset.Core/Compiler.cs b/src/WixToolset.Core/Compiler.cs
index 2a020ad5..6b9fe59e 100644
--- a/src/WixToolset.Core/Compiler.cs
+++ b/src/WixToolset.Core/Compiler.cs
@@ -5297,7 +5297,7 @@ namespace WixToolset.Core
5297 5297
5298 if (!this.Core.EncounteredError) 5298 if (!this.Core.EncounteredError)
5299 { 5299 {
5300 var tuple = new ErrorTuple(sourceLineNumbers) 5300 var tuple = new ErrorTuple(sourceLineNumbers, new Identifier(AccessModifier.Public, id))
5301 { 5301 {
5302 Error = id, 5302 Error = id,
5303 Message = Common.GetInnerText(node) 5303 Message = Common.GetInnerText(node)