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

1

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)

c#
.net
entity-framework
asked on Stack Overflow Jan 3, 2016 by (unknown user) • edited Jan 3, 2016 by Alex Jolig

2 Answers

2

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

answered on Stack Overflow Jan 3, 2016 by Totodile • edited Jan 3, 2016 by John Hodge
0

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

answered on Stack Overflow Apr 4, 2017 by Orange Apartments

User contributions licensed under CC BY-SA 3.0