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