diff options
author | Hugo Locurcio <hugo.locurcio@hugo.pro> | 2021-11-10 17:31:54 +0100 |
---|---|---|
committer | Hugo Locurcio <hugo.locurcio@hugo.pro> | 2021-11-10 17:31:54 +0100 |
commit | a9a45ee7ee551e931b8aed3b9f5cebbc82de14b0 (patch) | |
tree | 49d3c3e69e8ac6096ff77f6d94129f7016abee78 /main | |
parent | a265d9b772e4f4fde00c3613b5ba80fe06a2f7e9 (diff) |
Move Mono unhandled exception setting to be located within a subsection
Settings that aren't within a subsection are difficult to reach when
other settings do have a subsection.
This also adds documentation for the project setting.
Diffstat (limited to 'main')
-rw-r--r-- | main/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/main/main.cpp b/main/main.cpp index eb6e69e256..7355493677 100644 --- a/main/main.cpp +++ b/main/main.cpp @@ -2050,7 +2050,7 @@ bool Main::start() { GLOBAL_DEF("mono/debugger_agent/wait_timeout", 3000); GLOBAL_DEF("mono/profiler/args", "log:calls,alloc,sample,output=output.mlpd"); GLOBAL_DEF("mono/profiler/enabled", false); - GLOBAL_DEF("mono/unhandled_exception_policy", 0); + GLOBAL_DEF("mono/runtime/unhandled_exception_policy", 0); #endif DocTools doc; |