dotnet-run-script icon indicating copy to clipboard operation
dotnet-run-script copied to clipboard

Support multiple scripts, wildcard names, and parallel execution

Open xt0rted opened this issue 3 years ago • 0 comments

Much like npm-run-all we should be able to do something like dotnet r *:build --parallel and have all scripts ending with :build run in parallel. Leaving off the --parallel option should run them sequentially.

The wildcard matching should work anywhere in the script name, not just at the start/end. It should also be optional and specifying a list of script names should also work such as dotnet r clean build test or dotnet r unittest e2etest --parallel.

Tasks

  • [x] Multiple script execution (#10)
  • [x] Wildcard name support (#79)
  • [ ] Parallel script execution

xt0rted avatar Mar 23 '22 23:03 xt0rted