Skip to content

Commit

Permalink
Merge pull request #674 from mono/develop
Browse files Browse the repository at this point in the history
bump Mdoc to 5.9.2.3
  • Loading branch information
huangmin-ms committed Jul 6, 2023
2 parents 9712c8d + 3bd41b3 commit f813bcc
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 3 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -27,3 +27,4 @@ Debug
/mdoc/mdoc.Test/UwpTestWinRtComponentCpp/x64/Release
/mdoc.Test.Cplusplus/x64/Release
/x64/Release/UwpTestWinRtComponentCpp
/mdoc/Properties/launchSettings.json
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.2.2";
public static string MonoVersion = "5.9.2.3";
public const string DocId = "DocId";
public const string CppCli = "C++ CLI";
public const string CppCx = "C++ CX";
Expand Down
2 changes: 1 addition & 1 deletion mdoc/Mono.Documentation/Updater/DocUtils.cs
Original file line number Diff line number Diff line change
Expand Up @@ -323,7 +323,7 @@ public static bool ClearNodesIfNotDefault(XmlNode n, XmlNode incoming, int depth
{
if (nchild == null) continue;

if (nchild is XmlComment || nchild is XmlText || nchild is XmlCDataSection)
if (nchild is XmlComment || nchild is XmlText || nchild is XmlCDataSection || nchild.Name == "include")
{
nchild.ParentNode.RemoveChild(nchild);
removed = true;
Expand Down
1 change: 1 addition & 0 deletions mdoc/mdoc.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<ProduceReferenceAssembly>false</ProduceReferenceAssembly>
<AutoGenerateBindingRedirects>false</AutoGenerateBindingRedirects>
<RollForward>Major</RollForward>
</PropertyGroup>

<PropertyGroup Condition=" '$(TargetFramework)' == 'net471' ">
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.2.2</version>
<version>5.9.2.3</version>
<title>mdoc</title>
<authors>Microsoft</authors>
<owners>Microsoft</owners>
Expand Down

0 comments on commit f813bcc

Please sign in to comment.