assemblyinfo.cs ファイルのチェックインを実行する次の実行タスクがあります。終了コードを返そうとしていますが、何らかの理由で常に空です。
<!--Checkin if all succeeded-->
<Exec Condition=" '$(LocalCompilationSuccess)' != 'Failed' and '$(LocalTestSuccess)' != 'Failed' " ContinueOnError="True"
Command='"$(TfCommand)" checkin /recursive /comment:"$(NoCICheckInComment) $(BuildDefinitionName): build succeeded, checkin changes." /override:"TeamBuild $(BuildDefinitionName)" $/SomeProject/Trnk' WorkingDirectory="$(SolutionRoot)" >
<Output TaskParameter="ExitCode" PropertyName="ErrorCode"/>
</Exec>
2 つの方法で終了コードを読み取ろうとしました。
'%(ErrorCode.Identity)'
'$(ErrorCode)'
どちらも空です。助言がありますか?