如何从 VS2010 使用 msbuild 运行 nunit
请告诉我如何使用 msbuild 运行 nunit。我使用 TFS 进行代码集成和 VS2010 。
please tell me how to run nunit with msbuild. I am using TFS for code integration and VS2010 .
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可能希望将 NUnit 与 TFSBuild 而不是 MSBuild 集成,因为您使用的是 Team Foundation Server。
您将需要 MSBuild 任务才能运行 NUnit,如以下三个教程中所述:
最简单的方法是使用 MSBuild 社区任务,其中您已经有 < code>NUnit 任务已准备好使用,您只需将目标添加到您的 msbuild 文件中,如下所示:
You probably want to integrate NUnit with TFSBuild and not MSBuild since you are using Team Foundation Server.
You will need MSBuild tasks to be able to run NUnit as explained in the three following tutorials:
The easiest way is to use the MSBuild Community Tasks where you already have a
NUnit
task ready to be used and you only will need to add a target to your msbuild file like so: