5 writes to CreateExecutionCallback
Aspire.Cli.Tests (5)
Commands\DashboardRunCommandTests.cs (2)
361executionFactory.CreateExecutionCallback = (_, _, _, _) => 405executionFactory.CreateExecutionCallback = (_, _, _, options) =>
Commands\StopCommandTests.cs (1)
939processFactory.CreateExecutionCallback = (args, env, _, options) =>
DotNet\DotNetCliRunnerTests.cs (2)
1096CreateExecutionCallback = (args, env, _, _) => new ExitedProcessExecution(args, env, exitCode: 0) 1138CreateExecutionCallback = (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);