1 instantiation of ProcessResult
Aspire.Cli.Tests (1)
Agents\TelemetryHookScriptTests.cs (1)
545
return new
ProcessResult
(process.ExitCode, stdout, stderr);
4 references to ProcessResult
Aspire.Cli.Tests (4)
Agents\TelemetryHookScriptTests.cs (4)
385
var
result = RunProcess("bash", [scripts.ShellScriptPath], payload, BuildEnvironment(recorderPath, capturePath, extraEnv));
398
var
result = RunProcess("pwsh", ["-NoProfile", "-ExecutionPolicy", "Bypass", "-File", scripts.PowerShellScriptPath], payload, BuildEnvironment(recorderPath, capturePath, extraEnv));
478
private static
ProcessResult
RunProcess(string fileName, IReadOnlyList<string> arguments, string stdinPayload, Dictionary<string, string?> environment)
548
private sealed record HookRun(
ProcessResult
Result, string[]? CapturedArgs);