NUnit 2.5.8, lots of nunit-agent.exe

时光总嘲笑我的痴心妄想 提交于 2019-11-29 03:48:34
Sean

I've just encountered the same problem. The fix is to edit the NUnit.exe.config file and add this:

<startup>
  <requiredRuntime version="4.0.30319" />
</startup>

as a child of the configuration element.

It also fixes another problem which is that you couldn't attach to NUnit from the debugger in order to set breakpoints in your tests.

I fixed this problem by upgrading to version 2.5.9 (development build). But this has other problems - so Sean's answer is better.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!