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-03-29 00:07:59 +0300
committerJoel Martinez <joelmartinez@gmail.com>2017-03-29 00:07:59 +0300
commit5edf024b893503165050378c2ed8792336afdbcd (patch)
tree6f2b1a597cdd7ddb0597f01745d6bfe2ee33cbeb /mdoc
parent850ad16c81d989dc34948bbbe3dfb9c85e53f924 (diff)
mdoc: no longer skips documenting forwarded types.
Resolves #53
Diffstat (limited to 'mdoc')
-rw-r--r--mdoc/Mono.Documentation/monodocer.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/mdoc/Mono.Documentation/monodocer.cs b/mdoc/Mono.Documentation/monodocer.cs
index b2cb431f..081657c5 100644
--- a/mdoc/Mono.Documentation/monodocer.cs
+++ b/mdoc/Mono.Documentation/monodocer.cs
@@ -921,7 +921,7 @@ class MDocUpdater : MDocCommand
foreach (TypeDefinition type in docEnum.GetDocumentationTypes (assembly, null)) {
string typename = GetTypeFileName(type);
- if (!IsPublic (type) || typename.IndexOfAny (InvalidFilenameChars) >= 0 || assemblySet.ContainsForwardedType (type.FullName))
+ if (!IsPublic (type) || typename.IndexOfAny (InvalidFilenameChars) >= 0)
continue;
var typeEntry = frameworkEntry.ProcessType (type);