How to copy referenced assembly's dependecies to ASP.NET output bin folder?
Posted
by LD2008
on Stack Overflow
See other posts from Stack Overflow
or by LD2008
Published on 2010-06-06T23:44:29Z
Indexed on
2010/06/06
23:52 UTC
Read the original article
Hit count: 226
Hi all,
In Visual Studio 2010, I have project A (asp.net application). Project A references project B (class library). Project B references assembly C (direct reference to a DLL).
When building project A, only project A and project B binaries are present in the /bin directory of project A, but not the assembly C. Why is that? If project B depends on assembly C, why is assembly C not copied together to the output folder?
"Copy local" is already set to "true" for assembly C.
Any information would be appreciated. Thanks!
© Stack Overflow or respective owner