Skip to content

Commit 65aa82d

Browse files
authored
Remove symbols folder from frameworks.xml (#703) (#704)
* Remove symbols folder from frameworks.xml * update version * update version
2 parents bc58307 + 5bf22cb commit 65aa82d

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

Diff for: mdoc/Consts.cs

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

Diff for: mdoc/Mono.Documentation/frameworksbootstrapper.cs

+2-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,8 @@ public override void Run (IEnumerable<string> args)
4040
Path = d.Substring (frameworkPath.Length + slashOffset, d.Length - frameworkPath.Length - slashOffset),
4141
Name = Path.GetFileName(d)
4242
})
43-
.Where (d => !d.Name.Equals ("dependencies", StringComparison.OrdinalIgnoreCase))
43+
.Where (d => !d.Name.Equals ("dependencies", StringComparison.OrdinalIgnoreCase) &&
44+
!d.Name.Equals("symbols", StringComparison.OrdinalIgnoreCase))
4445
.OrderBy(d => d.Name)
4546
.ToArray();
4647

Diff for: mdoc/mdoc.nuspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<package >
33
<metadata>
44
<id>mdoc</id>
5-
<version>5.9.3.2</version>
5+
<version>5.9.3.3</version>
66
<title>mdoc</title>
77
<authors>Microsoft</authors>
88
<owners>Microsoft</owners>

0 commit comments

Comments
 (0)