I get the following error:

System.IO.FileLoadException: The located assembly's manifest definition does not match the assembly reference. (Exception from HRESULT: 0x80131040)

It do not give me any hint of which file it's complaining about. How can I find the assembly that it complains about?

(Yes, there are other questions about the same exception here at SO, but they do not answer my question)

link|improve this question

feedback

1 Answer

up vote 3 down vote accepted

Most likely cause is the application is loading a different version of the assembly from somewhere you are not expecting.

There are a few ways to find out where assembly is loaded from. Best one is to use Sysinternal's ProcessMonitor to see which file it is loading before the error happens.

link|improve this answer
I've monitored with ProcessMonitor, but no Load Image seems to be off. – jgauffin May 6 '11 at 10:37
Can you please put the full error stack? – Aliostad May 6 '11 at 10:51
+1 giving me a clue on how to find the error – jgauffin May 10 '11 at 10:27
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.