nunit-x86.exe.config 853 B

1234567891011121314151617181920212223
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <configuration>
  3. <!--
  4. The GUI only runs under .NET 2.0 or higher. The
  5. useLegacyV2RuntimeActivationPolicy setting only
  6. applies under .NET 4.0 and permits use of mixed
  7. mode assemblies, which would otherwise not load
  8. correctly.
  9. -->
  10. <startup useLegacyV2RuntimeActivationPolicy="true">
  11. <!-- Comment out the next line to force use of .NET 4.0 -->
  12. </startup>
  13. <runtime>
  14. <!-- Ensure that test exceptions don't crash NUnit -->
  15. <legacyUnhandledExceptionPolicy enabled="1"/>
  16. <!-- Run partial trust V2 assemblies in full trust under .NET 4.0 -->
  17. <loadFromRemoteSources enabled="true"/>
  18. <!-- Look for addins in the addins directory for now -->
  19. <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
  20. <probing privatePath="lib;addins"/>
  21. </assemblyBinding>
  22. </runtime>
  23. </configuration>