2 instantiations of EnvVar
aspire (2)
DotNet\DotNetCliRunner.cs (1)
125
execution.EnvironmentVariables.Select(kvp => new
EnvVar
{ Name = kvp.Key, Value = kvp.Value }).ToList(),
Projects\ExtensionGuestLauncher.cs (1)
44
environmentVariables.Select(kvp => new
EnvVar
{ Name = kvp.Key, Value = kvp.Value }).ToList(),
13 references to EnvVar
aspire (6)
Backchannel\BackchannelJsonSerializerContext.cs (2)
37
[JsonSerializable(typeof(
EnvVar
))]
38
[JsonSerializable(typeof(List<
EnvVar
>))]
Backchannel\ExtensionBackchannel.cs (2)
44
Task LaunchAppHostAsync(string projectFile, List<string> arguments, List<
EnvVar
> environment, bool debug, CancellationToken cancellationToken);
656
public async Task LaunchAppHostAsync(string projectFile, List<string> arguments, List<
EnvVar
> environment, bool debug, CancellationToken cancellationToken)
Interaction\ExtensionInteractionService.cs (2)
19
Task LaunchAppHostAsync(string projectFile, List<string> arguments, List<
EnvVar
> environment, bool debug);
432
public Task LaunchAppHostAsync(string projectFile, List<string> arguments, List<
EnvVar
> environment, bool debug)
Aspire.Cli.Tests (7)
Projects\ExtensionGuestLauncherTests.cs (4)
77
List<
EnvVar
>? capturedEnv = null;
132
private readonly Action<string, List<string>, List<
EnvVar
>, bool> _onLaunch;
134
public FakeLaunchExtensionService(Action<string, List<string>, List<
EnvVar
>, bool> onLaunch)
141
public Task LaunchAppHostAsync(string projectFile, List<string> arguments, List<
EnvVar
> environment, bool debug)
TestServices\TestExtensionBackchannel.cs (2)
75
public Func<string, List<string>, List<
EnvVar
>, bool, Task>? LaunchAppHostAsyncCallback { get; set; }
248
public Task LaunchAppHostAsync(string projectPath, List<string> arguments, List<
EnvVar
> envVars, bool debug, CancellationToken cancellationToken)
TestServices\TestExtensionInteractionService.cs (1)
198
public Task LaunchAppHostAsync(string projectFile, List<string> arguments, List<
EnvVar
> environment, bool debug)