2 implementations of ArgumentsWithUnprocessed
Aspire.Hosting (1)
ApplicationModel\ExecutionConfigurationResult.cs (1)
15public required IEnumerable<(object Unprocessed, string Processed, bool IsSensitive)> ArgumentsWithUnprocessed { get; init; }
Aspire.Hosting.EntityFrameworkCore.Tests (1)
EFMigrationPipelineTests.cs (1)
827public IEnumerable<(object Unprocessed, string Processed, bool IsSensitive)> ArgumentsWithUnprocessed { get; init; } = [];
2 references to ArgumentsWithUnprocessed
Aspire.Hosting (2)
Publishing\ManifestPublishingContext.cs (2)
583if (!executionConfiguration.ArgumentsWithUnprocessed.Any()) 590foreach ((var Unprocessed, var Processed, _) in executionConfiguration.ArgumentsWithUnprocessed)