开发者

NBehave and NUnit-2.5.5.10112 can work together?

开发者 https://www.devze.com 2022-12-30 10:08 出处:网络
I\'m using Unit-2.5.5.10112.开发者_Go百科 How can I use also NBehave, if it has dependency on an older version of NUnit?

I'm using Unit-2.5.5.10112.开发者_Go百科 How can I use also NBehave, if it has dependency on an older version of NUnit?

Should I ignore NBehave?


You can get NBehave 0.4.5 to use NUnit 2.5.5.10112 by doing the following:

First, create an NBehave-Console.exe.config containing the following:

<?xml version="1.0" encoding="utf-8" ?>
<configuration>
  <runtime>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="nunit.framework"
                          culture="neutral"
                          publicKeyToken="96d09a1eb7f44a77" />
        <bindingRedirect oldVersion="2.5.2.9222" newVersion="2.5.5.10112" />
      </dependentAssembly>
    </assemblyBinding>
  </runtime>
</configuration>

This tells the CLR loader that when NBehave-Console.exe looks for 2.5.2.9222 of nunit.framework, it should use 2.5.5.10112 instead.

Second, put nunit.framework.dll version 2.5.5.10112 in the C:\Program Files\NBehave\0.4.5.183 directory, replacing the older version.

0

精彩评论

暂无评论...
验证码 换一张
取 消