TFS 2015 SDK Missing Microsoft.WITDataStore64.dll

后端 未结 4 1083
长发绾君心
长发绾君心 2020-12-10 13:04

I am attempting to switch to the TFS 2015 SDK dlls (Version 14) for a few reasons. First, they are in nuget and second, the 2013 SDK dlls (Version 12) require the 32-bit fla

相关标签:
4条回答
  • 2020-12-10 13:16

    Copy file Microsoft.WITDataStore64.dll in folder C:\Windows\System32

    0 讨论(0)
  • 2020-12-10 13:23

    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

    0 讨论(0)
  • 2020-12-10 13:26

    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.

    0 讨论(0)
  • 2020-12-10 13:39

    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).

    0 讨论(0)
提交回复
热议问题