RunProcessAsTask icon indicating copy to clipboard operation
RunProcessAsTask copied to clipboard

Simple wrapper around System.Diagnostics.Process to expose it as a System.Threading.Tasks.Task

Results 4 RunProcessAsTask issues
Sort by recently updated
recently updated
newest added

* Only set cancellation source as cancelled when process had exit * After killing process, wait with a timeout for actual termination * If process termination failed, propagate the exception

Hello, Whilst it looks not obvious, and might be rarely the case, but when the result of `Process.Start` is false that does not mean that the process failed to start....

In my case i was to kick off an async process but after some time i sometimes need to stop it gracefully so it can clean up after itself. I...

Hello, I found three messages in Visual Studio saying following: **1) IDE0067 - Disposable object created by 'new Process {' is never disposed** in ProcessEx.cs ``` var process = new...