From 3260c0dc3ec75e43a9c0c415c7bfa0fe074c0cca Mon Sep 17 00:00:00 2001 From: zontreck Date: Tue, 27 Aug 2024 13:17:07 -0700 Subject: [PATCH] Re-add runtime config for DLL variant --- bootstrap/prebuild.runtimeconfig.json | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 bootstrap/prebuild.runtimeconfig.json diff --git a/bootstrap/prebuild.runtimeconfig.json b/bootstrap/prebuild.runtimeconfig.json new file mode 100644 index 0000000..daf9eaf --- /dev/null +++ b/bootstrap/prebuild.runtimeconfig.json @@ -0,0 +1,16 @@ +{ + "runtimeOptions": { + "tfm": "net8.0", + "includedFrameworks": [ + { + "name": "Microsoft.NETCore.App", + "version": "8.0.8" + } + ], + "configProperties": { + "System.Reflection.Metadata.MetadataUpdater.IsSupported": false, + "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false, + "System.Runtime.TieredCompilation.QuickJit": false + } + } +} \ No newline at end of file