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

github.com/mono/mdtestharness.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlan McGovern <alan.mcgovern@gmail.com>2012-06-05 15:24:47 +0400
committerAlan McGovern <alan.mcgovern@gmail.com>2012-06-05 15:24:47 +0400
commit424f53e08c48dee8accaa68820b1cd7147cf1ba4 (patch)
tree9d53f3efff537afe63f9674cfaa1492a9c7f329b /nunit.exe.config
Commit the test harnessHEADmaster
Diffstat (limited to 'nunit.exe.config')
-rwxr-xr-xnunit.exe.config30
1 files changed, 30 insertions, 0 deletions
diff --git a/nunit.exe.config b/nunit.exe.config
new file mode 100755
index 0000000..e3c06b7
--- /dev/null
+++ b/nunit.exe.config
@@ -0,0 +1,30 @@
+<?xml version="1.0" encoding="utf-8"?>
+<configuration>
+ <!--
+ The GUI only runs under .NET 2.0 or higher. The
+ useLegacyV2RuntimeActivationPolicy setting only
+ applies under .NET 4.0 and permits use of mixed
+ mode assemblies, which would otherwise not load
+ correctly.
+ -->
+ <startup useLegacyV2RuntimeActivationPolicy="true">
+ <!-- Comment out the next line to force use of .NET 4.0 -->
+ <supportedRuntime version="v2.0.50727" />
+ <supportedRuntime version="v4.0.30319" />
+ </startup>
+
+ <runtime>
+ <!-- Ensure that test exceptions don't crash NUnit -->
+ <legacyUnhandledExceptionPolicy enabled="1" />
+
+ <!-- Run partial trust V2 assemblies in full trust under .NET 4.0 -->
+ <loadFromRemoteSources enabled="true" />
+
+ <!-- Look for addins in the addins directory for now -->
+ <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
+ <probing privatePath="lib;addins" />
+ </assemblyBinding>
+
+ </runtime>
+
+</configuration> \ No newline at end of file