diff options
-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 } } } |