How to download Microsoft.TeamFoundation.Framework.Common.dll file

I am building an application in Visual Studio 2015 so that people can see the TFS server change sets.

I found some sample code, however, this requires a link to Microsoft.TeamFoundation.Framework.Common.dll, but I could not find the DLL in the link manager.

I also searched for the server where TFS2015 is installed, and I also could not find it.

Does anyone know where to find the dll?

+5
source share
1 answer

This can be installed on your local development machine. If so, the dll (Microsoft.TeamFoundation.Common.dll) can be found by looking for it.

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

Note. Be sure to go to your packages folder if using version control.

Namespace: Microsoft.TeamFoundation.Framework.Common

Build: 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

+3
source

Source: https://habr.com/ru/post/1246565/


All Articles