Does anyone know how to configure a project or solution build to conditionally pick up specific copies of DLLs maintianed in other solutions
I'm referencing several DLLs which are built in other solutions as class libraries. When I build in DEBUG configuration mode, I want to pick up the debug copies of the DLLs. When I build in RELEASE mode I want to pick up the release copies.
I'm using VS2005 C#. All my solutions maintain built projects in the standard VS paths.
Example
..\MyProject\bin\Debug
..\MyProject\bin\Release
I appreciate any advice or pointers. Thanks.