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