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