On 4/28/05, Jurek Bartuszek <[EMAIL PROTECTED]> wrote: > > Try putting dodaj.dll in the same directory as your exe. > > [EMAIL PROTECTED] asm $ ls > dodaj.asm dodaj.dll dodaj.o main.cs > > [EMAIL PROTECTED] asm $ mcs -target:exe -o main.exe -r "dodaj.dll" main.cs > error CS0006: Cannot find assembly `dodaj.dll' > Log: > > Compilation failed: 1 error(s), 0 warnings
How did you compile asm->dll? The file needs to be in the ELF format, linked as a shared library. Specifically using dll from Windows won't work. -- Michal Moskal, http://nemerle.org/~malekith/ _______________________________________________ Mono-list maillist - [email protected] http://lists.ximian.com/mailman/listinfo/mono-list
