I have a VS2010 solution with four projects in it.
I have a semi-complex command line that I want to run which uses Visual Studio build event macros.
This command line is currently in the post-build
event of each project - however the command line is identical in each project, and I'd like to try to keep things DRY.
Is there a way to eliminate the repetition here, somehow setting up my command line, with macros, as a task somewhere and just call that task for each project?