2004-06-10 Atsushi Enomoto <atsushi@ximian.com>
[mono.git] / mcs / nunit20 / nunit-console / nunit-console.exe.config
1 <?xml version="1.0" encoding="Windows-1252"?>
2 <configuration>
3   <appSettings>
4     <!--   User application and configured property settings go here.-->
5     <!--   Example: <add key="settingName" value="settingValue"/> -->
6     <add key="toolTip.ShowAlways" value="False" />
7     <add key="shadowfiles.path" value="%temp%\nunit20\ShadowCopyCache" />
8   
9     <!--   Uncomment the following line to run tests in the STA -->
10     <!--  <add key="apartment" value="STA" /> -->
11   </appSettings>
12   
13   <startup>
14     <!-- Prefer .NET 1.1 if present - if you want to run under 1.0
15         on a machine with both 1.0 and 1.1 available, change the
16         order of the following statements. -->
17           <supportedRuntime version="v1.1.4322" />
18           <supportedRuntime version="v1.0.3705" />
19           <requiredRuntime version="v1.0.3705" />
20   </startup>
21
22    <!--
23     The following <runtime> section allows running nunit under 
24     .NET 1.0 by redirecting assemblies. The appliesTo attribute
25     causes the section to be ignored except under .NET 1.0version 1
26     on a machine with only the .NET version 1.0 runtime installed.
27     If application and its tests were built for .NET 1.1 you will
28     also need to redirect system assemblies in the test config file.
29    -->
30   
31  <runtime>
32     <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1"
33         appliesTo="v1.0.3705">
34
35       <dependentAssembly> 
36         <assemblyIdentity name="System" 
37                           publicKeyToken="b77a5c561934e089" 
38                           culture=""/>
39         <bindingRedirect  oldVersion="1.0.5000.0" 
40                           newVersion="1.0.3300.0"/>
41       </dependentAssembly>
42
43       <dependentAssembly> 
44         <assemblyIdentity name="System.Data" 
45                           publicKeyToken="b77a5c561934e089" 
46                           culture=""/>
47         <bindingRedirect  oldVersion="1.0.5000.0" 
48                           newVersion="1.0.3300.0"/>
49       </dependentAssembly>
50
51       <dependentAssembly> 
52         <assemblyIdentity name="System.Drawing" 
53                           publicKeyToken="b03f5f7f11d50a3a" 
54                           culture=""/>
55         <bindingRedirect  oldVersion="1.0.5000.0" 
56                           newVersion="1.0.3300.0"/>
57       </dependentAssembly>
58
59       <dependentAssembly> 
60         <assemblyIdentity name="System.Windows.Forms" 
61                           publicKeyToken="b77a5c561934e089" 
62                           culture=""/>
63         <bindingRedirect  oldVersion="1.0.5000.0" 
64                           newVersion="1.0.3300.0"/>
65       </dependentAssembly>
66
67       <dependentAssembly> 
68         <assemblyIdentity name="System.Xml" 
69                           publicKeyToken="b77a5c561934e089" 
70                           culture=""/>
71         <bindingRedirect  oldVersion="1.0.5000.0" 
72                           newVersion="1.0.3300.0"/>
73       </dependentAssembly>
74
75     </assemblyBinding>
76   </runtime>
77   
78 </configuration>