* roottypes.cs: Rename from tree.cs.
[mono.git] / mcs / nunit20 / nunit20under21.config
1 <?xml version="1.0" encoding="utf-8" ?> 
2 <configuration>
3   
4   <!--  
5     In order to run NUnit 2.0 tests under NUnit 2.1, the test
6     configuration must include a redirect that instructs the 
7     runtime to use the NUnit 2.1 framework. You may copy the
8     section below into your test config file, or use this
9     file in it's entirety. 
10     
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   -->
15
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.0.6.0" newVersion="2.1.4.0" />
23       </dependentAssembly>
24     </assemblyBinding>
25   </runtime>
26
27 </configuration>