You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
Much like
npm-run-all
we should be able to do something likedotnet 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
ordotnet r unittest e2etest --parallel
.Tasks
The text was updated successfully, but these errors were encountered: