Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试在 TeamCity 构建配置中从 MSBuild 调用 Gallio。TeamCity 的代理/服务器没有安装 Gallio,但我的源代码树中确实有一个 Gallio 分发版。我正在使用 MSBuild 进行项目的实际构建。
如何告诉 Gallio 任务使用源代码树中的 Gallio 可执行文件?
我认为您需要以下标签的等价物。
<UsingTask AssemblyFile="C:\Program Files\Gallio\bin\Gallio.MSBuildTasks.dll" TaskName="Gallio" />
将它放在主项目标签中。
科林