I’m looking for some resources on build automation with VS2005 (VS2008 soon). I’d like to do things like delete all my files in my output folder, move all my build output to one folder, etc. I think this stuff is pretty basic but I don’t know where to get started.
Thanks!
You can look at the Post Build Event in your project (right-click, select Properties). This will allow you to execute anything you could type in the command line, so you can either write it all there or create a small command line utility to take care of it for you.