2 implementations of Arguments
Aspire.Hosting (1)
ApplicationModel\ExecutionConfigurationResult.cs (1)
18
public IEnumerable<(string Value, bool IsSensitive)>
Arguments
=> ArgumentsWithUnprocessed.Select(arg => (arg.Processed, arg.IsSensitive));
Aspire.Hosting.EntityFrameworkCore.Tests (1)
EFMigrationPipelineTests.cs (1)
828
public IEnumerable<(string Value, bool IsSensitive)>
Arguments
=> ArgumentsWithUnprocessed.Select(a => (a.Processed, a.IsSensitive));
5 references to Arguments
Aspire.Hosting (4)
ApplicationModel\ExecutableLaunchRecipe.cs (2)
314
var arguments = context.ExecutionConfiguration.
Arguments
.ToList();
502
context.ExecutionConfiguration.
Arguments
,
ApplicationModel\ResourceExtensions.cs (1)
254
return argumentConfiguration.
Arguments
.Select(a => a.Value).ToArray();
Dcp\ContainerCreator.cs (1)
332
var args = configuration.
Arguments
.ToList();
Aspire.Hosting.TestUtilities (1)
Utils\ArgumentEvaluator.cs (1)
29
return executionConfiguration.
Arguments
.Select(a => a.Value).ToList();