I have a VS (2008) solution consisting of several projects, not all in the same namespace. When I build the solution, all the dlls used by the top level project TopProject are copied into the TopProject\bin\debug folder. However, the corresponding .pdb files are only copied for some of the other projects. This is a pain, for example when using NDepend.
How does VS decide which .pdb files to copy into higher level bin\debug folders? How can I get VS to copy the others too?
Edit:
References are as follows: all the dlls are copied to a central location, without their pdbs. TopProject only has references to these copied dlls; the dlls themselves, however, evidently know where their pdbs are, and (most of them) get copied to the debug folder correctly.
