TFS 2012
VS 2012
I have large number of Build Definitions
that are derived from single template.
I also have a Master Build to queue all those builds and pass arguments if I need to do so.
That part was done using TFS Community Extension: QueueBuilds
.
Problem:
Is there a way to access Build Definitions
, loop through them, (can get up to here by myself) and change their ProcessParameters
and save them.
You can use the
Microsoft.TeamFoundation.Build.Client
and related assemblies to update the process parameters via PowerShell or C#. The one tricky part is the parameters are stored in XML so you have to deserialize, make your changes, then serialize again to set them.This likely won't run without some tweaking but here are some snippets from one of my scripts that will help: