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

  • Thread starter Thread starter z. f.
  • Start date Start date
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?
 
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
 
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
 
Back
Top