Mladen Mihajlovic
Mladen Mihajlovic

Reputation: 6435

Can't find VS2015 TeamFoundationServerExt on nuget

I've referenced the latest Microsoft Team Foundation nuget packages found at https://www.visualstudio.com/integrate/get-started/client-libraries/dotnet but I cannot find a reference anywhere for TeamFoundationServerExt. Does anybody know if these have been moved to a nuget package too? If not where can I reference from (I was hoping not to use direct paths to Visual Studio 2015)?

Upvotes: 0

Views: 496

Answers (2)

Steven Evans
Steven Evans

Reputation: 21

I am using the nuget package Microsoft.TeamFoundation.ObjectModel I does have the down side of only being for .net 4.5

Upvotes: 0

jessehouwing
jessehouwing

Reputation: 114651

You're looking for:

https://www.nuget.org/packages/Microsoft.TeamFoundationServer.ExtendedClient/

 PM> Install-Package Microsoft.TeamFoundationServer.ExtendedClient

I'm not sure which Assembly you're looking for, Microsoft has never shipped a TeamFoundationServerExt assembly, all the functionality you need is broken into one of the at least 20 assemblies added to your project when referencing this package.

There is a class TeamfoundationServerExt, which is part of the assembly Microsoft.VisualStudio.TeamFoundation, that one is part of the Visual Studio SDK and/or full Visual Studio installation and is not available as a redistributable Nuget package as far as I am aware of.

Upvotes: 2

Related Questions