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

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Kyte <alexmkyte@fastmail.com>2016-01-27 23:28:05 +0300
committerAlexander Kyte <alexmkyte@fastmail.com>2016-01-27 23:28:05 +0300
commit018d664cab8332ca311ec76f6d4ed5c5a69c9fb1 (patch)
tree21ce4b4322a06a23f135dc15a6ababf15e280f3a
parentf7010e65a9a72b5ace227b4cff1aa0484eb32b82 (diff)
[nunitlite] Documented console .config usage
-rw-r--r--mcs/tools/nunit-lite/nunit-lite-console/nunit-lite-console.exe.config6
1 files changed, 6 insertions, 0 deletions
diff --git a/mcs/tools/nunit-lite/nunit-lite-console/nunit-lite-console.exe.config b/mcs/tools/nunit-lite/nunit-lite-console/nunit-lite-console.exe.config
index 352f7249246..2ccc2b9ae68 100644
--- a/mcs/tools/nunit-lite/nunit-lite-console/nunit-lite-console.exe.config
+++ b/mcs/tools/nunit-lite/nunit-lite-console/nunit-lite-console.exe.config
@@ -1,6 +1,12 @@
<?xml version="1.0" encoding="Windows-1252"?>
<configuration>
<runtime>
+ <!--
+ This is necessary to prevent the runner from terminating on
+ any unhandled exceptions which occur. We account for unhandled exceptions on
+ other threads with an event handler, but would still be terminated using the
+ new behavior.
+ -->
<legacyUnhandledExceptionPolicy enabled="1" />
</runtime>
</configuration>