As part of my build, I would like to use the "Team Foundation Get" to get some specifc changesets from Team Foundation Server. Unfortunately the Get Sepcific Version dosn't allow me type in a variable like %changesetnumber%. It only allows me to type in an number in this field.
When building our code in FinalBuilder, finalbuilder first get the sourcecode by a specific label. Then it should use the above feature to get a list of changeset with patches for the labeled sourcecode, before running the actually build.
Thanks for posting the request. We'll look into adding this, but in the meantime you can work around this by using some script in the "BeforeAction" script event (accessible under the Script Editor tab), ie
Action.PropertyStore.ChangeSet = changesetnumber
(where you have a FinalBuilder variable called changesetnumber)
It did help, but since I was looking for the ChangeSet, which was an integer, I wanted to use PropertyAsInteger instead of PropertyAsString. Thanks for the help.