user2454489
user2454489

Reputation: 43

Where can I get TFS SDK?

I use VS2013.

I'm finding Microsoft.TeamFoundation.Git.Client.dll and The GitHttpClient resides in Microsoft.TeamFoundation.SourceControl.WebApi.dll . I can not find them from GAC.

I think that they may be in TFS SDK. But I can only find "Microsoft Visual Studio Team Foundation Server 2012 Software Development Kit for Java" :http://www.microsoft.com/en-us/download/details.aspx?id=22616.

Where can I get TFS SDK?

Upvotes: 3

Views: 10007

Answers (4)

J. Beattie
J. Beattie

Reputation: 183

The most recent version now appears to be available at https://github.com/microsoft/team-explorer-everywhere/releases/tag/14.135.0.

Upvotes: 0

Buck Hodges
Buck Hodges

Reputation: 3352

We now have NuGet packages for the .NET client libraries: .NET client libraries for Visual Studio Online (and TFS)

For the current Java SDK, it's part of the download for Team Explorer Everywhere 2015.

Upvotes: 3

Eric Johnson
Eric Johnson

Reputation: 1377

Regarding Microsoft.TeamFoundation.Git.Client.dll per MSDN :

You can find the assemblies in the client object model in Program Files\Microsoft Visual Studio 12.0\Common7\IDE under ReferenceAssemblies\v2.0, ReferenceAssemblies\v4.5, and PrivateAssemblies.

I found that assembly in the PrivateAssemblies directory.

Regarding Microsoft.TeamFoundation.SourceControl.WebApi.dll per same page on MSDN:

You can find the assemblies in the server object model in Program Files\Microsoft Team Foundation Server 12 under Tools and Application Tier\Web Services\bin.

That assembly is located in the bin folder of the Team Foundation Server. I also found that assembly in my GAC (although I'm not sure when it was installed).

Upvotes: 2

Hamid Shahid
Hamid Shahid

Reputation: 4616

If you install Visual Studio 2013 Team Explorer, you will get the desired files.

http://www.microsoft.com/en-gb/download/details.aspx?id=40776

Upvotes: 1

Related Questions