diff options
author | Jesse Plamondon-Willard <Pathoschild@users.noreply.github.com> | 2022-05-31 18:32:23 -0400 |
---|---|---|
committer | Jesse Plamondon-Willard <Pathoschild@users.noreply.github.com> | 2022-05-31 18:32:23 -0400 |
commit | 9992915f565578949cad8d9bb8ceb360e0db5c85 (patch) | |
tree | 1ff34ba24733fcdf44f52fb8ee10b2a956f1a708 /build/windows | |
parent | 9ef3f7edb1589a52794c7da7075996d4a02de6e7 (diff) | |
download | SMAPI-9992915f565578949cad8d9bb8ceb360e0db5c85.tar.gz SMAPI-9992915f565578949cad8d9bb8ceb360e0db5c85.tar.bz2 SMAPI-9992915f565578949cad8d9bb8ceb360e0db5c85.zip |
replace MemoryCache with custom cache
This was causing significant frame stutters for some players since the migration to .NET 5 in Stardew Valley 1.5.5.
Diffstat (limited to 'build/windows')
-rw-r--r-- | build/windows/prepare-install-package.ps1 | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/build/windows/prepare-install-package.ps1 b/build/windows/prepare-install-package.ps1 index 5e116019..6731486b 100644 --- a/build/windows/prepare-install-package.ps1 +++ b/build/windows/prepare-install-package.ps1 @@ -162,16 +162,12 @@ foreach ($folder in $folders) { cp "$smapiBin/SMAPI.metadata.json" "$bundlePath/smapi-internal/metadata.json" if ($folder -eq "linux" -or $folder -eq "macOS") { cp "$installAssets/unix-launcher.sh" "$bundlePath" - cp "$smapiBin/System.Runtime.Caching.dll" "$bundlePath/smapi-internal" } else { cp "$installAssets/windows-exe-config.xml" "$bundlePath/StardewModdingAPI.exe.config" } # copy .NET dependencies - cp "$smapiBin/System.Configuration.ConfigurationManager.dll" "$bundlePath/smapi-internal" - cp "$smapiBin/System.Runtime.Caching.dll" "$bundlePath/smapi-internal" - cp "$smapiBin/System.Security.Permissions.dll" "$bundlePath/smapi-internal" if ($folder -eq "windows") { cp "$smapiBin/System.Management.dll" "$bundlePath/smapi-internal" } |