6 implementations of RunAsync
aspire (2)
Projects\DotNetAppHostProject.cs (1)
1438
public async Task<int>
RunAsync
(AppHostProjectContext context, CancellationToken cancellationToken)
Projects\GuestAppHostProject.cs (1)
386
public async Task<int>
RunAsync
(AppHostProjectContext context, CancellationToken cancellationToken)
Aspire.Cli.Tests (4)
Commands\SecretCommandTests.cs (1)
129
public Task<int>
RunAsync
(AppHostProjectContext context, CancellationToken cancellationToken) => throw new NotSupportedException();
Projects\ProjectLocatorTests.cs (1)
2210
public Task<int>
RunAsync
(AppHostProjectContext context, CancellationToken cancellationToken)
TestServices\TestAppHostProjectFactory.cs (1)
190
public Task<int>
RunAsync
(AppHostProjectContext context, CancellationToken cancellationToken)
TestServices\TestTypeScriptStarterProjectFactory.cs (1)
75
public Task<int>
RunAsync
(AppHostProjectContext context, CancellationToken cancellationToken)
1 reference to RunAsync
aspire (1)
Commands\RunCommand.cs (1)
373
runTask = project.
RunAsync
(context, runCts.Token);