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