2009-06-12 Bill Holmes <billholmes54@gmail.com>
[mono.git] / mcs / nunit20 / nunit-console / nunit-console.exe.config.net_2_0
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           <supportedRuntime version="v2.0.50727" />
26   </startup>
27
28    <!--
29     The following <runtime> section allows running nunit under 
30     .NET 1.0 by redirecting assemblies. The appliesTo attribute
31     causes the section to be ignored except under .NET 1.0version 1
32     on a machine with only the .NET version 1.0 runtime installed.
33     If application and its tests were built for .NET 1.1 you will
34     also need to redirect system assemblies in the test config file.
35    -->
36   
37  <runtime>
38     <legacyUnhandledExceptionPolicy enabled="1"/>
39     
40     <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1"
41                         appliesTo="v1.0.3705">
42
43       <dependentAssembly> 
44         <assemblyIdentity name="System" 
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.Data" 
53                           publicKeyToken="b77a5c561934e089" 
54                           culture=""/>
55         <bindingRedirect  oldVersion="1.0.5000.0" 
56                           newVersion="1.0.3300.0"/>
57       </dependentAssembly>
58
59       <dependentAssembly> 
60         <assemblyIdentity name="System.Drawing" 
61                           publicKeyToken="b03f5f7f11d50a3a" 
62                           culture=""/>
63         <bindingRedirect  oldVersion="1.0.5000.0" 
64                           newVersion="1.0.3300.0"/>
65       </dependentAssembly>
66
67       <dependentAssembly> 
68         <assemblyIdentity name="System.Windows.Forms" 
69                           publicKeyToken="b77a5c561934e089" 
70                           culture=""/>
71         <bindingRedirect  oldVersion="1.0.5000.0" 
72                           newVersion="1.0.3300.0"/>
73       </dependentAssembly>
74
75       <dependentAssembly> 
76         <assemblyIdentity name="System.Xml" 
77                           publicKeyToken="b77a5c561934e089" 
78                           culture=""/>
79         <bindingRedirect  oldVersion="1.0.5000.0" 
80                           newVersion="1.0.3300.0"/>
81       </dependentAssembly>
82
83     </assemblyBinding>
84
85   </runtime>
86   
87 </configuration>