summaryrefslogtreecommitdiff
path: root/src/SMAPI
diff options
context:
space:
mode:
authorJesse Plamondon-Willard <Pathoschild@users.noreply.github.com>2019-04-25 00:50:26 -0400
committerJesse Plamondon-Willard <Pathoschild@users.noreply.github.com>2019-09-14 17:49:49 -0400
commite18ffc009d4fd56b200b0bb13b671940c9fadbc7 (patch)
tree767418a7a9ee70c7690158107697021393019886 /src/SMAPI
parentc15785a68d3e99959cdcca5bfb51e8686316a33b (diff)
downloadSMAPI-e18ffc009d4fd56b200b0bb13b671940c9fadbc7.tar.gz
SMAPI-e18ffc009d4fd56b200b0bb13b671940c9fadbc7.tar.bz2
SMAPI-e18ffc009d4fd56b200b0bb13b671940c9fadbc7.zip
update mods + mod build package for smapi-internal changes
Diffstat (limited to 'src/SMAPI')
-rw-r--r--src/SMAPI/Constants.cs12
1 files changed, 8 insertions, 4 deletions
diff --git a/src/SMAPI/Constants.cs b/src/SMAPI/Constants.cs
index 8c925a58..f58722a0 100644
--- a/src/SMAPI/Constants.cs
+++ b/src/SMAPI/Constants.cs
@@ -139,12 +139,14 @@ namespace StardewModdingAPI
"Microsoft.Xna.Framework",
"Microsoft.Xna.Framework.Game",
"Microsoft.Xna.Framework.Graphics",
- "Microsoft.Xna.Framework.Xact"
+ "Microsoft.Xna.Framework.Xact",
+ "StardewModdingAPI.Toolkit.CoreInterfaces" // renamed in SMAPI 3.0
};
targetAssemblies = new[]
{
typeof(StardewValley.Game1).Assembly, // note: includes Netcode types on Linux/Mac
- typeof(Microsoft.Xna.Framework.Vector2).Assembly
+ typeof(Microsoft.Xna.Framework.Vector2).Assembly,
+ typeof(StardewModdingAPI.IManifest).Assembly
};
break;
@@ -152,7 +154,8 @@ namespace StardewModdingAPI
removeAssemblyReferences = new[]
{
"StardewValley",
- "MonoGame.Framework"
+ "MonoGame.Framework",
+ "StardewModdingAPI.Toolkit.CoreInterfaces" // renamed in SMAPI 3.0
};
targetAssemblies = new[]
{
@@ -160,7 +163,8 @@ namespace StardewModdingAPI
typeof(StardewValley.Game1).Assembly,
typeof(Microsoft.Xna.Framework.Vector2).Assembly,
typeof(Microsoft.Xna.Framework.Game).Assembly,
- typeof(Microsoft.Xna.Framework.Graphics.SpriteBatch).Assembly
+ typeof(Microsoft.Xna.Framework.Graphics.SpriteBatch).Assembly,
+ typeof(StardewModdingAPI.IManifest).Assembly
};
break;