2009-06-12 Bill Holmes <billholmes54@gmail.com>
[mono.git] / mcs / nunit20 / nunit-console / nunit-console.exe.config
1 <?xml version="1.0" encoding="Windows-1252"?>
2 <configuration>
3     <!--
4      Application settings for NUnit-console.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     <add key="shadowfiles.path" value="%temp%\nunit20\ShadowCopyCache" />
11   
12   </appSettings>
13   
14     <!-- 
15      These statements specify the runtime versions supported
16      in the order that they will be used if more than one
17      is present. You can change the order of these if you like
18      or remove any that do not apply.
19          
20          Since .NET 1.0 does not recognize the <supportedRuntime> elements,
21          a <requiredRuntime> element is used in case it is the only version
22          of the framework that is installed.
23     -->
24   <startup>
25
26           <supportedRuntime version="v1.1.4322" />
27           <supportedRuntime version="v2.0.50727" />
28           <supportedRuntime version="v1.0.3705" />
29         
30           <requiredRuntime version="v1.0.3705" />
31
32   </startup>
33
34    <!--
35     The following <runtime> section allows running nunit under 
36     .NET 1.0 by redirecting assemblies. The appliesTo attribute
37     causes the section to be ignored except under .NET 1.0version 1
38     on a machine with only the .NET version 1.0 runtime installed.
39     If application and its tests were built for .NET 1.1 you will
40     also need to redirect system assemblies in the test config file.
41    -->
42   
43  <runtime>
44     <legacyUnhandledExceptionPolicy enabled="1"/>
45     
46     <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1"
47                         appliesTo="v1.0.3705">
48
49       <dependentAssembly> 
50         <assemblyIdentity name="System" 
51                           publicKeyToken="b77a5c561934e089" 
52                           culture=""/>
53         <bindingRedirect  oldVersion="1.0.5000.0" 
54                           newVersion="1.0.3300.0"/>
55       </dependentAssembly>
56
57       <dependentAssembly> 
58         <assemblyIdentity name="System.Data" 
59                           publicKeyToken="b77a5c561934e089" 
60                           culture=""/>
61         <bindingRedirect  oldVersion="1.0.5000.0" 
62                           newVersion="1.0.3300.0"/>
63       </dependentAssembly>
64
65       <dependentAssembly> 
66         <assemblyIdentity name="System.Drawing" 
67                           publicKeyToken="b03f5f7f11d50a3a" 
68                           culture=""/>
69         <bindingRedirect  oldVersion="1.0.5000.0" 
70                           newVersion="1.0.3300.0"/>
71       </dependentAssembly>
72
73       <dependentAssembly> 
74         <assemblyIdentity name="System.Windows.Forms" 
75                           publicKeyToken="b77a5c561934e089" 
76                           culture=""/>
77         <bindingRedirect  oldVersion="1.0.5000.0" 
78                           newVersion="1.0.3300.0"/>
79       </dependentAssembly>
80
81       <dependentAssembly> 
82         <assemblyIdentity name="System.Xml" 
83                           publicKeyToken="b77a5c561934e089" 
84                           culture=""/>
85         <bindingRedirect  oldVersion="1.0.5000.0" 
86                           newVersion="1.0.3300.0"/>
87       </dependentAssembly>
88
89     </assemblyBinding>
90
91   </runtime>
92   
93 </configuration>