Files
git.stella-ops.org/src/__Libraries/StellaOps.Interop/IToolProcessRunner.cs

15 lines
297 B
C#

using System.Threading;
using System.Threading.Tasks;
namespace StellaOps.Interop;
public interface IToolProcessRunner
{
Task<ToolResult> RunAsync(
string tool,
string toolPath,
string args,
string workingDirectory,
CancellationToken ct = default);
}