Files
Orchard/lib/nunit/nunit.exe.config
T

30 lines
1011 B
XML
Raw Normal View History

2012-08-22 12:00:17 -07:00
<?xml version="1.0" encoding="utf-8"?>
2009-11-07 22:49:58 +00:00
<configuration>
2012-08-22 12:00:17 -07:00
<!--
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">
2012-08-22 12:00:17 -07:00
<!-- Comment out the next line to force use of .NET 4.0 -->
<supportedRuntime version="v2.0.50727" />
<supportedRuntime version="v4.0.30319" />
</startup>
2012-08-22 12:00:17 -07:00
2009-11-07 22:49:58 +00:00
<runtime>
2012-08-22 12:00:17 -07:00
<!-- Ensure that test exceptions don't crash NUnit -->
2009-11-07 22:49:58 +00:00
<legacyUnhandledExceptionPolicy enabled="1" />
2012-08-22 12:00:17 -07:00
<!-- Run partial trust V2 assemblies in full trust under .NET 4.0 -->
<loadFromRemoteSources enabled="true" />
2009-11-07 22:49:58 +00:00
<!-- Look for addins in the addins directory for now -->
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<probing privatePath="lib;addins" />
</assemblyBinding>
</runtime>
</configuration>