I am writing a Windows batch script in order to automate the process of launching Visual Studio 2008, building and compiling the solution file, so that instead of manually launching VS2008 and then pressing F5, I can just run my batch file (or perhaps call it).
However, the command below doesn't seem to do the job:
devenv /build debug "C:\Program Files\MobileRobots\Aria\examples\myProg.sln"
Can someone please guide me through writing this batch file?
Thank you,