3 writes to NewProjectAsyncCallback
Aspire.Cli.Tests (3)
Commands\InitCommandTests.cs (1)
66runner.NewProjectAsyncCallback = (templateName, projectName, outputPath, invocationOptions, cancellationToken) =>
Commands\NewCommandTests.cs (2)
431runner.NewProjectAsyncCallback = (templateName, name, outputPath, options, cancellationToken) => 484runner.NewProjectAsyncCallback = (templateName, name, outputPath, options, cancellationToken) =>
2 references to NewProjectAsyncCallback
Aspire.Cli.Tests (2)
TestServices\TestDotNetCliRunner.cs (2)
98return NewProjectAsyncCallback != null 99? Task.FromResult(NewProjectAsyncCallback(templateName, name, outputPath, options, cancellationToken))