Skip to content

Commit

Permalink
Fix bug : Cross reference not found: 'System.IDisposable.Close'. (#720)…
Browse files Browse the repository at this point in the history
… (#724)

* update

* update

* update
  • Loading branch information
huangmin-ms authored Jan 6, 2025
2 parents 28b327f + 2d1b108 commit 0b6d923
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion mdoc/Consts.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ namespace Mono.Documentation
{
public static class Consts
{
public static string MonoVersion = "5.9.3.6";
public static string MonoVersion = "5.9.3.7";
public const string DocId = "DocId";
public const string CppCli = "C++ CLI";
public const string CppCx = "C++ CX";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -154,6 +154,11 @@ protected override string GetMethodName (MethodReference method)
return GetMethodDefinitionName (method, name);
}

protected override string GetTypeName(TypeReference type, IAttributeParserContext context, bool appendGeneric = true, bool useTypeProjection = false, bool isTypeofOperator = false)
{
return base.GetTypeName(type, context, appendGeneric, false, isTypeofOperator);
}

private string GetMethodDefinitionName (MethodReference method, string name)
{
StringBuilder buf = new StringBuilder ();
Expand Down
2 changes: 1 addition & 1 deletion mdoc/mdoc.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<package >
<metadata>
<id>mdoc</id>
<version>5.9.3.6</version>
<version>5.9.3.7</version>
<title>mdoc</title>
<authors>Microsoft</authors>
<owners>Microsoft</owners>
Expand Down

0 comments on commit 0b6d923

Please sign in to comment.