don't include Json.NET in mod deploy or release zip since it's loaded by SMAPI
This commit is contained in:
parent
dad0d67022
commit
c456a0f56e
|
@ -130,6 +130,7 @@ _[Game path](#game-path)_ above.
|
|||
### 2.0
|
||||
* Added: mods are now copied into the `Mods` folder automatically (configurable).
|
||||
* Added: release zips are now created automatically in your build output folder (configurable).
|
||||
* Added: mod deploy and release zips now exclude Json.NET automatically, since it's provided by SMAPI.
|
||||
* Added mod's version to release zip filename.
|
||||
* Improved errors to simplify troubleshooting.
|
||||
* Fixed release zip not having a mod folder.
|
||||
|
|
|
@ -67,15 +67,19 @@ namespace StardewModdingAPI.ModBuildConfig.Framework
|
|||
string relativeDirPath = file.Directory.FullName.Replace(buildFolder.FullName, "");
|
||||
|
||||
// prefer project manifest/i18n files
|
||||
if (hasProjectManifest && relativePath.Equals(this.ManifestFileName, StringComparison.InvariantCultureIgnoreCase))
|
||||
if (hasProjectManifest && this.EqualsInvariant(relativePath, this.ManifestFileName))
|
||||
continue;
|
||||
if (hasProjectTranslations && relativeDirPath.Equals("i18n", StringComparison.InvariantCultureIgnoreCase))
|
||||
if (hasProjectTranslations && this.EqualsInvariant(relativeDirPath, "i18n"))
|
||||
continue;
|
||||
|
||||
// ignore release zips
|
||||
if (file.Extension.Equals(".zip", StringComparison.InvariantCultureIgnoreCase))
|
||||
if (this.EqualsInvariant(file.Extension, ".zip"))
|
||||
continue;
|
||||
|
||||
|
||||
// ignore Json.NET (bundled into SMAPI)
|
||||
if (this.EqualsInvariant(file.Name, "Newtonsoft.Json.dll") || this.EqualsInvariant(file.Name, "Newtonsoft.Json.xml"))
|
||||
continue;
|
||||
|
||||
// add file
|
||||
this.Files[relativePath] = file;
|
||||
}
|
||||
|
@ -158,5 +162,13 @@ namespace StardewModdingAPI.ModBuildConfig.Framework
|
|||
IDictionary<string, object> data = (IDictionary<string, object>)new JavaScriptSerializer().DeserializeObject(json);
|
||||
return MakeCaseInsensitive(data);
|
||||
}
|
||||
|
||||
/// <summary>Get whether a string is equal to another case-insensitively.</summary>
|
||||
/// <param name="str">The string value.</param>
|
||||
/// <param name="other">The string to compare with.</param>
|
||||
private bool EqualsInvariant(string str, string other)
|
||||
{
|
||||
return str.Equals(other, StringComparison.InvariantCultureIgnoreCase);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
<package xmlns="http://schemas.microsoft.com/packaging/2013/05/nuspec.xsd">
|
||||
<metadata>
|
||||
<id>Pathoschild.Stardew.ModBuildConfig</id>
|
||||
<version>2.0-alpha</version>
|
||||
<version>2.0-beta</version>
|
||||
<title>Build package for SMAPI mods</title>
|
||||
<authors>Pathoschild</authors>
|
||||
<owners>Pathoschild</owners>
|
||||
|
@ -14,6 +14,7 @@
|
|||
<releaseNotes>
|
||||
- Added: mods are now copied into the `Mods` folder automatically (configurable).
|
||||
- Added: release zips are now created automatically in your build output folder (configurable).
|
||||
- Added: mod deploy and release zips now exclude Json.NET automatically, since it's provided by SMAPI.
|
||||
- Added mod's version to release zip filename.
|
||||
- Improved errors to simplify troubleshooting.
|
||||
- Fixed release zip not having a mod folder.
|
||||
|
|
Loading…
Reference in New Issue