From 845d38169c18a15e6ba01911e9740cf732a171bd Mon Sep 17 00:00:00 2001 From: Jesse Plamondon-Willard Date: Mon, 19 Nov 2018 15:05:44 -0500 Subject: fix game crash in MacOS This fixes a game crash in MacOS during startup by copying the Windows versions of those DLLs into SMAPI's internal folder. This was handled by the custom build scripts until SMAPI 2.8. --- build/lib/System.Numerics.dll | Bin 0 -> 54272 bytes build/lib/System.Runtime.Caching.dll | Bin 0 -> 71168 bytes build/prepare-install-package.targets | 7 ++++++- 3 files changed, 6 insertions(+), 1 deletion(-) create mode 100644 build/lib/System.Numerics.dll create mode 100644 build/lib/System.Runtime.Caching.dll (limited to 'build') diff --git a/build/lib/System.Numerics.dll b/build/lib/System.Numerics.dll new file mode 100644 index 00000000..fed0f92c Binary files /dev/null and b/build/lib/System.Numerics.dll differ diff --git a/build/lib/System.Runtime.Caching.dll b/build/lib/System.Runtime.Caching.dll new file mode 100644 index 00000000..a062391d Binary files /dev/null and b/build/lib/System.Runtime.Caching.dll differ diff --git a/build/prepare-install-package.targets b/build/prepare-install-package.targets index aeed101d..3a870bd2 100644 --- a/build/prepare-install-package.targets +++ b/build/prepare-install-package.targets @@ -7,7 +7,8 @@ --> - $(SolutionDir)\..\bin\$(Configuration) + $(SolutionDir)\.. + $(RootPath)\bin\$(Configuration) $(CompiledRootPath)\SMAPI $(CompiledRootPath)\SMAPI.Toolkit\net4.5 $(SolutionDir)\..\bin\SMAPI installer @@ -53,6 +54,10 @@ + + + + -- cgit From 5de81464cea4b70b68d1ed344b89a161f88bc213 Mon Sep 17 00:00:00 2001 From: Jesse Plamondon-Willard Date: Mon, 19 Nov 2018 15:08:17 -0500 Subject: bump version for release --- build/GlobalAssemblyInfo.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'build') diff --git a/build/GlobalAssemblyInfo.cs b/build/GlobalAssemblyInfo.cs index c022afda..7a6de93c 100644 --- a/build/GlobalAssemblyInfo.cs +++ b/build/GlobalAssemblyInfo.cs @@ -1,5 +1,5 @@ using System.Reflection; [assembly: AssemblyProduct("SMAPI")] -[assembly: AssemblyVersion("2.8.1")] -[assembly: AssemblyFileVersion("2.8.1")] +[assembly: AssemblyVersion("2.8.2")] +[assembly: AssemblyFileVersion("2.8.2")] -- cgit