Deployment question

  • Thread starter Thread starter Lee
  • Start date Start date
L

Lee

Just curious if VS links everything into a single exe which will run on
any machine that has .net runtime on it? Assuming any misc dll's are
shipped as needed, but I'm referring to a simple Hello Word app.

What about 3rd paty components? Are they linked into the exe or will
we have to ship some kind of runtime as we did with VB classic (OCX's,
etc)?

Thanks,

--
Warm Regards,

Lee

"Please hold while the Nextel subcriber you are trying to reach is not
located"
 
Third Party control libraries in .NET are normally separate assemblies
(dll).
 
news.microsoft.com wrote the following:
Third Party control libraries in .NET are normally separate
assemblies (dll).

Thanks for the answer Francisco. I remember having to distribute
various OCX's, ActiveXDLL's with VB classic. It was kind of a pain.

Any similar experiences with .net runtimes and/or 3rd party assemblies?

--
Warm Regards,

Lee

"Please hold while the Nextel subcriber you are trying to reach is not
located"
 
One part that is better is not having to register them with regsvr32 or the
installer.

Another is that side by side deployment of different versions in each app
folder is supported.
 
Just my opinion, but deployment / installation is much improved from the
Studio6 processes. There are things that could be improved, but our release
structure has become much easier comparing .NET apps to Studio6 apps.

SwamiDave
 
Back
Top