Hema
Hema

Reputation: 1

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

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

Upvotes: 0

Views: 503

Answers (1)

Lucas Charbonnier
Lucas Charbonnier

Reputation: 461

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

Upvotes: 0

Related Questions