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