I have a solution which is built on TFS server. This solution includes several projects which have custom MSBuild tasks. Theses tasks actually create some zip archives.
I need to extract somehow the $(Rev) macros from the TFS build and pass it to the tasks. I tried to use MSBuildArguments in the process tab of the build definition and it works when I set a simple string value like:
/p:Version="5"
but it doesn't work with the macros:
/p:Version="$(Rev:r)"
do you have any ideas?
Edit: I actually needed BuildDetail.BuildNumber.