I\'m trying to get my commit-build.bat to execute other .BAT files as part of our build process.
commit-build.bat
Content of commit-build.bat:
Start msbuild.bat Start unit-tests.bat Start deploy.bat
If that doesn't work, replace start with call or try this:
start
call
Start msbuild.bat Goto :1 :1 Start unit-tests.bat Goto :2 :2 Start deploy.bat