Skip to content

Commit ecab727

Browse files
authored
update mdoc version to 5.9.3 (#680)
* update mdoc version to 5.9.2.3 * update to 5.9.3 * fix issue
1 parent 6125cb5 commit ecab727

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
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.2.4";
6+
public static string MonoVersion = "5.9.3";
77
public const string DocId = "DocId";
88
public const string CppCli = "C++ CLI";
99
public const string CppCx = "C++ CX";

mdoc/Mono.Documentation/MDocUpdater.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2478,7 +2478,7 @@ public static void MakeSetMethodName(FrameworkTypeEntry typeEntry, XmlElement me
24782478
{
24792479
if (mi is PropertyDefinition)
24802480
{
2481-
var setMethodName = ((PropertyDefinition)mi).SetMethod?.Name;
2481+
var setMethodName = ((PropertyDefinition)mi).SetMethod?.Name.Split('.').LastOrDefault();
24822482
if (setMethodName != null && !setMethodName.StartsWith("set"))
24832483
{
24842484
DocUtils.AddElementWithFx(

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.2.4</version>
5+
<version>5.9.3</version>
66
<title>mdoc</title>
77
<authors>Microsoft</authors>
88
<owners>Microsoft</owners>

0 commit comments

Comments
 (0)