how to assemble into one assembly

  • Thread starter Thread starter nick
  • Start date Start date
N

nick

I have made a usercontrol "con1" that works are a container for three
usercontrols "sub1" "sub2" and "sub3". The three subcontrols are all created
in one project, thus producing one dll. The usercontrol "con1" also creates
a dll. For me to use the final product I need to set references to both
dll's to be able to use the control. Is there a way to set it up, so only
one dll needs to be distributed?

As you can see from above I have not yet got my head around the .NET
terminology with assemblies and appdomains. I still live in the dll world
but trying to get away.

Any pointers in the right direction would be appreciated.
 
Assembly Linker (al.exe) is used to combine two or more assemblies to one
executable

Arun
 
Back
Top