when I add this file (cvextern.dll) to reference or I use the command csc from cmd .. I get this error

fatal error CS0009: Metadata file "file_path" could not be opened -- 'An attempt was made to load a program with an incorrect format. '

why is that happen? How can I solve it?

thank you all

link|improve this question

33% accept rate
You are trying to add a .NET reference with an unmanaged DLL. That cannot work, it doesn't contain .NET metadata. Just don't. – Hans Passant Aug 16 '11 at 13:02
ok, how can I solve it? – Omar Osama Aug 16 '11 at 14:23
feedback

1 Answer

The comment by Hans Passant is correct. The file cvextern.dll when using EMGU should either be copied into your output folder where your program is running or added to your project as an existing item. Then select the item in solution explorer and change its properties in the properties panel "Copy to Output Directory" to CopyAlways. See http://www.emgu.com/wiki/index.php/Download_And_Installation for more information on proper use of the files.

Cheers Chris

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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