1 instantiation of EnvVar
aspire (1)
DotNet\DotNetCliRunner.cs (1)
474startInfo.Environment.Select(kvp => new EnvVar { Name = kvp.Key, Value = kvp.Value }).ToList(),
9 references to EnvVar
aspire (6)
Backchannel\BackchannelJsonSerializerContext.cs (2)
30[JsonSerializable(typeof(EnvVar))] 31[JsonSerializable(typeof(List<EnvVar>))]
Backchannel\ExtensionBackchannel.cs (2)
40Task LaunchAppHostAsync(string projectFile, string workingDirectory, List<string> arguments, List<EnvVar> environment, bool debug, CancellationToken cancellationToken); 526public async Task LaunchAppHostAsync(string projectFile, string workingDirectory, List<string> arguments, List<EnvVar> environment, bool debug, CancellationToken cancellationToken)
Interaction\ExtensionInteractionService.cs (2)
18Task LaunchAppHostAsync(string projectFile, string workingDirectory, List<string> arguments, List<EnvVar> environment, bool debug); 240public Task LaunchAppHostAsync(string projectFile, string workingDirectory, List<string> arguments, List<EnvVar> environment, bool debug)
Aspire.Cli.Tests (3)
TestServices\TestExtensionBackchannel.cs (2)
63public Func<string, string, List<string>, List<EnvVar>, bool, Task>? LaunchAppHostAsyncCallback { get; set; } 184public Task LaunchAppHostAsync(string projectPath, string targetFramework, List<string> arguments, List<EnvVar> envVars, bool debug, CancellationToken cancellationToken)
TestServices\TestExtensionInteractionService.cs (1)
129public Task LaunchAppHostAsync(string projectFile, string workingDirectory, List<string> arguments, List<EnvVar> environment, bool debug)