Skip to content

Commit 0b6d923

Browse files
authored
Fix bug : Cross reference not found: 'System.IDisposable.Close'. (#720) (#724)
* update * update * update
2 parents 28b327f + 2d1b108 commit 0b6d923

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

mdoc/Consts.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ namespace Mono.Documentation
33
{
44
public static class Consts
55
{
6-
public static string MonoVersion = "5.9.3.6";
6+
public static string MonoVersion = "5.9.3.7";
77
public const string DocId = "DocId";
88
public const string CppCli = "C++ CLI";
99
public const string CppCx = "C++ CX";

mdoc/Mono.Documentation/Updater/Formatters/SlashDocMemberFormatter.cs

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -154,6 +154,11 @@ protected override string GetMethodName (MethodReference method)
154154
return GetMethodDefinitionName (method, name);
155155
}
156156

157+
protected override string GetTypeName(TypeReference type, IAttributeParserContext context, bool appendGeneric = true, bool useTypeProjection = false, bool isTypeofOperator = false)
158+
{
159+
return base.GetTypeName(type, context, appendGeneric, false, isTypeofOperator);
160+
}
161+
157162
private string GetMethodDefinitionName (MethodReference method, string name)
158163
{
159164
StringBuilder buf = new StringBuilder ();

mdoc/mdoc.nuspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<package >
33
<metadata>
44
<id>mdoc</id>
5-
<version>5.9.3.6</version>
5+
<version>5.9.3.7</version>
66
<title>mdoc</title>
77
<authors>Microsoft</authors>
88
<owners>Microsoft</owners>

0 commit comments

Comments
 (0)