3 references to RunAsync
dotnet-svcutil-lib (1)
Shared\Utilities\ProcessRunner.cs (1)
50
return await
RunAsync
(processName, processArgs, currentDir, redirectOutput, throwOnError, emptyVars, logger, cancellationToken).ConfigureAwait(false);
dotnet-svcutil-lib.Tests (2)
ProjectUtils.cs (2)
95
result = ProcessRunner.
RunAsync
("dotnet-svcutil", options, project.DirectoryPath, redirectOutput: true, throwOnError: false, environmentVariables: envVars, logger: logger, cancellationToken: CancellationToken.None).Result;
156
result = ProcessRunner.
RunAsync
("dotnet", $"run", project.DirectoryPath, redirectOutput: true, throwOnError: false, environmentVariables: envVars, logger: logger, cancellationToken: CancellationToken.None).Result;