Project fails to copy latest built dll into start-up project's folder

I have several projects in a solution. After I build the project, it fails to update the start-up project's copy. If I look in the bin\debug folder for the project, it looks up-to-date. However, the start-up project's copy of the dll is old. If I copy the dll's to the start-up project's bin\debug, it works correctly.

When I examine the References in the start-up project, it is looking in the correct place.

Any clues on how to make it copy the latest build dll into the start-up project?

Thanks!

[508 byte] By [dotDavid] at [2007-12-16]
# 1
Do you have a reference to your "other" projects in your start-up project? (Not binaries but Project References)

VS only copies binaries of referenced projects.

VijayeRaji at 2007-9-8 > top of Msdn Tech,Visual C#,Visual C# General...
# 2

You should try readding the references to the DLLs (Right click project -> Add Reference). Another thing to look at is the "Reference Paths" in the project properties to make sure they are all pointing to the correct folders. I have run into similar problems before. Best of luck!

MishkinFaustini at 2007-9-8 > top of Msdn Tech,Visual C#,Visual C# General...