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