Skip to content

Commit f813bcc

Browse files
authored
Merge pull request #674 from mono/develop
bump Mdoc to 5.9.2.3
2 parents 9712c8d + 3bd41b3 commit f813bcc

5 files changed

Lines changed: 5 additions & 3 deletions

File tree

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,3 +27,4 @@ Debug
2727
/mdoc/mdoc.Test/UwpTestWinRtComponentCpp/x64/Release
2828
/mdoc.Test.Cplusplus/x64/Release
2929
/x64/Release/UwpTestWinRtComponentCpp
30+
/mdoc/Properties/launchSettings.json

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

mdoc/Mono.Documentation/Updater/DocUtils.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -323,7 +323,7 @@ public static bool ClearNodesIfNotDefault(XmlNode n, XmlNode incoming, int depth
323323
{
324324
if (nchild == null) continue;
325325

326-
if (nchild is XmlComment || nchild is XmlText || nchild is XmlCDataSection)
326+
if (nchild is XmlComment || nchild is XmlText || nchild is XmlCDataSection || nchild.Name == "include")
327327
{
328328
nchild.ParentNode.RemoveChild(nchild);
329329
removed = true;

mdoc/mdoc.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
88
<ProduceReferenceAssembly>false</ProduceReferenceAssembly>
99
<AutoGenerateBindingRedirects>false</AutoGenerateBindingRedirects>
10+
<RollForward>Major</RollForward>
1011
</PropertyGroup>
1112

1213
<PropertyGroup Condition=" '$(TargetFramework)' == 'net471' ">

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

0 commit comments

Comments
 (0)