From 9ef3f7edb1589a52794c7da7075996d4a02de6e7 Mon Sep 17 00:00:00 2001 From: Jesse Plamondon-Willard Date: Mon, 30 May 2022 17:30:26 -0400 Subject: 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. --- src/SMAPI.Installer/assets/runtimeconfig.json | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'src') 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 } } } -- cgit