1 instantiation of EnvVar
aspire (1)
DotNet\DotNetCliRunner.cs (1)
474
startInfo.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)
40
Task LaunchAppHostAsync(string projectFile, string workingDirectory, List<string> arguments, List<
EnvVar
> environment, bool debug, CancellationToken cancellationToken);
526
public async Task LaunchAppHostAsync(string projectFile, string workingDirectory, List<string> arguments, List<
EnvVar
> environment, bool debug, CancellationToken cancellationToken)
Interaction\ExtensionInteractionService.cs (2)
18
Task LaunchAppHostAsync(string projectFile, string workingDirectory, List<string> arguments, List<
EnvVar
> environment, bool debug);
240
public Task LaunchAppHostAsync(string projectFile, string workingDirectory, List<string> arguments, List<
EnvVar
> environment, bool debug)
Aspire.Cli.Tests (3)
TestServices\TestExtensionBackchannel.cs (2)
63
public Func<string, string, List<string>, List<
EnvVar
>, bool, Task>? LaunchAppHostAsyncCallback { get; set; }
184
public Task LaunchAppHostAsync(string projectPath, string targetFramework, List<string> arguments, List<
EnvVar
> envVars, bool debug, CancellationToken cancellationToken)
TestServices\TestExtensionInteractionService.cs (1)
129
public Task LaunchAppHostAsync(string projectFile, string workingDirectory, List<string> arguments, List<
EnvVar
> environment, bool debug)