combine multiple dlls with same namespace into a single dll

  • Thread starter Thread starter sudhakar
  • Start date Start date
S

sudhakar

Hi
I have many dlls with same namespace (say X). I would like to combine them
and make it a single dll , called X.dll.
onw way to do this is by copying all the source code into a same project and
compiling them. but its a maintenance and extensibility nightmare.

Is there any other way to "merge" all these dlls into a single dll ?

Thanks in advance
-sudhakar
 
You could use CodeDOM or Reflection.Emit, also if you are doing this at
compile time, you may want to look at assembly linker (al.exe), when you
are using VS.Net this tool rarely gets used, but you can use it to
create multi-module assemblies, i.e. assemblies that consist of more
than one physical file. Let me know if you are doing this at runtime or
compile time, we'll try and work something out.

http://msdn.microsoft.com/library/d.../html/cpgrfAssemblyGenerationUtilityAlexe.asp

Sijin Joseph
http://www.indiangeek.net
http://weblogs.asp.net/sjoseph
 
Back
Top