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.
TFS2012インスタンスでビルド定義を設定しています。このビルド定義では、カスタム引数を渡し、.csprojファイルでその引数にアクセスします。例えば:
MSBuild Arguments: /p:MyFoo=1
私の.csprojファイルでこれを実行したい:
<ItemGroup Condition=" '$(MyFoo)' == '1' ">
これは可能ですか、それとも私はこれを間違って行っていますか?
これは可能以上に簡単です。ビルド定義を編集し、[プロセス]タブで[詳細]セクションを展開すると、[MSbuild引数]というプロパティが表示され、質問の形式で引数が追加されます。例えば/p:MyFoo=1
/p:MyFoo=1
例えば
ビルドをキューに入れるときに引数を入力することもできます