Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I download Microsoft.TeamFoundation.Framework.Common.dll

I am building an app in Visual Studio 2015 to allow people to see the changesets of a TFS server.

I found some an example code, however it requires a reference to Microsoft.TeamFoundation.Framework.Common.dll, but I couldn't find the DLL in the Reference Manager.

I have also searched the server which has TFS2015 installed, and I couldn't find there either.

Does anybody know where to find the dll?

like image 636
user819774 Avatar asked Apr 06 '16 14:04

user819774


1 Answers

This might be installed in your local development machine. If so then the dll (Microsoft.TeamFoundation.Common.dll) can be referenced by browsing for it.

Another solution is to install the Nuget package Microsoft.TeamFoundation.Client. Once installed, it will be ready to use for every project this package has been installed for.

Note: Be sure to check-in your packages folder if using version control.

Namespace: Microsoft.TeamFoundation.Framework.Common

Assembly: Microsoft.TeamFoundation.Common (in Microsoft.TeamFoundation.Common.dll)

Source : https://msdn.microsoft.com/en-us/library/microsoft.teamfoundation.framework.common.configfileexception(v=vs.120).aspx

like image 145
PatrickLu-MSFT Avatar answered Nov 15 '22 08:11

PatrickLu-MSFT