diff options
Diffstat (limited to 'src/WixToolset.Core/CompilerCore.cs')
-rw-r--r-- | src/WixToolset.Core/CompilerCore.cs | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/WixToolset.Core/CompilerCore.cs b/src/WixToolset.Core/CompilerCore.cs index 8e4f3d89..721eae6b 100644 --- a/src/WixToolset.Core/CompilerCore.cs +++ b/src/WixToolset.Core/CompilerCore.cs | |||
@@ -1086,6 +1086,15 @@ namespace WixToolset.Core | |||
1086 | return this.parseHelper.ScheduleActionSymbol(this.ActiveSection, sourceLineNumbers, access, sequence, actionName, condition, beforeAction, afterAction, overridable); | 1086 | return this.parseHelper.ScheduleActionSymbol(this.ActiveSection, sourceLineNumbers, access, sequence, actionName, condition, beforeAction, afterAction, overridable); |
1087 | } | 1087 | } |
1088 | 1088 | ||
1089 | internal void VerifyNoInnerText(SourceLineNumber sourceLineNumbers, XElement element) | ||
1090 | { | ||
1091 | var innerText = Common.GetInnerText(element); | ||
1092 | if (!String.IsNullOrWhiteSpace(innerText)) | ||
1093 | { | ||
1094 | this.messaging.Write(ErrorMessages.IllegalInnerText(sourceLineNumbers, element.Name.LocalName, innerText)); | ||
1095 | } | ||
1096 | } | ||
1097 | |||
1089 | private static string CreateValueList(ValueListKind kind, IEnumerable<string> values) | 1098 | private static string CreateValueList(ValueListKind kind, IEnumerable<string> values) |
1090 | { | 1099 | { |
1091 | // Ideally, we could denote the list kind (and the list itself) directly in the | 1100 | // Ideally, we could denote the list kind (and the list itself) directly in the |