smwikipedia
smwikipedia

Reputation: 64433

TFS2008 counterparts in TFS2010

I used to invoke the BuildStore.asmx to get the build info from TFS 2008, such as work items, build steps, change set, etc.

But recently, our project moved to TFS 2010. And the BuildStore.asmx is deprecated. TFS 2010 offers a new object model to provide these info.

So, in order to minimize the code change, I want to know the counterparts in TFS2010. Thanks for any hints.

I found some info about the build API in TFS, such as:

http://blogs.msdn.com/b/buckh/archive/2006/09/14/getbuilduri-getbuilddetails.aspx

But they are mainly about TFS2008.

Upvotes: 2

Views: 164

Answers (2)

pantelif
pantelif

Reputation: 8544

You can make use of direct service-calls. The counterpart you re looking for should reside under "http://TfsName:Port/tfs/TeamCollectionName/Build/v3.0/BuildService.asmx".

Another, possibly far more efficient, approach is to write code against TFS-SDK, which should 'survive' from TFS-version to TFS-version. There are numerous resources out there regarding material, this article by S. Raiten seems to be a good jump-start.

Upvotes: 1

Related Questions