I am using mono to run a C# app on Mac OS. When I use:
mono file.exe
I get:
Cannot open assembly 'file.exe': File does not contain a valid CIL image.
Does anyone know how to solve this?
This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.
file.exeis an executable that you created with the Mono compiler, and not an existing executable from Microsoft Visual Studio. The binaries are not guaranteed to be cross-compatible with each other. – Robert Harvey♦ Nov 20 '12 at 1:02