source: BMXNET_RPMS_dotNET_UTILITIES-BMX/branch/IHS BMX Framework/lib/NUnit/NUnit-2.5.10.11092/bin/net-1.1/nunit-agent.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.5 KB
Line 
1<?xml version="1.0" encoding="utf-8"?>
2<configuration>
3
4 <runtime>
5 <!-- We need this so test exceptions don't crash NUnit -->
6 <legacyUnhandledExceptionPolicy enabled="1" />
7
8 <!-- Look for addins in the addins directory for now -->
9 <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
10 <probing privatePath="lib;addins"/>
11 </assemblyBinding>
12
13 <!--
14 The following <assemblyBinding> section allows running nunit under
15 .NET 1.0 by redirecting assemblies. The appliesTo attribute
16 causes the section to be ignored except under .NET 1.0
17 on a machine with only the .NET version 1.0 runtime installed.
18 If application and its tests were built for .NET 1.1 you will
19 also need to redirect system assemblies in the test config file,
20 which controls loading of the tests.
21 -->
22 <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1"
23 appliesTo="v1.0.3705">
24
25 <dependentAssembly>
26 <assemblyIdentity name="System"
27 publicKeyToken="b77a5c561934e089"
28 culture="neutral"/>
29 <bindingRedirect oldVersion="1.0.5000.0"
30 newVersion="1.0.3300.0"/>
31 </dependentAssembly>
32
33 <dependentAssembly>
34 <assemblyIdentity name="System.Data"
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.Drawing"
43 publicKeyToken="b03f5f7f11d50a3a"
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.Windows.Forms"
51 publicKeyToken="b77a5c561934e089"
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.Xml"
59 publicKeyToken="b77a5c561934e089"
60 culture="neutral"/>
61 <bindingRedirect oldVersion="1.0.5000.0"
62 newVersion="1.0.3300.0"/>
63 </dependentAssembly>
64
65 </assemblyBinding>
66
67 </runtime>
68
69</configuration>
Note: See TracBrowser for help on using the repository browser.