2 implementations of StartAsync
aspire (1)
Projects\AppHostServerSession.cs (1)
158public async Task StartAsync()
Aspire.Cli.Tests (1)
TestServices\FakeAppHostServerSession.cs (1)
55public async Task StartAsync()
13 references to StartAsync
aspire (13)
Commands\Sdk\SdkDumpCommand.cs (2)
200await serverSession.StartAsync(); 299await serverSession.StartAsync();
Commands\Sdk\SdkExportCommand.cs (1)
219await serverSession.StartAsync();
Commands\Sdk\SdkGenerateCommand.cs (1)
161await serverSession.StartAsync();
Projects\GuestAppHostProject.cs (3)
324await serverSession.StartAsync(); 500await serverSession.StartAsync(); 1111await serverSession.StartAsync();
Projects\IAppHostServerSession.cs (5)
21/// <see cref="StartAsync"/> so callers can plumb it into the guest AppHost environment. 26/// Gets the RPC socket path, or <see langword="null"/> if <see cref="StartAsync"/> has not 33/// <see cref="StartAsync"/> has not been called (or threw before the process was published). 39/// if <see cref="StartAsync"/> has not been called (or threw before the process was published). 75/// The caller drives it via <see cref="IAppHostServerSession.StartAsync"/>,
Scaffolding\ScaffoldingService.cs (1)
157await serverSession.StartAsync();