diff options
author | Jesse Plamondon-Willard <Pathoschild@users.noreply.github.com> | 2022-05-30 17:30:26 -0400 |
---|---|---|
committer | Jesse Plamondon-Willard <Pathoschild@users.noreply.github.com> | 2022-05-31 18:25:12 -0400 |
commit | 9ef3f7edb1589a52794c7da7075996d4a02de6e7 (patch) | |
tree | da2e5d35428cbf8d40c02b183b7902a4c65dd846 | |
parent | 0209e70695b6d12692d4de554ce1fc9d65ca4715 (diff) | |
download | SMAPI-9ef3f7edb1589a52794c7da7075996d4a02de6e7.tar.gz SMAPI-9ef3f7edb1589a52794c7da7075996d4a02de6e7.tar.bz2 SMAPI-9ef3f7edb1589a52794c7da7075996d4a02de6e7.zip |
remove `System.Reflection.Metadata.MetadataUpdater.IsSupported: false` in runtime config
This doesn't seem to be needed, and was probably added as part of the early experimenting with self-contained .NET.
-rw-r--r-- | docs/release-notes.md | 4 | ||||
-rw-r--r-- | src/SMAPI.Installer/assets/runtimeconfig.json | 5 |
2 files changed, 7 insertions, 2 deletions
diff --git a/docs/release-notes.md b/docs/release-notes.md index 4770bd4f..cdc0f548 100644 --- a/docs/release-notes.md +++ b/docs/release-notes.md @@ -1,6 +1,10 @@ ← [README](README.md) # Release notes +## Upcoming release +* For mod authors: + * Removed `runtimeconfig.json` setting which impacted hot reload support. + ## 3.14.6 Released 27 May 2022 for Stardew Valley 1.5.6 or later. diff --git a/src/SMAPI.Installer/assets/runtimeconfig.json b/src/SMAPI.Installer/assets/runtimeconfig.json index 34018b8a..bd6a5240 100644 --- a/src/SMAPI.Installer/assets/runtimeconfig.json +++ b/src/SMAPI.Installer/assets/runtimeconfig.json @@ -9,8 +9,9 @@ } ], "configProperties": { - "System.Runtime.TieredCompilation": false, - "System.Reflection.Metadata.MetadataUpdater.IsSupported": false + // disable tiered runtime JIT: https://github.com/dotnet/runtime/blob/main/docs/design/features/tiered-compilation.md + // This is disabled by the base game, and causes issues with Harmony patches. + "System.Runtime.TieredCompilation": false } } } |