Composite DLL of custom controls

  • Thread starter Thread starter Seefor
  • Start date Start date
S

Seefor

Hi, I have a bunch of custom controls that I have written, all with designer
support, and all in their own seperate projects, with test applications too.
I'd like to create *one* DLL file which has all the controls inside. Is
this possible? How is it done?

TIA.
 
The most obvious way is to compile all the source files through a new
project. When you add existing files to a project you have the option of
"linking" to them which would allow you to keep the source files in separate
directories, enabling you to continue to be built each control into separate
assemblies, if necessary.
 
Back
Top