How Include all the dll's in the window form executable.

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

Dave

How to include all the necessary dll's in the window form
executable to run it on any machine? C++ had such feature.
Thanks
 
Dave,

Out of the box, .NET does not support static linking of assemblies.
However, there are third party products I believe which will do this for
you.

However, you still need the .NET framework installed on the machine to
run your executable.

Hope this helps.
 
Back
Top