0

I keep getting this error:

Could not load file or assembly 'Facebook, Version=5.4.1.0, Culture=neutral, PublicKeyToken=58cb4f2111d1e6de' or one of its dependencies. The located assembly's manifest definition does not match the assembly reference. (Exception from HRESULT: 0x80131040)

Can anyone help me?

Chris Kolenko
  • 1,020
  • 17
  • 32
  • check your project's `.NET Framework` version and the version of Facebook binary it was build with. – Tigran Jan 22 '12 at 12:11

1 Answers1

0

I faced a similar problem once when there were two different assembly versions available and when the assemblies were copied across projects with some inconsistently set assembly references. The versions got mixed up and the error appeared.

But take a look a this and links provided there, it should give you some suggestions or ideas: The located assembly's manifest definition does not match the assembly reference

Community
  • 1
  • 1
doblak
  • 3,036
  • 1
  • 27
  • 22
  • Thanks. I feel really stupid. I had a reference to an old version inside another project which it shouldn't have been there. – Chris Kolenko Jan 23 '12 at 03:09