source: BMXNET_RPMS_dotNET_UTILITIES-BMX/branch/IHS BMX Framework/lib/NUnit/2.4.3/nunit-console.exe.config@ 1146

Last change on this file since 1146 was 1146, checked in by Sam Habiel, 13 years ago

Initial Import of BMX4

File size: 3.4 KB
Line 
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 <!--
10 Specify the location to be used by .NET for the cache
11 -->
12 <add key="shadowfiles.path" value="%temp%\nunit20\ShadowCopyCache" />
13
14 </appSettings>
15
16 <!--
17 The startup section may be used to specify the runtime versions
18 supported in the order that they will be used if more than one
19 is present. As supplied, this section is commented out, which
20 causes nunit-console to use the version of the framework with
21 which it was built.
22
23 Since .NET 1.0 does not recognize the <supportedRuntime> elements,
24 a <requiredRuntime> element is used in case it is the only version
25 of the framework that is installed.
26 -->
27 <!--
28 <startup>
29 <supportedRuntime version="v2.0.50727" />
30 <supportedRuntime version="v2.0.50215" />
31 <supportedRuntime version="v2.0.40607" />
32 <supportedRuntime version="v1.1.4322" />
33 <supportedRuntime version="v1.0.3705" />
34
35 <requiredRuntime version="v1.0.3705" />
36 </startup>
37 -->
38
39 <!--
40 The following <runtime> section allows running nunit under
41 .NET 1.0 by redirecting assemblies. The appliesTo attribute
42 causes the section to be ignored except under .NET 1.0version 1
43 on a machine with only the .NET version 1.0 runtime installed.
44 If application and its tests were built for .NET 1.1 you will
45 also need to redirect system assemblies in the test config file.
46 -->
47
48 <runtime>
49
50 <legacyUnhandledExceptionPolicy enabled="1" />
51
52 <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1"
53 appliesTo="v1.0.3705">
54
55 <dependentAssembly>
56 <assemblyIdentity name="System"
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.Data"
65 publicKeyToken="b77a5c561934e089"
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.Drawing"
73 publicKeyToken="b03f5f7f11d50a3a"
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.Windows.Forms"
81 publicKeyToken="b77a5c561934e089"
82 culture="neutral"/>
83 <bindingRedirect oldVersion="1.0.5000.0"
84 newVersion="1.0.3300.0"/>
85 </dependentAssembly>
86
87 <dependentAssembly>
88 <assemblyIdentity name="System.Xml"
89 publicKeyToken="b77a5c561934e089"
90 culture="neutral"/>
91 <bindingRedirect oldVersion="1.0.5000.0"
92 newVersion="1.0.3300.0"/>
93 </dependentAssembly>
94
95 </assemblyBinding>
96
97 </runtime>
98
99</configuration>
Note: See TracBrowser for help on using the repository browser.