In Visual Studio, using External Tools, is it possible to have a tool set up to execute multiple .bat files?
I have two .bat files in my project directory and I currently have a tool for each of them set up, so I go up to Tools and select each one. I was trying to find a way to run both .bat files at once without creating a third .bat file just to call those .bat files.
Each one individual has the Command pointed to the cmd.exe, and their Arguments as /C filename.bat
Is there a way to pass in both of the .bat files to have them run sequentially (or in parallel, I'm not picky) or will I need to create a third .bat file to point to each of them?