C# Keeping DLLs with the associated library
Posted
by SimonN
on Stack Overflow
See other posts from Stack Overflow
or by SimonN
Published on 2010-06-12T14:22:53Z
Indexed on
2010/06/12
14:32 UTC
Read the original article
Hit count: 219
We have a library built on the back of eldos' Secure Black Box. We use copy local to ensure that the appropriate runtime DLLs are included.
If we now reference our library in another project with a copy local our library is copied into the bin folder of our main project but the Eldos SBB libraries aren't. We could reference SBB in the main project but there are no direct calls to SBB so any time the code is refactored the references may be removed as unused.
What is the best way of handling this issue?
Simon
© Stack Overflow or respective owner