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
diff options
context:
space:
mode:
authorJoel Martinez <joelmartinez@gmail.com>2019-02-23 00:50:37 +0300
committerJoel Martinez <joelmartinez@gmail.com>2019-02-23 01:03:00 +0300
commit2594c147cc3a777415779f4ef9c524999c602dc4 (patch)
tree19d819a851d5e496c291fa1edd0addf5ab18389a
parentb21086f57049d83cad9516fb5779a54a1efd7278 (diff)
bump to 5.7.4.9mdoc-5.7.4.9
Also changes the parameter count for set methods, which was set incorrectly in the last commit.
-rw-r--r--mdoc/Consts.cs2
-rw-r--r--mdoc/Mono.Documentation/Util/AttachedPropertyDefinition.cs2
-rw-r--r--mdoc/mdoc.nuspec2
3 files changed, 3 insertions, 3 deletions
diff --git a/mdoc/Consts.cs b/mdoc/Consts.cs
index 66ebc336..3d576456 100644
--- a/mdoc/Consts.cs
+++ b/mdoc/Consts.cs
@@ -3,7 +3,7 @@ namespace Mono.Documentation
{
public static class Consts
{
- public static string MonoVersion = "5.7.4.8";
+ public static string MonoVersion = "5.7.4.9";
public const string DocId = "DocId";
public const string CppCli = "C++ CLI";
public const string CppCx = "C++ CX";
diff --git a/mdoc/Mono.Documentation/Util/AttachedPropertyDefinition.cs b/mdoc/Mono.Documentation/Util/AttachedPropertyDefinition.cs
index e038043a..5b72e008 100644
--- a/mdoc/Mono.Documentation/Util/AttachedPropertyDefinition.cs
+++ b/mdoc/Mono.Documentation/Util/AttachedPropertyDefinition.cs
@@ -23,7 +23,7 @@ namespace Mono.Documentation.Util
{
get => this.DeclaringType.GetMember(
$"Set{AttachedEntitiesHelper.GetPropertyName(fieldDefinition.Name)}",
- m => (m as MethodReference)?.Parameters.Count == 1);
+ m => (m as MethodReference)?.Parameters.Count == 2);
}
public Collection<CustomAttribute> CustomAttributes => fieldDefinition.CustomAttributes;
diff --git a/mdoc/mdoc.nuspec b/mdoc/mdoc.nuspec
index ea6f80f6..07e7a4f8 100644
--- a/mdoc/mdoc.nuspec
+++ b/mdoc/mdoc.nuspec
@@ -2,7 +2,7 @@
<package >
<metadata>
<id>mdoc</id>
- <version>5.7.4.8</version>
+ <version>5.7.4.9</version>
<title>mdoc</title>
<authors>Microsoft</authors>
<owners>Microsoft</owners>