Statically link DLLs (or references in general)

  • Thread starter Thread starter Jeff Stewart
  • Start date Start date
J

Jeff Stewart

Is it possible, in VB.NET 2003 Standard, to link referenced DLLs statically,
so I only have to distribute a single executable?
 
Jeff Stewart said:
Is it possible, in VB.NET 2003 Standard, to link referenced DLLs statically,
so I only have to distribute a single executable?

No, and its not planned for 2005 either.

LFS
 
Jeff Stewart said:
Is it possible, in VB.NET 2003 Standard, to link referenced
DLLs statically, so I only have to distribute a single executable?

All you can do is linking class libraries into the EXE files using tools
like ILMerge or ILLink, but this makes sense only in rare cases, and the
application will still rely on the .NET Framework.
 

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