**** Merged from MCS ****
[mono-project.git] / mcs / nunit20 / nunit-console / nunit-console.exe.config
blob82e3b573541fa6455c0a742b9fa14ca9c1bf00d6
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>
9 <!-- Specify the location to be used by .NET for the cache -->
10 <add key="shadowfiles.path" value="%temp%\nunit20\ShadowCopyCache" />
12 </appSettings>
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.
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>
26 <supportedRuntime version="v1.1.4322" />
27 <supportedRuntime version="v2.0.40607" />
28 <supportedRuntime version="v1.0.3705" />
30 <requiredRuntime version="v1.0.3705" />
32 </startup>
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 -->
43 <runtime>
45 <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1"
46 appliesTo="v1.0.3705">
48 <dependentAssembly>
49 <assemblyIdentity name="System"
50 publicKeyToken="b77a5c561934e089"
51 culture=""/>
52 <bindingRedirect oldVersion="1.0.5000.0"
53 newVersion="1.0.3300.0"/>
54 </dependentAssembly>
56 <dependentAssembly>
57 <assemblyIdentity name="System.Data"
58 publicKeyToken="b77a5c561934e089"
59 culture=""/>
60 <bindingRedirect oldVersion="1.0.5000.0"
61 newVersion="1.0.3300.0"/>
62 </dependentAssembly>
64 <dependentAssembly>
65 <assemblyIdentity name="System.Drawing"
66 publicKeyToken="b03f5f7f11d50a3a"
67 culture=""/>
68 <bindingRedirect oldVersion="1.0.5000.0"
69 newVersion="1.0.3300.0"/>
70 </dependentAssembly>
72 <dependentAssembly>
73 <assemblyIdentity name="System.Windows.Forms"
74 publicKeyToken="b77a5c561934e089"
75 culture=""/>
76 <bindingRedirect oldVersion="1.0.5000.0"
77 newVersion="1.0.3300.0"/>
78 </dependentAssembly>
80 <dependentAssembly>
81 <assemblyIdentity name="System.Xml"
82 publicKeyToken="b77a5c561934e089"
83 culture=""/>
84 <bindingRedirect oldVersion="1.0.5000.0"
85 newVersion="1.0.3300.0"/>
86 </dependentAssembly>
88 </assemblyBinding>
90 </runtime>
92 </configuration>