vote up 0 vote down star

I'm writing a hook for Git that will let me select workitems from TFS 2008 and inject them into the commit message from Git.

I've already written a stub so that I can develop my functionality without referencing TFS 2008. However, when creating the real thing, how do I get a copy of the desired Team Foundation assemblies on my local computer?

  1. I don't want to install TFS 2008 because this is overkill (besides, I like my projects to build in a continuous integration cycle. Bit hard to install TFS on a buildcomputer ;-)
  2. There is a TFS 2005 SDK which installs a copy of the assemblies. However, this is only for 2005. There is no SDK for TFS 2008 yet (see following post van Brian Harry).

The only option I see is manually copying the assemblies from a TFS 2008 instance and trying to reference them.

Is there an alternative that I'm simply not seeing?

Thanks for the webservices answer, but the TFS webservices are undocumented and Microsoft is recommending to use the .NET API instead of the webservices. The API is supposed to be stable - the webservices are liable to change.

flag

80% accept rate

2 Answers

vote up 0 vote down

You could talk to TFS via web services, that would remove the need for the TFS assemblies.

link|flag
Except for the fact webservices are undocumented and Microsoft itself is saying that you shouldn't use them directly... – Sardaukar Sep 23 at 9:14
vote up 1 vote down check

Found it. Install the Microsoft Visual Studio 2008 SDK. You will find the assemblies in Program Files\Microsoft Visual Studio 2008 SDK\VisualStudioIntegration\Common\Assemblies.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.