First off, never assume anything. Clean the solution, rebuild it in debug mode, and check to see if all pdb files are created. If not, that's your problem.
If they are created, and they're not all getting copied, you can get around this by creating a post build event that manually copies the pdb files to the desired locations. This is just a workaround, of course.
The only other thing I can think of is that your solution file has become corrupt. You can open your .sln as an xml file and examine the contents. Check the configuration for the projects that are acting as expected and compare them to those that aren't. If you don't see anything, you have to repeat this at the project level. Compare working .csproj (or whatever) project files and the non-working ones.
Edit in response to edit:
If you're just manually copying stuff around, then manually copy the pdbs as well. Dll's shouldn't "know" anything about pdbs, I believe. Just stick 'em in the destination directory and go have a cup of coffee. Relax.
