NUnitTests.config 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. <?xml version="1.0" encoding="utf-8" ?>
  2. <configuration>
  3. <!--
  4. This is the configuration file for the NUnitTests.nunit test project. You may
  5. need to create a similar configuration file for your own test project if your
  6. application and tests require it.
  7. -->
  8. <appSettings>
  9. <!-- User application and configured property settings go here.-->
  10. <!-- Example: <add key="settingName" value="settingValue"/> -->
  11. <add key="test.setting" value="54321" />
  12. </appSettings>
  13. <!--
  14. The following <runtime> section allows running nunit tests under
  15. .NET 1.0 by redirecting assemblies. The appliesTo attribute
  16. causes the section to be ignored except under .NET 1.0.
  17. -->
  18. <runtime>
  19. <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1"
  20. appliesTo="v1.0.3705">
  21. <dependentAssembly>
  22. <assemblyIdentity name="System" publicKeyToken="b77a5c561934e089" culture="" />
  23. <bindingRedirect oldVersion="1.0.5000.0" newVersion="1.0.3300.0" />
  24. </dependentAssembly>
  25. <dependentAssembly>
  26. <assemblyIdentity name="System.Data" publicKeyToken="b77a5c561934e089" culture="" />
  27. <bindingRedirect oldVersion="1.0.5000.0" newVersion="1.0.3300.0" />
  28. </dependentAssembly>
  29. <dependentAssembly>
  30. <assemblyIdentity name="System.Drawing" publicKeyToken="b03f5f7f11d50a3a" culture="" />
  31. <bindingRedirect oldVersion="1.0.5000.0" newVersion="1.0.3300.0" />
  32. </dependentAssembly>
  33. <dependentAssembly>
  34. <assemblyIdentity name="System.Windows.Forms" publicKeyToken="b77a5c561934e089" culture="" />
  35. <bindingRedirect oldVersion="1.0.5000.0" newVersion="1.0.3300.0" />
  36. </dependentAssembly>
  37. <dependentAssembly>
  38. <assemblyIdentity name="System.Xml" publicKeyToken="b77a5c561934e089" culture="" />
  39. <bindingRedirect oldVersion="1.0.5000.0" newVersion="1.0.3300.0" />
  40. </dependentAssembly>
  41. </assemblyBinding>
  42. </runtime>
  43. </configuration>