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" />
メインの Project タグに配置します。
コリン