2 implementations of EnvironmentVariablesWithUnprocessed
Aspire.Hosting (1)
ApplicationModel\ExecutionConfigurationResult.cs (1)
21public required IEnumerable<KeyValuePair<string, (object Unprocessed, string Processed)>> EnvironmentVariablesWithUnprocessed { get; init; }
Aspire.Hosting.EntityFrameworkCore.Tests (1)
EFMigrationPipelineTests.cs (1)
829public IEnumerable<KeyValuePair<string, (object Unprocessed, string Processed)>> EnvironmentVariablesWithUnprocessed { get; init; } = [];
3 references to EnvironmentVariablesWithUnprocessed
Aspire.Hosting (2)
Publishing\ManifestPublishingContext.cs (2)
545if (!executionConfiguration.EnvironmentVariablesWithUnprocessed.Any()) 552foreach (var kvp in executionConfiguration.EnvironmentVariablesWithUnprocessed)
Aspire.Hosting.EntityFrameworkCore (1)
EFResourceBuilderExtensions.cs (1)
619foreach (var kvp in executionConfiguration.EnvironmentVariablesWithUnprocessed)