2 writes to EnvironmentVariables
Aspire.Cli.Tests (2)
Projects\GuestRuntimeTests.cs (2)
155
EnvironmentVariables
= new Dictionary<string, string> { ["SPEC_VAR"] = "spec_value" }
176
EnvironmentVariables
= new Dictionary<string, string> { ["SHARED_VAR"] = "from_spec" }
3 references to EnvironmentVariables
aspire (3)
Projects\GuestRuntime.cs (3)
70
var environmentVariables = _spec.InstallDependencies.
EnvironmentVariables
?? new Dictionary<string, string>();
143
if (commandSpec.
EnvironmentVariables
is not null)
145
foreach (var (key, value) in commandSpec.
EnvironmentVariables
)