Fix warnings in XML doc
Rob Mensching committed
Mar 2, 2021 at 01:43 UTC
5d2f6b097147a8ca1574724d6393b96f971808ea
1 file changed
+4
-3
src/WixToolset.Extensibility/BaseCompilerExtension.cs
+4
-3
@@ -2,6 +2,7 @@
2
3
namespace WixToolset.Extensibility
4
{
5
+ using System;
6
using System.Collections.Generic;
7
using System.Xml.Linq;
8
using WixToolset.Data;
@@ -52,7 +53,7 @@ namespace WixToolset.Extensibility
53
}
54
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})"/>
57
/// </summary>
58
public virtual void ParseAttribute(Intermediate intermediate, IntermediateSection section, XElement parentElement, XAttribute attribute, IDictionary<string, string> context)
59
{
@@ -60,7 +61,7 @@ namespace WixToolset.Extensibility
61
}
62
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})"/>
65
/// </summary>
66
public virtual void ParseElement(Intermediate intermediate, IntermediateSection section, XElement parentElement, XElement element, IDictionary<string, string> context)
67
{
@@ -68,7 +69,7 @@ namespace WixToolset.Extensibility
69
}
70
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})"/>
73
/// </summary>
74
public virtual IComponentKeyPath ParsePossibleKeyPathElement(Intermediate intermediate, IntermediateSection section, XElement parentElement, XElement element, IDictionary<string, string> context)
75
{