Click to See Complete Forum and Search --> : Linking several .net modules to one .dll


VizOne
March 25th, 2003, 06:14 AM
Hi!

(I hope this is the correct forum for this question)


I have a bunch of .net modules, written in different languages (managed c++ and c#). Now I'd like to link them all together into one .dll. I tried using al.exe, but this tool only generates an assembly manifest, that refers to the external modules rather than embeds them into the dll.

Then I tried this: I disassembled all modules with ildasm and then tried to re-assembly the .il files with ilasm into one final .dll. Hower this does not work, as my modules contain native functions.

What can I do?

Thanks in advance

- Andre