beginner quest is reference compiled into app dll

M

mp

If I create a dll (myapp)
and myapp project has a reference to another dll on my system (C:\path to
\some.dll)
when I build myapp.dll does it contain everything it needed from the
referenced dll?
so if i copy my dll to someone elses machine i don't have to recreate the
referenced files and paths on the target machine?
should i be able to just copy my one dll to the target machine and it will
run?
thanks
mark
 
A

Armin Zingler

Am 11.07.2010 23:14, schrieb mp:
If I create a dll (myapp)
and myapp project has a reference to another dll on my system (C:\path to
\some.dll)
when I build myapp.dll does it contain everything it needed from the
referenced dll?
so if i copy my dll to someone elses machine i don't have to recreate the
referenced files and paths on the target machine?
should i be able to just copy my one dll to the target machine and it will
run?

No, you need them all. dll = dynamic link library <> static linking
 
M

mp

Armin Zingler said:
Am 11.07.2010 23:14, schrieb mp:

No, you need them all. dll = dynamic link library <> static linking

does the path to the reference have to be the same as what is referenced in
the project?
or can i just copy the dlls into the same folder and the app.dll will find
the ref.dll?
thanks
mark
 

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