I have applications A and B, both use dll D.
A, B and D are C ++ projects in version 2010.
A.sln and B.sln are decision files that create applications A and B.
Both A and B have a reference to dll D.
Expected places for applications and dll (subject to Debug creation):
A / Debug / A.exe
A / Debug / D.dll
B / Debug / b.exe
B / Debug / D.dll
Here comes the strange part: when I rebuild (or even clean up) solution B, it is somehow a remote A / Debug / D.dll file, although both applications are in no way connected.
Is there a way to instruct vs to only delete D.dll under B when rebuilding B?
source
share