I have a Build Definition to build a solution on my TFS. This works well, but it always builds the latest version.

  1. How can I force to build a specific changeset from the past?

  2. How can I use/pass this number to the "MSBuild Arguments" to use it there for deployment?

link|improve this question

In what way would the changeset number be used for deployment? – John Saunders Nov 3 '11 at 16:11
I want to use it for the deploy path: /p:DeployIisAppPath=/changeset/CHANGESETNUMBER – Konrad Nov 4 '11 at 8:44
feedback

3 Answers

up vote 4 down vote accepted

The answer to your first question is clearly what @Dylan has stated.

To your second part:
The important argument is GetVersion. Navigate to activity "Run MSBuild for Project" within your Build Process Template, by default this has a value CommandLineArguments equal to

String.Format("/p:SkipInvalidConfigurations=true {0}", MSBuildArguments)

You can change it to something like

String.Format("/p:SkipInvalidConfigurations=true {0} /p:DeployIisAppPath=/changeset/{1}", MSBuildArguments, GetVersion)

and get where you need to go.

link|improve this answer
Creating a new template is the way to go. I only had to change "GetVersion" into "BuildDetail.SourceGetVersion" to get the latest build version :-) – Konrad Nov 8 '11 at 7:03
feedback

When you queue up the build from Team Explorer, in the Parameters tab one of the Advanced arguments is get version.

Note: I think you need to specify this in the form C123 where 123 is the changeset number.

link|improve this answer
thank you ... that anwsered the first question ... but how can I pass this parameter (C1234) to the MSBuild Arguments to use it for deployment? – Konrad Nov 4 '11 at 8:14
1  
It's in one of the workflow arguments, you can access that when setting the arguments passed to the msbuild (you'd have to customize the build workflow) – Dylan Smith Nov 4 '11 at 14:54
feedback

If you use the changeset number, then it will only make sense for CI builds, since they typically build a single changeset.

For any other kind of build, I recommend using the build ID, which is unique, and covers the case of a build that builds multiple changesets.

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.