Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/dotnet/runtime.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Köplinger <alex.koeplinger@outlook.com>2022-04-15 14:46:00 +0300
committerGitHub <noreply@github.com>2022-04-15 14:46:00 +0300
commit479bdc480083bb035edb1611f492a25fa913a65f (patch)
tree8445f58055c780c651f4e801b176c2828a08cbb8 /src/mono/wasm/runtime
parent9b3b937eb364dda4f91b6b5288c83f4e4f45e7e3 (diff)
[mono] Cleanup assembly loading (#67984)
- Remove parameters specifying the "runtime version" since that no longer makes sense in dotnet/runtime - Remove mono_config related logic, there is no app.config/machine.config anymore - Remove leftover code from GAC support - Remove probing for embedded (bundled) assemblies from mini/main.c, we don't use mkbundle in dotnet/runtime
Diffstat (limited to 'src/mono/wasm/runtime')
-rw-r--r--src/mono/wasm/runtime/driver.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mono/wasm/runtime/driver.c b/src/mono/wasm/runtime/driver.c
index 929631ec72e..2007d25bc22 100644
--- a/src/mono/wasm/runtime/driver.c
+++ b/src/mono/wasm/runtime/driver.c
@@ -570,7 +570,7 @@ mono_wasm_load_runtime (const char *unused, int debug_level)
mono_wasm_register_bundled_satellite_assemblies ();
mono_trace_init ();
mono_trace_set_log_handler (wasm_trace_logger, NULL);
- root_domain = mono_jit_init_version ("mono", "v4.0.30319");
+ root_domain = mono_jit_init_version ("mono", NULL);
mono_initialize_internals();