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.
This commit is contained in:
Jesse Plamondon-Willard 2022-05-30 17:30:26 -04:00
parent 0209e70695
commit 9ef3f7edb1
No known key found for this signature in database
GPG Key ID: CF8B1456B3E29F49
2 changed files with 7 additions and 2 deletions

View File

@ -1,6 +1,10 @@
← [README](README.md) ← [README](README.md)
# Release notes # Release notes
## Upcoming release
* For mod authors:
* Removed `runtimeconfig.json` setting which impacted hot reload support.
## 3.14.6 ## 3.14.6
Released 27 May 2022 for Stardew Valley 1.5.6 or later. Released 27 May 2022 for Stardew Valley 1.5.6 or later.

View File

@ -9,8 +9,9 @@
} }
], ],
"configProperties": { "configProperties": {
"System.Runtime.TieredCompilation": false, // disable tiered runtime JIT: https://github.com/dotnet/runtime/blob/main/docs/design/features/tiered-compilation.md
"System.Reflection.Metadata.MetadataUpdater.IsSupported": false // This is disabled by the base game, and causes issues with Harmony patches.
"System.Runtime.TieredCompilation": false
} }
} }
} }