TFS 2010 exposes a "Build Number Format" property, which contains $(BuildNumberDefinitionName) and $(Rev:.r) variables (among other things). Two and a half parts to my question:

  1. What are all the available variables that can be used here?

  2. Where does the value for $(Rev:.r) come from (where is it stored)?

    a. Can it be reset or changed?

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

Open a build definition, go process tab, find "Build Number Format" section and click "..." button at end of it. Here you will see a "Macros>>" button that contains all available variables. As far as I know $(Rev:.r) tells that it's Nth time that this definition has been run in a specific date. It is store in TFS internal database.

link|improve this answer
Is there no supported way to see the current value and reset it? – BlueMonkMN Oct 13 '10 at 12:17
To see current value, I check completed/queued builds of the build definition. But for resenting have now idea. – afsharm Oct 14 '10 at 5:15
Completed/Queued builds could be deleted so I don't think that's an accurate way to know which build will be next. – BlueMonkMN Oct 17 '10 at 20:25
feedback

http://www.richardmaxwell.name/blog/2011/5/5/force-tfs-build-revision-to-a-specifc-value.html

Anytime you change your Build Number in a TFS build, the revision resets to 1, which is what it should do, most of the time. But sometimes, you want to start at revision 100, maybe recreating a deleted build definition, or just wanting to maintain the old revision into a new branch. It took me a lucky accident to discover how this is possible. You must replace the dynamic revision with a hard coded one, build, and then change it back. Out of frustration I eventually tried this:

Build Number Format: 1.0.0.100

This gave me the build I wanted, and then changed it back to this:

Build Number Format: 1.0.0$(Rev:.r)

This picked up my last value, starting future build at 1.0.0.101, instead of incrementing the last version that it had used, 1.0.0.2. So I was able to skip builds 1 through 99 and start at revision 100 in my build number.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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