From f1b37c3a4d620298f8c646ac0a308a6fae1b662d Mon Sep 17 00:00:00 2001 From: Sean Hall Date: Fri, 18 Dec 2020 20:09:31 -0600 Subject: Enable XML doc and delete obsolete IParseHelper methods. --- src/WixToolset.Extensibility/BaseCompilerExtension.cs | 16 +++------------- 1 file changed, 3 insertions(+), 13 deletions(-) (limited to 'src/WixToolset.Extensibility/BaseCompilerExtension.cs') diff --git a/src/WixToolset.Extensibility/BaseCompilerExtension.cs b/src/WixToolset.Extensibility/BaseCompilerExtension.cs index 51fbcd0b..2eac3706 100644 --- a/src/WixToolset.Extensibility/BaseCompilerExtension.cs +++ b/src/WixToolset.Extensibility/BaseCompilerExtension.cs @@ -52,34 +52,24 @@ namespace WixToolset.Extensibility } /// - /// Processes an attribute for the Compiler. + /// See /// - /// Parent element of attribute. - /// Attribute to process. - /// Extra information about the context in which this element is being parsed. public virtual void ParseAttribute(Intermediate intermediate, IntermediateSection section, XElement parentElement, XAttribute attribute, IDictionary context) { this.ParseHelper.UnexpectedAttribute(parentElement, attribute); } /// - /// Processes an element for the Compiler. + /// See /// - /// Parent element of element to process. - /// Element to process. - /// Extra information about the context in which this element is being parsed. public virtual void ParseElement(Intermediate intermediate, IntermediateSection section, XElement parentElement, XElement element, IDictionary context) { this.ParseHelper.UnexpectedElement(parentElement, element); } /// - /// Processes an element for the Compiler, with the ability to supply a component keypath. + /// See /// - /// Parent element of element to process. - /// Element to process. - /// Explicit key path. - /// Extra information about the context in which this element is being parsed. public virtual IComponentKeyPath ParsePossibleKeyPathElement(Intermediate intermediate, IntermediateSection section, XElement parentElement, XElement element, IDictionary context) { this.ParseElement(intermediate, section, parentElement, element, context); -- cgit v1.2.3-55-g6feb