Сегодня утром я задал вопрос о проблеме интеграции между Gallio и Team City. Я изменил файл msbuild, чтобы использовать правильный синтаксис с последним API-интерфейсом сценариев сборки Gallio. Спасибо за это, Джефф Браун, но теперь, когда я пытался создать приложение в Team City, я получаю следующую ошибку:
При выполнении задачи Gallio произошла непредвиденная ошибка. [16:19:49]: [Project "CoderForTraders.msbuild.teamcity.patch.tcprojx" (RebuildSolution; RunTests target (s)):] C: \ TeamCity \ buildAgent \ work \ fa1d38b0af329d65 \ CoderForTraders.msbuild (9, 9): FilterParseException: ожидается двоеточие
Вот строка 9:
<Gallio IgnoreFailures="true" Filter="Type=SomeFixture" Files="@(TestFile)">
и вот весь файл:
<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 test files and assemblies -->
<ItemGroup>
<TestFile Include="C:\_CBL\CBL\CoderForTraders\Source\trunk\UnitTest\DomainModel.Tests\bin\Debug\CBL.CoderForTraders.DomainModel.Tests.dll" />
</ItemGroup>
<Target Name="RunTests">
<Gallio IgnoreFailures="true" Filter="Type=SomeFixture" Files="@(TestFile)">
<!-- 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>
У вас есть представление о возможной проблеме?