vote up 1 vote down star

I wrote a dll in VS 2005 that will be loaded by another program that was developed in VS 2003. When that program tries to load my dll, it throws a System.BadImageFormatException: The format of the file 'Foo.dll' is invalid.

I searched SO and Google, and it seems that the different version of .NET is the culprit. My question is: How do I fix this?

(I cannot modify the program developed in VS 2003.)

flag
This link was also helpful: devlicio.us/blogs/ziemowit_skowronski/… – joshdick May 7 at 14:14

2 Answers

vote up 1 vote down check

Compile the VS2005 Project with the same .Net Version as your VS2003 Project uses. Or, depending of the size of your VS2003 Project, reflector and rewrite it. That's common practice for projects over here, where for some obscure reason there is no more VSS version available.

link|flag
"Compile the VS2005 Project with the same .Net Version as your VS2003 Project uses." Can you please explain how to do that? I don't see how to choose the .NET version of my project. – joshdick May 5 at 19:31
Rightclick your Project in VS, on the very first tab you can select the targetframework. – Markus Nigbur May 5 at 20:29
Thank you, Markus. Although that didn't work in VS 2005, it did work in the 2008 version. I appreciate your help. – joshdick May 7 at 12:40
vote up 1 vote down

I got this error when I was running the 64bit version of the CLR and trying to load an assembly that was marked 32bit only. The specific assembly in my case was the Oracle.DataAccess.dll that comes as part of ODP.NET.

link|flag
I am getting the same error too (with a different assembly), do you have any solution for that? – Marek Oct 27 at 11:27
You need to just make sure you run the 32bit CLR when loading 32bit only assemblies – John Downey Oct 28 at 9:06

Your Answer

Get an OpenID
or

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