5 overrides of GetRunArgumentsAsync
aspire (5)
Commands\DeployCommand.cs (1)
37
protected override Task<string[]>
GetRunArgumentsAsync
(string? fullyQualifiedOutputPath, string[] unmatchedTokens, string? targetStep, ParseResult parseResult, CancellationToken cancellationToken)
Commands\DestroyCommand.cs (1)
39
protected override Task<string[]>
GetRunArgumentsAsync
(string? fullyQualifiedOutputPath, string[] unmatchedTokens, string? targetStep, ParseResult parseResult, CancellationToken cancellationToken)
Commands\DoCommand.cs (1)
66
protected override async Task<string[]>
GetRunArgumentsAsync
(string? fullyQualifiedOutputPath, string[] unmatchedTokens, string? targetStep, ParseResult parseResult, CancellationToken cancellationToken)
Commands\PublishCommand.cs (1)
52
protected override Task<string[]>
GetRunArgumentsAsync
(string? fullyQualifiedOutputPath, string[] unmatchedTokens, string? targetStep, ParseResult parseResult, CancellationToken cancellationToken)
Commands\RenderCommand.cs (1)
823
protected override Task<string[]>
GetRunArgumentsAsync
(string? fullyQualifiedOutputPath, string[] unmatchedTokens, string? targetStep, ParseResult parseResult, CancellationToken cancellationToken) => Task.FromResult(Array.Empty<string>());
1 reference to GetRunArgumentsAsync
aspire (1)
Commands\PipelineCommandBase.cs (1)
265
var runArguments = await
GetRunArgumentsAsync
(fullyQualifiedOutputPath, unmatchedTokens, targetStep, parseResult, cancellationToken);