4 writes to ExtensionAppHostLaunchCompletedAsync
aspire (2)
DotNet\DotNetCliRunner.cs (1)
173ExtensionAppHostLaunchCompletedAsync = ExtensionAppHostLaunchCompletedAsync,
Projects\DotNetAppHostProject.cs (1)
1557ExtensionAppHostLaunchCompletedAsync = deferBuildCompletion
Aspire.Cli.Tests (2)
DotNet\DotNetCliRunnerTests.cs (1)
1065ExtensionAppHostLaunchCompletedAsync = () =>
DotNet\ProcessInvocationOptionsTests.cs (1)
38ExtensionAppHostLaunchCompletedAsync = () => Task.CompletedTask,
8 references to ExtensionAppHostLaunchCompletedAsync
aspire (3)
DotNet\DotNetCliRunner.cs (3)
173ExtensionAppHostLaunchCompletedAsync = ExtensionAppHostLaunchCompletedAsync, 282if (options.ExtensionAppHostLaunchCompletedAsync is not null) 284await options.ExtensionAppHostLaunchCompletedAsync().ConfigureAwait(false);
Aspire.Cli.Tests (5)
Projects\DotNetAppHostProjectTests.cs (3)
2250Assert.NotNull(options.ExtensionAppHostLaunchCompletedAsync); 2251await options.ExtensionAppHostLaunchCompletedAsync(); 2300Assert.Null(options.ExtensionAppHostLaunchCompletedAsync);
TestServices\TestDotNetCliRunner.cs (2)
172if (InvokeExtensionAppHostLaunchCompletedCallback && options.ExtensionAppHostLaunchCompletedAsync is not null) 174await options.ExtensionAppHostLaunchCompletedAsync();