/tools/nunit/nunit-gui.exe.config

http://github.com/philiplaureano/LinFu · Unknown · 109 lines · 90 code · 19 blank · 0 comment · 0 complexity · ef87c118077066fc46d9c545e6569fd3 MD5 · raw file

  1. <?xml version="1.0" encoding="Windows-1252"?>
  2. <configuration>
  3. <!--
  4. Application settings for NUnit-gui.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. <!--
  13. Uncomment to specify the url to be used for help. If not used, the
  14. default value is something like
  15. file://localhost/C:/Program Files/NUnit 2.2/doc/index.html
  16. This setting is provided in case your default browser doesn't
  17. support this format.
  18. -->
  19. <!-- <add key="helpUrl" value="http://www.nunit.org" /> -->
  20. </appSettings>
  21. <!--
  22. The startup section may be used to specify the runtime versions
  23. supported in the order that they will be used if more than one
  24. is present. As supplied, this section is commented out, which
  25. causes nunit-console to use the version of the framework with
  26. which it was built.
  27. Since .NET 1.0 does not recognize the <supportedRuntime> elements,
  28. a <requiredRuntime> element is used in case it is the only version
  29. of the framework that is installed.
  30. -->
  31. <!--
  32. <startup>
  33. <supportedRuntime version="v2.0.50727" />
  34. <supportedRuntime version="v2.0.50215" />
  35. <supportedRuntime version="v2.0.40607" />
  36. <supportedRuntime version="v1.1.4322" />
  37. <supportedRuntime version="v1.0.3705" />
  38. <requiredRuntime version="v1.0.3705" />
  39. </startup>
  40. -->
  41. <!--
  42. The following <runtime> section allows running nunit under
  43. .NET 1.0 by redirecting assemblies. The appliesTo attribute
  44. causes the section to be ignored except under .NET 1.0
  45. on a machine with only the .NET version 1.0 runtime installed.
  46. If application and its tests were built for .NET 1.1 you will
  47. also need to redirect system assemblies in the test config file
  48. just as we do for nunit.tests.dll.
  49. -->
  50. <runtime>
  51. <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1"
  52. appliesTo="v1.0.3705">
  53. <dependentAssembly>
  54. <assemblyIdentity name="System"
  55. publicKeyToken="b77a5c561934e089"
  56. culture="neutral"/>
  57. <bindingRedirect oldVersion="1.0.5000.0"
  58. newVersion="1.0.3300.0"/>
  59. </dependentAssembly>
  60. <dependentAssembly>
  61. <assemblyIdentity name="System.Data"
  62. publicKeyToken="b77a5c561934e089"
  63. culture="neutral"/>
  64. <bindingRedirect oldVersion="1.0.5000.0"
  65. newVersion="1.0.3300.0"/>
  66. </dependentAssembly>
  67. <dependentAssembly>
  68. <assemblyIdentity name="System.Drawing"
  69. publicKeyToken="b03f5f7f11d50a3a"
  70. culture="neutral"/>
  71. <bindingRedirect oldVersion="1.0.5000.0"
  72. newVersion="1.0.3300.0"/>
  73. </dependentAssembly>
  74. <dependentAssembly>
  75. <assemblyIdentity name="System.Windows.Forms"
  76. publicKeyToken="b77a5c561934e089"
  77. culture="neutral"/>
  78. <bindingRedirect oldVersion="1.0.5000.0"
  79. newVersion="1.0.3300.0"/>
  80. </dependentAssembly>
  81. <dependentAssembly>
  82. <assemblyIdentity name="System.Xml"
  83. publicKeyToken="b77a5c561934e089"
  84. culture="neutral"/>
  85. <bindingRedirect oldVersion="1.0.5000.0"
  86. newVersion="1.0.3300.0"/>
  87. </dependentAssembly>
  88. </assemblyBinding>
  89. </runtime>
  90. </configuration>