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