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
I have a small toy project where I am building several projects in parallel. If the first build fails I want to cancel all other pending builds - is there a possibility to cancel a build?
Thanks!
The text was updated successfully, but these errors were encountered:
Unfortunately there isn't a great way to do this right now (at least not that I can think of - happy for suggestions here!). Because Buildalyzer "shells out" to MSBuild we've got very limited control over the forked process. We could always try to kill it, but that's really ungraceful (though maybe that's actually what we need to do). There's also a chance that sending something like a Ctrl+C combination over standard input could do the trick.
I can give this a little thought, but may not get around to an implementation for a while.
First of all, thanks for the nice library.
I have a small toy project where I am building several projects in parallel. If the first build fails I want to cancel all other pending builds - is there a possibility to cancel a build?
Thanks!
The text was updated successfully, but these errors were encountered: