I have two projects, ProjOne.exe and ProjTwo.exe. I want to build ProjOne.exe and it know that it\'s dependant on ProjTwo.exe so that it will copy ProjTwo.exe when it goes
Go to Project ProjTwo Properties -> Build Events --> Post-build event command line :
echo f | xcopy /y "$(TargetPath)" "$(SolutionDir)ProjOne\bin\Debug$(TargetFileName)"
When you build ProjTwo, then it copies ProjTwo.exe to Debug folder of ProjOne