source: BMXNET_RPMS_dotNET_UTILITIES-BMX/branch/IHS BMX Framework/lib/NUnit/NUnit-2.5.10.11092/bin/net-1.1/pnunit-launcher.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: 2.8 KB
Line 
1<?xml version="1.0" encoding="Windows-1252"?>
2<configuration>
3
4 <!-- Set the level for tracing NUnit itself -->
5 <!-- 0=Off 1=Error 2=Warning 3=Info 4=Debug -->
6 <system.diagnostics>
7 <switches>
8 <add name="NTrace" value="0" />
9 </switches>
10 </system.diagnostics>
11
12 <runtime>
13 <!-- We need this so test exceptions don't crash NUnit -->
14 <legacyUnhandledExceptionPolicy enabled="1" />
15
16 <!-- Look for addins in the addins directory for now -->
17 <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
18 <probing privatePath="framework;lib;addins"/>
19 </assemblyBinding>
20
21 <!--
22 The following <assemblyBinding> section allows running nunit under
23 .NET 1.0 by redirecting assemblies. The appliesTo attribute
24 causes the section to be ignored except under .NET 1.0
25 on a machine with only the .NET version 1.0 runtime installed.
26 If application and its tests were built for .NET 1.1 you will
27 also need to redirect system assemblies in the test config file,
28 which controls loading of the tests.
29 -->
30 <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1"
31 appliesTo="v1.0.3705">
32
33 <dependentAssembly>
34 <assemblyIdentity name="System"
35 publicKeyToken="b77a5c561934e089"
36 culture="neutral"/>
37 <bindingRedirect oldVersion="1.0.5000.0"
38 newVersion="1.0.3300.0"/>
39 </dependentAssembly>
40
41 <dependentAssembly>
42 <assemblyIdentity name="System.Data"
43 publicKeyToken="b77a5c561934e089"
44 culture="neutral"/>
45 <bindingRedirect oldVersion="1.0.5000.0"
46 newVersion="1.0.3300.0"/>
47 </dependentAssembly>
48
49 <dependentAssembly>
50 <assemblyIdentity name="System.Drawing"
51 publicKeyToken="b03f5f7f11d50a3a"
52 culture="neutral"/>
53 <bindingRedirect oldVersion="1.0.5000.0"
54 newVersion="1.0.3300.0"/>
55 </dependentAssembly>
56
57 <dependentAssembly>
58 <assemblyIdentity name="System.Windows.Forms"
59 publicKeyToken="b77a5c561934e089"
60 culture="neutral"/>
61 <bindingRedirect oldVersion="1.0.5000.0"
62 newVersion="1.0.3300.0"/>
63 </dependentAssembly>
64
65 <dependentAssembly>
66 <assemblyIdentity name="System.Xml"
67 publicKeyToken="b77a5c561934e089"
68 culture="neutral"/>
69 <bindingRedirect oldVersion="1.0.5000.0"
70 newVersion="1.0.3300.0"/>
71 </dependentAssembly>
72
73 </assemblyBinding>
74
75 </runtime>
76
77</configuration>
Note: See TracBrowser for help on using the repository browser.