/tools/nunit/nunit-console.exe.config

http://github.com/philiplaureano/LinFu · Unknown · 97 lines · 81 code · 16 blank · 0 comment · 0 complexity · 306cb06f66db74db542d0e55717da27e MD5 · raw file

  1. <?xml version="1.0" encoding="Windows-1252"?>
  2. <configuration>
  3. <!--
  4. Application settings for NUnit-console.exe. Do NOT put settings
  5. for use by your tests here.
  6. -->
  7. <appSettings>
  8. <!--
  9. Specify the location to be used by .NET for the cache
  10. -->
  11. <add key="shadowfiles.path" value="%temp%\nunit20\ShadowCopyCache" />
  12. </appSettings>
  13. <!--
  14. The startup section may be used to specify the runtime versions
  15. supported in the order that they will be used if more than one
  16. is present. As supplied, this section is commented out, which
  17. causes nunit-console to use the version of the framework with
  18. which it was built.
  19. Since .NET 1.0 does not recognize the <supportedRuntime> elements,
  20. a <requiredRuntime> element is used in case it is the only version
  21. of the framework that is installed.
  22. -->
  23. <!--
  24. <startup>
  25. <supportedRuntime version="v2.0.50727" />
  26. <supportedRuntime version="v2.0.50215" />
  27. <supportedRuntime version="v2.0.40607" />
  28. <supportedRuntime version="v1.1.4322" />
  29. <supportedRuntime version="v1.0.3705" />
  30. <requiredRuntime version="v1.0.3705" />
  31. </startup>
  32. -->
  33. <!--
  34. The following <runtime> section allows running nunit under
  35. .NET 1.0 by redirecting assemblies. The appliesTo attribute
  36. causes the section to be ignored except under .NET 1.0version 1
  37. on a machine with only the .NET version 1.0 runtime installed.
  38. If application and its tests were built for .NET 1.1 you will
  39. also need to redirect system assemblies in the test config file.
  40. -->
  41. <runtime>
  42. <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1"
  43. appliesTo="v1.0.3705">
  44. <dependentAssembly>
  45. <assemblyIdentity name="System"
  46. publicKeyToken="b77a5c561934e089"
  47. culture="neutral"/>
  48. <bindingRedirect oldVersion="1.0.5000.0"
  49. newVersion="1.0.3300.0"/>
  50. </dependentAssembly>
  51. <dependentAssembly>
  52. <assemblyIdentity name="System.Data"
  53. publicKeyToken="b77a5c561934e089"
  54. culture="neutral"/>
  55. <bindingRedirect oldVersion="1.0.5000.0"
  56. newVersion="1.0.3300.0"/>
  57. </dependentAssembly>
  58. <dependentAssembly>
  59. <assemblyIdentity name="System.Drawing"
  60. publicKeyToken="b03f5f7f11d50a3a"
  61. culture="neutral"/>
  62. <bindingRedirect oldVersion="1.0.5000.0"
  63. newVersion="1.0.3300.0"/>
  64. </dependentAssembly>
  65. <dependentAssembly>
  66. <assemblyIdentity name="System.Windows.Forms"
  67. publicKeyToken="b77a5c561934e089"
  68. culture="neutral"/>
  69. <bindingRedirect oldVersion="1.0.5000.0"
  70. newVersion="1.0.3300.0"/>
  71. </dependentAssembly>
  72. <dependentAssembly>
  73. <assemblyIdentity name="System.Xml"
  74. publicKeyToken="b77a5c561934e089"
  75. culture="neutral"/>
  76. <bindingRedirect oldVersion="1.0.5000.0"
  77. newVersion="1.0.3300.0"/>
  78. </dependentAssembly>
  79. </assemblyBinding>
  80. </runtime>
  81. </configuration>