Jeffrey Cameron
Jeffrey Cameron

Reputation: 10285

How do I get the Gallio MSBuild task to find my specific Gallio executables

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?

Upvotes: 0

Views: 960

Answers (1)

Colin Desmond
Colin Desmond

Reputation: 4854

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

Upvotes: 2

Related Questions