Stacker
Stacker

Reputation: 8237

Where can i find Microsoft.TeamFoundation.Controls.dll for TFS 2015

I`m building an extension for Visual Studio Team Explorer and a line of code like this:

ITeamExplorer teamExplorer = GetService<ITeamExplorer>();

needs a reference to Microsoft.TeamFoundation.Controls.dll

which i couldn't find any where in TFS2015

Upvotes: 2

Views: 3245

Answers (3)

John
John

Reputation: 278

I have VS 2015 Pro installed. Found it at

**C:\Program Files (x86)\Microsoft Visual Studio 14.0\Common7\IDE\CommonExtensions\Microsoft\TeamFoundation\Team Explorer**Microsoft.TeamFoundation.Controls.dll

Upvotes: 3

deadlydog
deadlydog

Reputation: 24434

If you have Visual Studio 2015 installed you should be able to find it at C:\Program Files\Common Files\microsoft shared\Team Foundation Server\14.0\Microsoft.TeamFoundation.Controls.dll; at least, that's where it is on my machine.

Also, I'm not sure if it's required, but I also have the Visual Studio Extensibility Tools installed, which is one of the optional items listed during the installation of Visual Studio 2015.

Upvotes: 2

PatrickLu-MSFT
PatrickLu-MSFT

Reputation: 51183

You can search and find it under this path:C:\Program Files (x86)\Microsoft Visual Studio 14.0\Common7\IDE\Extensions

I found it under C:\Program Files (x86)\Microsoft Visual Studio 14.0\Common7\IDE\Extensions\mcjvkcdg.wd1 on my dev machine.

Upvotes: 1

Related Questions