views:

488

answers:

1

I am trying to get Gallio to be called from MSBuild in a TeamCity build configuration. The Agent/Server for TeamCity does not have Gallio installed but I do have a distribution of Gallio in my source tree. I am using MSBuild to do the actual build of the project.

How can I tell the Gallio task to use the Gallio executables that are in the source tree?

+1  A: 

I presume you need your equivalent of the following tag.

<UsingTask AssemblyFile="C:\Program Files\Gallio\bin\Gallio.MSBuildTasks.dll" TaskName="Gallio" />

Place it in the main Project tag.

Colin

Colin Desmond