I’ve been googling and can’t find any solid examples how this is done, or if it even can be done. I assume it can. Can anyone point me in the right direction?
So far I’ve been looking under the TFS namespace documentation on msdn. My goal is to be able to fully automate and track our builds in TFS from an intranet web application.
Richard pointed me in the right direction, so I’m going to answer my own question with what I’ve found.
Yes, you can use the TFS SDK to create, queue, and track builds. The interfaces/classes you want are located in the Microsoft.TeamFoundation.Build.Client namespace. IBuildServer, IBuildDefinition, and IBuildDetail are particularly useful.
TFS 2010 UPDATE: Here is an example program using the TFS 2010 SDK, found here: