2 instantiations of EnvVar
aspire (2)
DotNet\DotNetCliRunner.cs (1)
272
execution.EnvironmentVariables.Select(kvp => new
EnvVar
{ Name = kvp.Key, Value = kvp.Value }).ToList(),
Projects\ExtensionGuestLauncher.cs (1)
53
effectiveEnvironmentVariables.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);
760
public async Task LaunchAppHostAsync(string projectFile, List<string> arguments, List<
EnvVar
> environment, bool debug, CancellationToken cancellationToken)
Interaction\ExtensionInteractionService.cs (2)
21
Task LaunchAppHostAsync(string projectFile, List<string> arguments, List<
EnvVar
> environment, bool debug);
539
public Task LaunchAppHostAsync(string projectFile, List<string> arguments, List<
EnvVar
> environment, bool debug)
Aspire.Cli.Tests (7)
Projects\ExtensionGuestLauncherTests.cs (4)
79
List<
EnvVar
>? capturedEnv = null;
134
private readonly Action<string, List<string>, List<
EnvVar
>, bool> _onLaunch;
136
public FakeLaunchExtensionService(Action<string, List<string>, List<
EnvVar
>, bool> onLaunch)
145
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; }
251
public Task LaunchAppHostAsync(string projectPath, List<string> arguments, List<
EnvVar
> envVars, bool debug, CancellationToken cancellationToken)
TestServices\TestExtensionInteractionService.cs (1)
247
public Task LaunchAppHostAsync(string projectFile, List<string> arguments, List<
EnvVar
> environment, bool debug)