mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2025-10-15 19:54:57 +08:00
32 lines
1.0 KiB
XML
32 lines
1.0 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<configuration>
|
|
<!--
|
|
The .NET 2.0 build of the console runner only
|
|
runs under .NET 2.0 or higher. The setting
|
|
useLegacyV2RuntimeActivationPolicy only applies
|
|
under .NET 4.0 and permits use of mixed mode
|
|
assemblies, which would otherwise not load
|
|
correctly.
|
|
-->
|
|
<!-- Needed for .NET 4.0 support and SQLite
|
|
see http://www.meadow.se/wordpress/?p=393 -->
|
|
<startup useLegacyV2RuntimeActivationPolicy="true">
|
|
<supportedRuntime version="v4.0"/>
|
|
<requiredRuntime 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> |