nunit3-console.exe.config 761 B

123456789101112131415161718192021222324
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <configuration>
  3. <!--
  4. The console runner runs under .NET 2.0 or higher.
  5. The setting useLegacyV2RuntimeActivationPolicy only applies
  6. under .NET 4.0 and permits use of mixed mode assemblies,
  7. which would otherwise not load correctly.
  8. -->
  9. <startup useLegacyV2RuntimeActivationPolicy="true">
  10. <supportedRuntime version="v4.0.30319" />
  11. <supportedRuntime version="v2.0.50727" />
  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. </runtime>
  19. </configuration>