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:
parent
0209e70695
commit
9ef3f7edb1
|
@ -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.
|
||||||
|
|
||||||
|
|
|
@ -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
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue