Adds support for command line batch files in Visual Studio 2015's Task Runner Explorer. Supports Add commandsThe easiest way to add a batch file to Task Runner Explorer is to right-click it in Solution Explorer and selectAdd to Task Runner You can right-click supported batch files in either solution folders or from within a any project. Doing so will create a If a Execute scriptsWhen scripts are specified, the Task Runner Explorer will show those scripts. Each script can be executed by double-clicking the task. commands.json locationsThe Task Runner Explorer supports multiple task runners in the same solution. For instance, you can have commands specified for the solution and additional ones for each project in that solution. Task Runner Explorer will try to find a CommandsInside commands.json it is possible to add custom scripts inside the "scripts" element. { "commands": { "Build": { "FileName": "cmd.exe", "WorkingDirectory": ".", "Arguments": "/c build\\build.cmd" } }} Commands with no batch fileYou can execute any command inside Drag and dropYou can drag any supported batch file onto BindingsScript bindings make it possible to associate individual scripts with Visual Studio events such as "After build" etc. IntellisenseIf you manually edit bindings in Open Command LineFor the optimal experience with batch file and Visual Studio, try the free Open Command Line extension for even more features. |