Skip to content

Commit

Permalink
Remove symbols folder from frameworks.xml (#703)
Browse files Browse the repository at this point in the history
* Remove symbols folder from frameworks.xml

* update version

* update version
  • Loading branch information
v-fuquanli authored Jul 19, 2024
1 parent c8195e5 commit 5bf22cb
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 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.2";
public static string MonoVersion = "5.9.3.3";
public const string DocId = "DocId";
public const string CppCli = "C++ CLI";
public const string CppCx = "C++ CX";
Expand Down
3 changes: 2 additions & 1 deletion mdoc/Mono.Documentation/frameworksbootstrapper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,8 @@ public override void Run (IEnumerable<string> args)
Path = d.Substring (frameworkPath.Length + slashOffset, d.Length - frameworkPath.Length - slashOffset),
Name = Path.GetFileName(d)
})
.Where (d => !d.Name.Equals ("dependencies", StringComparison.OrdinalIgnoreCase))
.Where (d => !d.Name.Equals ("dependencies", StringComparison.OrdinalIgnoreCase) &&
!d.Name.Equals("symbols", StringComparison.OrdinalIgnoreCase))
.OrderBy(d => d.Name)
.ToArray();

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.2</version>
<version>5.9.3.3</version>
<title>mdoc</title>
<authors>Microsoft</authors>
<owners>Microsoft</owners>
Expand Down

0 comments on commit 5bf22cb

Please sign in to comment.