1 implementation of Arguments
Aspire.Hosting (1)
ApplicationModel\ProcessedResourceExecutionConfiguration.cs (1)
18
public IEnumerable<(string Value, bool IsSensitive)>
Arguments
=> ArgumentsWithUnprocessed.Select(arg => (arg.Processed, arg.IsSensitive));
5 references to Arguments
Aspire.Hosting (4)
ApplicationModel\ResourceExtensions.cs (1)
279
return argumentConfiguration.
Arguments
.Select(a => a.Value).ToArray();
Dcp\DcpExecutor.cs (3)
1689
var launchArgs = BuildLaunchArgs(er, spec, configuration.
Arguments
);
2077
var args = configuration.
Arguments
.Select(a => a.Value);
2087
dcpContainerResource.SetAnnotationAsObjectList(CustomResource.ResourceAppArgsAnnotation, configuration.
Arguments
.Select(a => new AppLaunchArgumentAnnotation(a.Value, isSensitive: a.IsSensitive)));
Aspire.Hosting.Tests (1)
Utils\ArgumentEvaluator.cs (1)
29
return executionConfiguration.
Arguments
.Select(a => a.Value).ToList();