summaryrefslogtreecommitdiff
path: root/src/SMAPI.ModBuildConfig/Framework
diff options
context:
space:
mode:
authorJesse Plamondon-Willard <Pathoschild@users.noreply.github.com>2020-02-01 11:09:21 -0500
committerJesse Plamondon-Willard <Pathoschild@users.noreply.github.com>2020-02-01 11:09:21 -0500
commitd0885831c3698bcb353d76c147500b7ea1dfbc78 (patch)
tree405d2405c489ad7b29a997b1b276340c302c82ef /src/SMAPI.ModBuildConfig/Framework
parent0fddc7f5109bffe2912e9fdcf5ed398d80c25dec (diff)
downloadSMAPI-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.cs3
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")