aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Core/Compiler.cs
diff options
context:
space:
mode:
authorBob Arnson <bob@firegiant.com>2020-11-09 15:48:37 -0500
committerBob Arnson <bob@firegiant.com>2020-11-09 15:54:55 -0500
commitaf854e4c8341cc90fb41c8b5122d4308574e8a9a (patch)
tree87d7986c65bebbd4da1835059398f39dcb20d5f8 /src/WixToolset.Core/Compiler.cs
parentae38ae001422b6925e3d214334fd64cfba526952 (diff)
downloadwix-af854e4c8341cc90fb41c8b5122d4308574e8a9a.tar.gz
wix-af854e4c8341cc90fb41c8b5122d4308574e8a9a.tar.bz2
wix-af854e4c8341cc90fb41c8b5122d4308574e8a9a.zip
Obsolete long-deprecated elements and attributes.
Diffstat (limited to 'src/WixToolset.Core/Compiler.cs')
-rw-r--r--src/WixToolset.Core/Compiler.cs13
1 files changed, 0 insertions, 13 deletions
diff --git a/src/WixToolset.Core/Compiler.cs b/src/WixToolset.Core/Compiler.cs
index 8d110ac3..addb9750 100644
--- a/src/WixToolset.Core/Compiler.cs
+++ b/src/WixToolset.Core/Compiler.cs
@@ -694,16 +694,6 @@ namespace WixToolset.Core
694 id = this.Core.GetAttributeIdentifier(sourceLineNumbers, attrib); 694 id = this.Core.GetAttributeIdentifier(sourceLineNumbers, attrib);
695 break; 695 break;
696 case "SourceFile": 696 case "SourceFile":
697 case "src":
698 if (null != sourceFile)
699 {
700 this.Core.Write(ErrorMessages.IllegalAttributeWithOtherAttribute(sourceLineNumbers, node.Name.LocalName, "SourceFile", "src"));
701 }
702
703 if ("src" == attrib.Name.LocalName)
704 {
705 this.Core.Write(WarningMessages.DeprecatedAttribute(sourceLineNumbers, node.Name.LocalName, attrib.Name.LocalName, "SourceFile"));
706 }
707 sourceFile = this.Core.GetAttributeValue(sourceLineNumbers, attrib); 697 sourceFile = this.Core.GetAttributeValue(sourceLineNumbers, attrib);
708 break; 698 break;
709 case "SuppressModularization": 699 case "SuppressModularization":
@@ -6252,9 +6242,6 @@ namespace WixToolset.Core
6252 case "Icon": 6242 case "Icon":
6253 this.ParseIconElement(child); 6243 this.ParseIconElement(child);
6254 break; 6244 break;
6255 case "IgnoreModularization":
6256 this.ParseIgnoreModularizationElement(child);
6257 break;
6258 case "Media": 6245 case "Media":
6259 this.ParseMediaElement(child, null); 6246 this.ParseMediaElement(child, null);
6260 break; 6247 break;