Unable to load DLL 'Microsoft.WITDataStore32.dll':The specified module could not be found.(Exception from HRESULT:0x8007007E)

0

I am getting error while debugging the Unit test cased in Visual Studio 2017 Professional edition.

Unable to load DLL 'Microsoft.WITDataStore32.dll':The specified module could not be found.(Exception from HRESULT:0x8007007E)

The below Nuget reference is missing in the existing code:

package id="nuget-bot.Microsoft.TeamFoundation.WorkItemTracking.Client.DataStoreLoader" version="15.0.31101" targetFramework="net452" />

As a workaround, I have followed the below step:

Commented the above nuget-bot reference from package.config file and managing the Nuget package from the VS solution. I am using the Microsoft.TeamFoundationServer.ExtendedClient.15.112.1 in the solution.

But the issue is still occurring

c#
asked on Stack Overflow Jun 21, 2020 by Hema • edited Jun 21, 2020 by James Z

1 Answer

0

The error is telling you to use version 15.0.31101 and you're using 15.112.1. Try using the exact version.

answered on Stack Overflow Jun 21, 2020 by Lucas Charbonnier

User contributions licensed under CC BY-SA 3.0