Copy exe from one project to another's debug output directory

Viewed 5664

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 to build ProjOne.exe.

I also have a ProjThree.dll that it already does that for perfectly. But this in only because the dll is referenced by ProjOne.

Any way to do this like it does with DLLs/OCXs? Or is this going to be some POST build scripting? :) If so please give examples of the script I would use.

Thanks!

2 Answers
Related