Compile Multiple DLLs into a single DLL

  • Thread starter Thread starter Dave Herron
  • Start date Start date
D

Dave Herron

I have several C# DLL's that I would like to compile into a single DLL
for distribution. Is that possible? I want to leave the source for
all the DLL's in their original projects. 3rd party product maybe?
 
Dave,
I have several C# DLL's that I would like to compile into a single DLL
for distribution. Is that possible? I want to leave the source for
all the DLL's in their original projects.

You could still create a separate project that includes all the source
files and compiles to a single assembly, no?

3rd party product maybe?

Sure, google "illink" or "ilmerge" for some free utilities.


Mattias
 
I have several C# DLL's that I would like to compile into a single DLL
for distribution. Is that possible? I want to leave the source for
all the DLL's in their original projects. 3rd party product maybe?

Take a look at Microsoft's ILMerge
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top