nunit20under22.config
来自「C#编写的网络爬虫程序 效率很高 很好用!」· CONFIG 代码 · 共 28 行
CONFIG
28 行
<?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.0.6.0" newVersion="2.2.0.0" />
</dependentAssembly>
</assemblyBinding>
</runtime>
</configuration>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?