PageRenderTime 25ms CodeModel.GetById 0ms RepoModel.GetById 0ms app.codeStats 0ms

/lib/nunit/runner/pnunit-agent.exe.config

#
ASP.NET | 77 lines | 52 code | 12 blank | 13 comment | 0 complexity | 0d13f46af3fd2eabddec57a6cf17327c MD5 | raw file
Possible License(s): LGPL-2.1, Apache-2.0, BSD-3-Clause
  1. <?xml version="1.0" encoding="Windows-1252"?>
  2. <configuration>
  3. <!-- Set the level for tracing NUnit itself -->
  4. <!-- 0=Off 1=Error 2=Warning 3=Info 4=Debug -->
  5. <system.diagnostics>
  6. <switches>
  7. <add name="NTrace" value="0" />
  8. </switches>
  9. </system.diagnostics>
  10. <runtime>
  11. <!-- We need this so test exceptions don't crash NUnit -->
  12. <legacyUnhandledExceptionPolicy enabled="1" />
  13. <!-- Look for addins in the addins directory for now -->
  14. <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
  15. <probing privatePath="framework;lib;addins"/>
  16. </assemblyBinding>
  17. <!--
  18. The following <assemblyBinding> section allows running nunit under
  19. .NET 1.0 by redirecting assemblies. The appliesTo attribute
  20. causes the section to be ignored except under .NET 1.0
  21. on a machine with only the .NET version 1.0 runtime installed.
  22. If application and its tests were built for .NET 1.1 you will
  23. also need to redirect system assemblies in the test config file,
  24. which controls loading of the tests.
  25. -->
  26. <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1"
  27. appliesTo="v1.0.3705">
  28. <dependentAssembly>
  29. <assemblyIdentity name="System"
  30. publicKeyToken="b77a5c561934e089"
  31. culture="neutral"/>
  32. <bindingRedirect oldVersion="1.0.5000.0"
  33. newVersion="1.0.3300.0"/>
  34. </dependentAssembly>
  35. <dependentAssembly>
  36. <assemblyIdentity name="System.Data"
  37. publicKeyToken="b77a5c561934e089"
  38. culture="neutral"/>
  39. <bindingRedirect oldVersion="1.0.5000.0"
  40. newVersion="1.0.3300.0"/>
  41. </dependentAssembly>
  42. <dependentAssembly>
  43. <assemblyIdentity name="System.Drawing"
  44. publicKeyToken="b03f5f7f11d50a3a"
  45. culture="neutral"/>
  46. <bindingRedirect oldVersion="1.0.5000.0"
  47. newVersion="1.0.3300.0"/>
  48. </dependentAssembly>
  49. <dependentAssembly>
  50. <assemblyIdentity name="System.Windows.Forms"
  51. publicKeyToken="b77a5c561934e089"
  52. culture="neutral"/>
  53. <bindingRedirect oldVersion="1.0.5000.0"
  54. newVersion="1.0.3300.0"/>
  55. </dependentAssembly>
  56. <dependentAssembly>
  57. <assemblyIdentity name="System.Xml"
  58. publicKeyToken="b77a5c561934e089"
  59. culture="neutral"/>
  60. <bindingRedirect oldVersion="1.0.5000.0"
  61. newVersion="1.0.3300.0"/>
  62. </dependentAssembly>
  63. </assemblyBinding>
  64. </runtime>
  65. </configuration>