diff options
author | Rob Mensching <rob@firegiant.com> | 2021-03-02 01:43:52 -0800 |
---|---|---|
committer | Rob Mensching <rob@firegiant.com> | 2021-03-02 01:57:04 -0800 |
commit | 5d2f6b097147a8ca1574724d6393b96f971808ea (patch) | |
tree | dea1404a5dc2b8e119f39deef218416bcba58700 /src | |
parent | b8a6dcabf49c0d2048aa7e19a1b51cdd138ba51f (diff) | |
download | wix-5d2f6b097147a8ca1574724d6393b96f971808ea.tar.gz wix-5d2f6b097147a8ca1574724d6393b96f971808ea.tar.bz2 wix-5d2f6b097147a8ca1574724d6393b96f971808ea.zip |
Fix warnings in XML doc
Diffstat (limited to 'src')
-rw-r--r-- | src/WixToolset.Extensibility/BaseCompilerExtension.cs | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/WixToolset.Extensibility/BaseCompilerExtension.cs b/src/WixToolset.Extensibility/BaseCompilerExtension.cs index 2eac3706..3e185e14 100644 --- a/src/WixToolset.Extensibility/BaseCompilerExtension.cs +++ b/src/WixToolset.Extensibility/BaseCompilerExtension.cs | |||
@@ -2,6 +2,7 @@ | |||
2 | 2 | ||
3 | namespace WixToolset.Extensibility | 3 | namespace WixToolset.Extensibility |
4 | { | 4 | { |
5 | using System; | ||
5 | using System.Collections.Generic; | 6 | using System.Collections.Generic; |
6 | using System.Xml.Linq; | 7 | using System.Xml.Linq; |
7 | using WixToolset.Data; | 8 | using WixToolset.Data; |
@@ -52,7 +53,7 @@ namespace WixToolset.Extensibility | |||
52 | } | 53 | } |
53 | 54 | ||
54 | /// <summary> | 55 | /// <summary> |
55 | /// See <see cref="ICompilerExtension.ParseAttribute(Intermediate, IntermediateSection, XElement, XAttribute, IDictionary{string, string})"/> | 56 | /// See <see cref="ICompilerExtension.ParseAttribute(Intermediate, IntermediateSection, XElement, XAttribute, IDictionary{String, String})"/> |
56 | /// </summary> | 57 | /// </summary> |
57 | public virtual void ParseAttribute(Intermediate intermediate, IntermediateSection section, XElement parentElement, XAttribute attribute, IDictionary<string, string> context) | 58 | public virtual void ParseAttribute(Intermediate intermediate, IntermediateSection section, XElement parentElement, XAttribute attribute, IDictionary<string, string> context) |
58 | { | 59 | { |
@@ -60,7 +61,7 @@ namespace WixToolset.Extensibility | |||
60 | } | 61 | } |
61 | 62 | ||
62 | /// <summary> | 63 | /// <summary> |
63 | /// See <see cref="ICompilerExtension.ParseElement(Intermediate, IntermediateSection, XElement, XElement, IDictionary{string, string})"/> | 64 | /// See <see cref="ICompilerExtension.ParseElement(Intermediate, IntermediateSection, XElement, XElement, IDictionary{String, String})"/> |
64 | /// </summary> | 65 | /// </summary> |
65 | public virtual void ParseElement(Intermediate intermediate, IntermediateSection section, XElement parentElement, XElement element, IDictionary<string, string> context) | 66 | public virtual void ParseElement(Intermediate intermediate, IntermediateSection section, XElement parentElement, XElement element, IDictionary<string, string> context) |
66 | { | 67 | { |
@@ -68,7 +69,7 @@ namespace WixToolset.Extensibility | |||
68 | } | 69 | } |
69 | 70 | ||
70 | /// <summary> | 71 | /// <summary> |
71 | /// See <see cref="ICompilerExtension.ParsePossibleKeyPathElement(Intermediate, IntermediateSection, XElement, XElement, IDictionary{string, string})"/> | 72 | /// See <see cref="ICompilerExtension.ParsePossibleKeyPathElement(Intermediate, IntermediateSection, XElement, XElement, IDictionary{String, String})"/> |
72 | /// </summary> | 73 | /// </summary> |
73 | public virtual IComponentKeyPath ParsePossibleKeyPathElement(Intermediate intermediate, IntermediateSection section, XElement parentElement, XElement element, IDictionary<string, string> context) | 74 | public virtual IComponentKeyPath ParsePossibleKeyPathElement(Intermediate intermediate, IntermediateSection section, XElement parentElement, XElement element, IDictionary<string, string> context) |
74 | { | 75 | { |