5 implementations of RunAsync
aspire (2)
Projects\DotNetAppHostProject.cs (1)
200
public async Task<int>
RunAsync
(AppHostProjectContext context, CancellationToken cancellationToken)
Projects\GuestAppHostProject.cs (1)
338
public async Task<int>
RunAsync
(AppHostProjectContext context, CancellationToken cancellationToken)
Aspire.Cli.Tests (3)
Commands\NewCommandTests.cs (1)
1726
public Task<int>
RunAsync
(AppHostProjectContext context, CancellationToken cancellationToken)
Commands\SecretCommandTests.cs (1)
118
public Task<int>
RunAsync
(AppHostProjectContext context, CancellationToken cancellationToken) => throw new NotSupportedException();
TestServices\TestAppHostProjectFactory.cs (1)
146
public Task<int>
RunAsync
(AppHostProjectContext context, CancellationToken cancellationToken)
1 reference to RunAsync
aspire (1)
Commands\RunCommand.cs (1)
233
var pendingRun = project.
RunAsync
(context, cancellationToken);