Welcome to mirror list, hosted at ThFree Co, Russian Federation.

nunit21under22.config « nunit24 « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: eff1e5e8b9c400c1390d8d18e0153d0e49a1100d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<?xml version="1.0" encoding="utf-8" ?> 
<configuration>
  
  <!--  
    In order to run NUnit 2.0 or 2.1 tests under NUnit 2.2, the 
    test configuration must include a redirect that instructs the 
    runtime to use the NUnit 2.2 framework. You may copy the
    section below into your test config file, or use this
    file in it's entirety. 
    
    Note that additional redirects could be required if you
    are running under a different version of the CLR than
    the one for which your tests were built.
  -->

  <runtime>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="nunit.framework"
                          publicKeyToken="96d09a1eb7f44a77"
                          culture="Neutral" />
        <bindingRedirect oldVersion="2.1.4.0" newVersion="2.2.0.0" />
      </dependentAssembly>
    </assemblyBinding>
  </runtime>

</configuration>