aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/WixToolset.Data/ErrorMessages.cs6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/WixToolset.Data/ErrorMessages.cs b/src/WixToolset.Data/ErrorMessages.cs
index 32757deb..61bc72af 100644
--- a/src/WixToolset.Data/ErrorMessages.cs
+++ b/src/WixToolset.Data/ErrorMessages.cs
@@ -2284,6 +2284,11 @@ namespace WixToolset.Data
2284 return Message(null, Ids.UnknownSymbolType, "Could not deserialize symbol of type type '{0}' because it is not a standard symbol type or one provided by a loaded extension.", symbolName); 2284 return Message(null, Ids.UnknownSymbolType, "Could not deserialize symbol of type type '{0}' because it is not a standard symbol type or one provided by a loaded extension.", symbolName);
2285 } 2285 }
2286 2286
2287 public static Message IllegalInnerText(SourceLineNumber sourceLineNumbers, string elementName, string innerText)
2288 {
2289 return Message(sourceLineNumbers, Ids.IllegalInnerText, "The {0} element contains illegal inner text: '{1}'.", elementName, innerText);
2290 }
2291
2287 private static Message Message(SourceLineNumber sourceLineNumber, Ids id, string format, params object[] args) 2292 private static Message Message(SourceLineNumber sourceLineNumber, Ids id, string format, params object[] args)
2288 { 2293 {
2289 return new Message(sourceLineNumber, MessageLevel.Error, (int)id, format, args); 2294 return new Message(sourceLineNumber, MessageLevel.Error, (int)id, format, args);
@@ -2686,6 +2691,7 @@ namespace WixToolset.Data
2686 MissingBundleSearch = 397, 2691 MissingBundleSearch = 397,
2687 CircularSearchReference = 398, 2692 CircularSearchReference = 398,
2688 UnknownSymbolType = 399, 2693 UnknownSymbolType = 399,
2694 IllegalInnerText = 400,
2689 } 2695 }
2690 } 2696 }
2691} 2697}