reference from console project to web project dll creates a copy of the DLL.

Z

z. f.

when i reference my web DLL form a Console application, the VIsual Studio
makes a copy of the Web DLL (that i referenced) in the bin directory of the
Console project.
what happend if i make changes to the web DLL?
will it not reference the correct location - just a copy?
 
N

Nick Malik

This is correct and expected behavior

When you make a reference to a dll, it is copied to the directory of the
executable by Visual Studio.
If you make a change to your web DLL, just recompile your console app.

This gets you out of dll hell.

What's the concern?

--- Nick
 
Z

z. f.

this is hell.



Nick Malik said:
This is correct and expected behavior

When you make a reference to a dll, it is copied to the directory of the
executable by Visual Studio.
If you make a change to your web DLL, just recompile your console app.

This gets you out of dll hell.

What's the concern?

--- Nick
 

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