diff options
author | Jesse Plamondon-Willard <Pathoschild@users.noreply.github.com> | 2020-02-01 11:09:21 -0500 |
---|---|---|
committer | Jesse Plamondon-Willard <Pathoschild@users.noreply.github.com> | 2020-02-01 11:09:21 -0500 |
commit | d0885831c3698bcb353d76c147500b7ea1dfbc78 (patch) | |
tree | 405d2405c489ad7b29a997b1b276340c302c82ef /src/SMAPI.ModBuildConfig/Framework | |
parent | 0fddc7f5109bffe2912e9fdcf5ed398d80c25dec (diff) | |
download | SMAPI-d0885831c3698bcb353d76c147500b7ea1dfbc78.tar.gz SMAPI-d0885831c3698bcb353d76c147500b7ea1dfbc78.tar.bz2 SMAPI-d0885831c3698bcb353d76c147500b7ea1dfbc78.zip |
ignore Harmony DLL in mod build package
Diffstat (limited to 'src/SMAPI.ModBuildConfig/Framework')
-rw-r--r-- | src/SMAPI.ModBuildConfig/Framework/ModFileManager.cs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/SMAPI.ModBuildConfig/Framework/ModFileManager.cs b/src/SMAPI.ModBuildConfig/Framework/ModFileManager.cs index a852f133..f0363a3e 100644 --- a/src/SMAPI.ModBuildConfig/Framework/ModFileManager.cs +++ b/src/SMAPI.ModBuildConfig/Framework/ModFileManager.cs @@ -156,6 +156,9 @@ namespace StardewModdingAPI.ModBuildConfig.Framework // release zips this.EqualsInvariant(file.Extension, ".zip") + // Harmony (bundled into SMAPI) + || this.EqualsInvariant(file.Name, "0Harmony.dll") + // Json.NET (bundled into SMAPI) || this.EqualsInvariant(file.Name, "Newtonsoft.Json.dll") || this.EqualsInvariant(file.Name, "Newtonsoft.Json.pdb") |