5 writes to CreateExecutionCallback
Aspire.Cli.Tests (5)
Commands\DashboardRunCommandTests.cs (2)
389executionFactory.CreateExecutionCallback = (_, _, _, _) => 433executionFactory.CreateExecutionCallback = (_, _, _, options) =>
Commands\StopCommandTests.cs (1)
939processFactory.CreateExecutionCallback = (args, env, _, options) =>
DotNet\DotNetCliRunnerTests.cs (2)
1146CreateExecutionCallback = (args, env, _, _) => new ExitedProcessExecution(args, env, exitCode: 0) 1188CreateExecutionCallback = (args, env, _, _) => new ExitedProcessExecution(args, env, exitCode: 42)
2 references to CreateExecutionCallback
Aspire.Cli.Tests (2)
TestServices\TestProcessExecutionFactory.cs (2)
97if (CreateExecutionCallback is not null) 99var execution = CreateExecutionCallback(args, env, workingDirectory, options);