diff options
author | Chase Warrington <spacechase0.and.cat@gmail.com> | 2021-08-29 15:48:28 -0400 |
---|---|---|
committer | Jesse Plamondon-Willard <Pathoschild@users.noreply.github.com> | 2021-09-01 19:35:18 -0400 |
commit | ec5fbb06113b29342e6d4b213144f4dc3e358b03 (patch) | |
tree | 2a0d1677b4b94380a67a194e3e2041fd892b80c9 /src/SMAPI/Metadata | |
parent | 9316fe303827cb31f38f4a5bb068f8fa0190ac5e (diff) | |
download | SMAPI-ec5fbb06113b29342e6d4b213144f4dc3e358b03.tar.gz SMAPI-ec5fbb06113b29342e6d4b213144f4dc3e358b03.tar.bz2 SMAPI-ec5fbb06113b29342e6d4b213144f4dc3e358b03.zip |
Rewrite 32-bit assemblies for 64-bit
Diffstat (limited to 'src/SMAPI/Metadata')
-rw-r--r-- | src/SMAPI/Metadata/InstructionMetadata.cs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/SMAPI/Metadata/InstructionMetadata.cs b/src/SMAPI/Metadata/InstructionMetadata.cs index a787993a..54e46ed3 100644 --- a/src/SMAPI/Metadata/InstructionMetadata.cs +++ b/src/SMAPI/Metadata/InstructionMetadata.cs @@ -50,6 +50,9 @@ namespace StardewModdingAPI.Metadata // rewrite for SMAPI 3.12 (Harmony 1.x => 2.0 update) yield return new Harmony1AssemblyRewriter(); + + // rewrite for 64-bit mode + yield return new ArchitectureAssemblyRewriter(); } /**** |