I have a simple tfs-2010 build definition using the default process template. In it I defined the Build Number Format using $(BuildID) to define part of the computed field. This works and I can see what BuildID's value is.

Now I try to pass the BuildID property to MSBuild as an argument:

/p:SomeProperty=$(BuildID)

However when I look at the build log I see SomeProperty literally equals $(BuildID) rather then the value of BuildID.

What am I missing?

Update for clarity: What I'm asking is how to reference as a Build Process Parameter in the Build Definition. For example Build Number Format has a default expression of $(BuildDefinitionName)_$(Date:yyyyMMdd)$(Rev:.r)

link|improve this question

feedback

1 Answer

up vote 3 down vote accepted

You need to use a VB.NET expression. For example:

String.Format("/p:SomeProperty={0}", BuildDetail.BuildNumber)

The Build Number tokens, e.g. $(BuildDefinitionName), are specific to the Build Number Format process parameter. They aren't tokens that you can use anywhere else in the build process. Most are available in the BuildDetail object or from the environment. The Build Id is a bit of a special case, however. It comes from the identity column of the builds table and isn't directly exposed in our public API. You could extract it from the BuildNumber, like this:

BuildDetail.BuildNumber.Substring(BuildDetail.BuildNumber.LastIndexOf('/') + 1)
link|improve this answer
Jim, can you show him where to use that? – John Saunders Aug 30 '11 at 14:11
I know how to do that in the workflow activity. What I'm asking is how to reference it as a Build Process Parameter in the Build Definition. For example Build Number Format has a default expression of $(BuildDefinitionName)_$(Date:yyyyMMdd)$(Rev:.r) – Christopher Painter Aug 30 '11 at 14:25
Jim has just told you that you cannot just type that into a build process parameter. You could customize the build template and add a parameter, with Jim's expression as the default value. – John Saunders Aug 30 '11 at 16:26
1  
So there's no way of doing something like /p:SomeProperty=BuildDetail.BuildNumber.Subtring(...) without customizing the workflow? That seems unfortunate if so. – Christopher Painter Aug 30 '11 at 17:51
@Christopher you could pass the appropriate VB expression into the MSBuild Arguments parameter. Parameter values don't have to be static constants, they can be any valid VB expression. – Jim Lamb Aug 30 '11 at 18:17
show 2 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.