Using a fresh install of VS 2015, I am having a bunch of issues with TFS. Checkin Policies are broken, and TF command line is broken.
For example, going to Developer Command Prompt for VS2015 and typing tf
causes a crash. It complains about not being able to access the Microsoft.TeamFoundation.Client.
Unhandled Exception: System.IO.FileNotFoundException: Could not load file or assembly 'Microsoft.TeamFoundation.Client, Version=14.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' or one of its dependencies. The system cannot find the file specified.
I believe that I understand that some of the needed dll's are not a part of the VS install, and are a nuget package.
[2]Where can I find Microsoft.TeamFoundation.Build.Client in Visual Studio 2015?
However installing the package via the command below does not fix access to tf.exe in the command line.
Install-Package Microsoft.TeamFoundationServer.ExtendedClient
This all works no problem if you upgrade from VS 2012/2013 because the dll's are in the correct/old location. Does anyone know how to fix this?