PageRenderTime 49ms CodeModel.GetById 24ms RepoModel.GetById 0ms app.codeStats 0ms

/src/NUnit/nunit-gui-exe/App.config

#
Unknown | 67 lines | 56 code | 11 blank | 0 comment | 0 complexity | 1f01b616fb33940766c2eee9bae9c10f MD5 | raw file
Possible License(s): GPL-2.0
  1. <?xml version="1.0"?>
  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. Uncomment to specify the url to be used for help. If not used, the
  10. default value is something like
  11. file://localhost/C:/Program Files/NUnit 2.2/doc/index.html
  12. This setting is provided in case your default browser doesn't
  13. support this format.
  14. -->
  15. <!-- <add key="helpUrl" value="http://www.nunit.org" /> -->
  16. </appSettings>
  17. <runtime>
  18. <!-- We need this so test exceptions don't crash NUnit -->
  19. <legacyUnhandledExceptionPolicy enabled="1"/>
  20. <!-- Look for addins in the addins directory for now -->
  21. <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
  22. <probing privatePath="lib;addins"/>
  23. </assemblyBinding>
  24. <!--
  25. The following <assemblyBinding> section allows running nunit under
  26. .NET 1.0 by redirecting assemblies. The appliesTo attribute
  27. causes the section to be ignored except under .NET 1.0
  28. on a machine with only the .NET version 1.0 runtime installed.
  29. If application and its tests were built for .NET 1.1 you will
  30. also need to redirect system assemblies in the test config file,
  31. which controls loading of the tests.
  32. -->
  33. <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1" appliesTo="v1.0.3705">
  34. <dependentAssembly>
  35. <assemblyIdentity name="System" publicKeyToken="b77a5c561934e089" culture="neutral"/>
  36. <bindingRedirect oldVersion="1.0.5000.0" newVersion="1.0.3300.0"/>
  37. </dependentAssembly>
  38. <dependentAssembly>
  39. <assemblyIdentity name="System.Data" publicKeyToken="b77a5c561934e089" culture="neutral"/>
  40. <bindingRedirect oldVersion="1.0.5000.0" newVersion="1.0.3300.0"/>
  41. </dependentAssembly>
  42. <dependentAssembly>
  43. <assemblyIdentity name="System.Drawing" publicKeyToken="b03f5f7f11d50a3a" culture="neutral"/>
  44. <bindingRedirect oldVersion="1.0.5000.0" newVersion="1.0.3300.0"/>
  45. </dependentAssembly>
  46. <dependentAssembly>
  47. <assemblyIdentity name="System.Windows.Forms" publicKeyToken="b77a5c561934e089" culture="neutral"/>
  48. <bindingRedirect oldVersion="1.0.5000.0" newVersion="1.0.3300.0"/>
  49. </dependentAssembly>
  50. <dependentAssembly>
  51. <assemblyIdentity name="System.Xml" publicKeyToken="b77a5c561934e089" culture="neutral"/>
  52. <bindingRedirect oldVersion="1.0.5000.0" newVersion="1.0.3300.0"/>
  53. </dependentAssembly>
  54. </assemblyBinding>
  55. </runtime>
  56. <startup><supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.0"/></startup></configuration>