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