Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is it possible to get the history of changes on a build definition in TFS2010?

Tags:

tfsbuild

It seems odd that the main build definitions would not have a history, but I can't find any mechanisms. Please tell me there is someway to track changes to the build definitions over time.

like image 752
Alex Avatar asked Jun 07 '10 11:06

Alex


People also ask

How to check build definition in TFS?

In the Team Explorer window, right-click the build definition, and then click Queue New Build. In the Queue Build dialog box, review the build properties, and then click Queue.

What means build in Visual Studio?

Definition. A build is an option or a menu available in Visual Studio that is capable of performing an incremental build, whereas rebuild is an option or a menu in Visual Studio that cleans and builds the solution from scratch.


1 Answers

I'm pretty sure there is no way to track the changes to the build definition automatically. You can however do it manually by exporting the definition to a file each time you change it and then checking in that file into source control.

You'll need to install the Team Foundation Server Power Tools appropriate for your TFS version, then you can use

tfpt builddefinition

to export definitions.

like image 73
Alistair Mackay Avatar answered Oct 03 '22 00:10

Alistair Mackay