3

很多天以来,我一直试图让我的 MBUnit 测试套件在 Team City 上工作,但没有任何成功。

我的解决方案没有问题。该程序与我的测试。在谷歌上搜索 Gallio 与 Team City 的集成后,我尝试了很多方法来让这件事发挥作用,我认为我很接近但需要帮助。

我已将gallio bin 目录包含到我的存储库以及我的TC 服务器上。

这是我在 Team City 中设置的构建运行器:

构建运行器:MSBuild 构建文件路径:Myproject.msbuild 目标:RebuildSolution RunTests

这是我创建并包含在源代码管理主干目录中的 Myproject.msbuild 文件:

<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<!-- This is needed by MSBuild to locate the Gallio task -->
<UsingTask AssemblyFile="C:\Gallio\bin\Gallio.MSBuildTasks.dll" TaskName="Gallio" />
<!-- Specify the tests assemblies -->
<ItemGroup>
  <TestAssemblies Include="C:\_CBL\CBL\CoderForTraders\Source\trunk\UnitTest\DomainModel.Tests\bin\Debug\CBL.CoderForTraders.DomainModel.Tests.dll" /> 
</ItemGroup>
<Target Name="RunTests">
  <Gallio IgnoreFailures="false" Assemblies="@(TestAssemblies)" RunnerExtensions="TeamCityExtension,Gallio.TeamCityIntegration">
   <!-- This tells MSBuild to store the output value of the task's ExitCode property into the project's ExitCode property -->
   <Output TaskParameter="ExitCode" PropertyName="ExitCode"/>
  </Gallio>
  <Error Text="Tests execution failed" Condition="'$(ExitCode)' != 0" />
</Target>
<Target Name="RebuildSolution">
  <Message Text="Starting to Build"/>
  <MSBuild Projects="CoderForTraders.sln" 
           Properties="Configuration=Debug" 
           Targets="Rebuild" />
</Target>
</Project>

以下是 Team City 显示的错误:

错误 MSB4064:“Gallio”任务不支持“Assemblies”参数。验证该参数是否存在于任务上,并且它是一个可设置的公共实例属性

错误 MSB4063:无法使用其输入参数初始化“Gallio”任务。

谢谢你的帮助

4

1 回答 1

3

Assemblies 属性已重命名为 Files。此处的文档:http ://www.gallio.org/api/html/T_Gallio_MSBuildTasks_Gallio.htm

于 2010-04-09T18:27:13.217 回答