fix integration tests
[mcs.git] / nunit24 / nunit21under22.config
blobeff1e5e8b9c400c1390d8d18e0153d0e49a1100d
1 <?xml version="1.0" encoding="utf-8" ?>
2 <configuration>
4 <!--
5 In order to run NUnit 2.0 or 2.1 tests under NUnit 2.2, the
6 test configuration must include a redirect that instructs the
7 runtime to use the NUnit 2.2 framework. You may copy the
8 section below into your test config file, or use this
9 file in it's entirety.
11 Note that additional redirects could be required if you
12 are running under a different version of the CLR than
13 the one for which your tests were built.
14 -->
16 <runtime>
17 <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
18 <dependentAssembly>
19 <assemblyIdentity name="nunit.framework"
20 publicKeyToken="96d09a1eb7f44a77"
21 culture="Neutral" />
22 <bindingRedirect oldVersion="2.1.4.0" newVersion="2.2.0.0" />
23 </dependentAssembly>
24 </assemblyBinding>
25 </runtime>
27 </configuration>