如何从 VS2010 使用 msbuild 运行 nunit

发布于 2024-10-10 15:10:25 字数 57 浏览 4 评论 0原文

请告诉我如何使用 msbuild 运行 nunit。我使用 TFS 进行代码集成和 VS2010 。

please tell me how to run nunit with msbuild. I am using TFS for code integration and VS2010 .

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

蓝色星空 2024-10-17 15:10:25

您可能希望将 NUnit 与 TFSBuild 而不是 MSBuild 集成,因为您使用的是 Team Foundation Server。

您将需要 MSBuild 任务才能运行 NUnit,如以下三个教程中所述:

最简单的方法是使用 MSBuild 社区任务,其中您已经有 < code>NUnit 任务已准备好使用,您只需将目标添加到您的 msbuild 文件中,如下所示:

<Target Name="RunTests">  
    <!-- Run Unit tests -->  
    <CreateItem Include="$(OutDir)*.Tests.dll">  
      <Output TaskParameter="Include" ItemName="TestAssembly" />  
    </CreateItem>  
    <NUnit ToolPath="..\Tools\NUnit" DisableShadowCopy="true" Assemblies="@(TestAssembly)" />  
  </Target>

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:

<Target Name="RunTests">  
    <!-- Run Unit tests -->  
    <CreateItem Include="$(OutDir)*.Tests.dll">  
      <Output TaskParameter="Include" ItemName="TestAssembly" />  
    </CreateItem>  
    <NUnit ToolPath="..\Tools\NUnit" DisableShadowCopy="true" Assemblies="@(TestAssembly)" />  
  </Target>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文