Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/api-doc-tools.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/mdoc
diff options
context:
space:
mode:
authorJoel Martinez <joelmartinez@gmail.com>2017-12-16 00:41:25 +0300
committerJoel Martinez <joelmartinez@gmail.com>2017-12-16 01:03:46 +0300
commit455b037f6ea0870490a249af7490b10989df97c3 (patch)
tree3e7c6cceca98121ad27d4bb73b76624bdffaae78 /mdoc
parent17eb7009c5ee36c1fdcfdfa62cf593b9b5a1b693 (diff)
mdoc: framework type entry now supports attached events and properties. Closes #188
Diffstat (limited to 'mdoc')
-rw-r--r--mdoc/Mono.Documentation/Updater/Frameworks/FrameworkTypeEntry.cs3
1 files changed, 2 insertions, 1 deletions
diff --git a/mdoc/Mono.Documentation/Updater/Frameworks/FrameworkTypeEntry.cs b/mdoc/Mono.Documentation/Updater/Frameworks/FrameworkTypeEntry.cs
index fd54734f..14bbfe43 100644
--- a/mdoc/Mono.Documentation/Updater/Frameworks/FrameworkTypeEntry.cs
+++ b/mdoc/Mono.Documentation/Updater/Frameworks/FrameworkTypeEntry.cs
@@ -12,6 +12,7 @@ namespace Mono.Documentation.Updater.Frameworks
Dictionary<string, bool> sigMap = new Dictionary<string, bool> ();
ILFullMemberFormatter formatter = new ILFullMemberFormatter ();
+ DocIdFormatter docidFormatter = new DocIdFormatter ();
FrameworkEntry fx;
@@ -37,7 +38,7 @@ namespace Mono.Documentation.Updater.Frameworks
{
var resolvedMember = member.Resolve ();
if (resolvedMember != null) {
- var docid = DocCommentId.GetDocCommentId (resolvedMember);
+ var docid = docidFormatter.GetDeclaration (member);
members.Add (docid);
}
else