user3531831
user3531831

Reputation:

Could not load file or assembly 'EntityFramework' or one of its dependencies. Strong name signature could not be verified

enter image description here

Could not load file or assembly 'EntityFramework' or one of its dependencies. Strong name signature could not be verified. The assembly may have been tampered with, or it was delay signed but not fully signed with the correct private key. (Exception from HRESULT: 0x80131045)

Upvotes: 1

Views: 3449

Answers (2)

Orange Apartments
Orange Apartments

Reputation: 31

I had same issue with localhost debug - Clean/Rebuild doesnt helped After some research i found and copied required framework file to path - Problem solved

Please check your path in error message C:\Users\Admin\AppData\Local\Temp\Temporary ASP.NET Files\vs\0a4baecb\876745ee

Copy Paste file EntityFramework.DLL And make it readonly!

DONE

Upvotes: 0

Totodile
Totodile

Reputation: 150

Try deleting the EntityFramework* references from your solution and then reinstalling Entity Framework into your solution using the Nuget package manager.

Upvotes: 2

Related Questions