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