fix Newtonsoft.Json.pdb not ignored for release zips

This commit is contained in:
Jesse Plamondon-Willard 2019-02-09 19:16:54 -05:00
parent 6b347b83a7
commit 0ba8325708
No known key found for this signature in database
GPG Key ID: CF8B1456B3E29F49
2 changed files with 2 additions and 0 deletions

View File

@ -129,6 +129,7 @@ namespace StardewModdingAPI.ModBuildConfig.Framework
// Json.NET (bundled into SMAPI) // Json.NET (bundled into SMAPI)
|| this.EqualsInvariant(file.Name, "Newtonsoft.Json.dll") || this.EqualsInvariant(file.Name, "Newtonsoft.Json.dll")
|| this.EqualsInvariant(file.Name, "Newtonsoft.Json.pdb")
|| this.EqualsInvariant(file.Name, "Newtonsoft.Json.xml") || this.EqualsInvariant(file.Name, "Newtonsoft.Json.xml")
// code analysis files // code analysis files

View File

@ -14,6 +14,7 @@
<releaseNotes> <releaseNotes>
2.2.1: 2.2.1:
- Dropped support for very old versions of SMAPI and Visual Studio. - Dropped support for very old versions of SMAPI and Visual Studio.
- Fixed `Newtonsoft.Json.pdb` included in release zips when Json.NET is referenced directly.
</releaseNotes> </releaseNotes>
</metadata> </metadata>
</package> </package>