TFS 2015 SDK Missing Microsoft.WITDataStore64.dll

久未见 提交于 2019-11-28 12:02:16

None of the above worked for me. I had to copy that file to my C:\Program Files (x86)\Microsoft Visual Studio 14.0\Common7\IDE folder (found this out by using procmon to see where my app was looking for it).

I had to add the dll to the startup-project of my solution to get this to work. example:

MyTFSApp (windows client) nuget package Microsoft.TeamFoundationServer.ExtendedClient installed or Microsoft.WITDataStore32.dll added to the bin folder

MyTfsLibrary (class library with code accessing WorkItemStore) nuget package Microsoft.TeamFoundationServer.ExtendedClient installed

Try copying those Dlls from the GAC into your local bin. Nuget packages are usually create references to the bin, so if your program is looking there instead of the GAC that could be why it is throwing the error.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!