Compiling for a standalone app

T

TGF

Hello,

How do you build a *.exe app without having to depend on other dll's such as
'mscoree.dll', etc... I have an application I want to build, but I want to
make sure that any needed dll's are compiled into the *.exe file itself.
 
D

David Lowndes

How do you build a *.exe app without having to depend on other dll's such as
'mscoree.dll', etc.

For a .Net application you can't.

You could create a Win32 or MFC application and elect to statically
link the run-time libraries,

Dave
 
G

Guest

How do you build a *.exe app without having to depend on other dll's such
as
'mscoree.dll', etc... I have an application I want to build, but I want to
make sure that any needed dll's are compiled into the *.exe file itself.
If you use any "managed" code or activate the compiler directive then you
need mscoree.dll since that is part of the managed code (aka .NET code)
But you can compile conventional .exe code too, just disable any compiler
directive that expects managed code and do not use .NET specific dll's or
lib files.

..
 

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

Top