master
 1<?xml version="1.0" encoding="utf-8"?>
 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
18  <!-- Set the level for tracing NUnit itself -->
19  <!-- 0=Off 1=Error 2=Warning 3=Info 4=Debug -->
20  <system.diagnostics>
21	  <switches>
22      <add name="NTrace" value="0" />
23	  </switches>
24	</system.diagnostics>
25
26  <runtime>
27    <!-- We need this so test exceptions don't crash NUnit -->
28    <legacyUnhandledExceptionPolicy enabled="1" />
29
30    <!-- Look for addins in the addins directory for now -->
31    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
32      <probing privatePath="lib;addins" />
33    </assemblyBinding>
34
35    <!--
36    The following <assemblyBinding> section allows running nunit under 
37    .NET 1.0 by redirecting assemblies. The appliesTo attribute
38    causes the section to be ignored except under .NET 1.0
39    on a machine with only the .NET version 1.0 runtime installed.
40    If application and its tests were built for .NET 1.1 you will
41    also need to redirect system assemblies in the test config file,
42    which controls loading of the tests.
43   -->
44    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1"
45       appliesTo="v1.0.3705">
46
47      <dependentAssembly>
48        <assemblyIdentity name="System"
49                          publicKeyToken="b77a5c561934e089"
50                          culture="neutral"/>
51        <bindingRedirect  oldVersion="1.0.5000.0"
52                          newVersion="1.0.3300.0"/>
53      </dependentAssembly>
54
55      <dependentAssembly>
56        <assemblyIdentity name="System.Data"
57                          publicKeyToken="b77a5c561934e089"
58                          culture="neutral"/>
59        <bindingRedirect  oldVersion="1.0.5000.0"
60                          newVersion="1.0.3300.0"/>
61      </dependentAssembly>
62
63      <dependentAssembly>
64        <assemblyIdentity name="System.Drawing"
65                          publicKeyToken="b03f5f7f11d50a3a"
66                          culture="neutral"/>
67        <bindingRedirect  oldVersion="1.0.5000.0"
68                          newVersion="1.0.3300.0"/>
69      </dependentAssembly>
70
71      <dependentAssembly>
72        <assemblyIdentity name="System.Windows.Forms"
73                          publicKeyToken="b77a5c561934e089"
74                          culture="neutral"/>
75        <bindingRedirect  oldVersion="1.0.5000.0"
76                          newVersion="1.0.3300.0"/>
77      </dependentAssembly>
78
79      <dependentAssembly>
80        <assemblyIdentity name="System.Xml"
81                          publicKeyToken="b77a5c561934e089"
82                          culture="neutral"/>
83        <bindingRedirect  oldVersion="1.0.5000.0"
84                          newVersion="1.0.3300.0"/>
85      </dependentAssembly>
86
87    </assemblyBinding>
88
89  </runtime>
90
91</configuration>