14 references to s_launchProfileOption
aspire (6)
Commands\AppHostLauncher.cs (1)
92
command.Options.Add(
s_launchProfileOption
);
Commands\RunCommand.cs (3)
175
var launchProfile = parseResult.GetValue(AppHostLauncher.
s_launchProfileOption
);
1481
var launchProfile = parseResult.GetValue(AppHostLauncher.
s_launchProfileOption
);
1498
additionalArgs.Add($"{AppHostLauncher.
s_launchProfileOption
.Name}={launchProfile}");
Commands\StartCommand.cs (2)
53
var launchProfile = parseResult.GetValue(AppHostLauncher.
s_launchProfileOption
);
112
additionalArgs.Add($"{AppHostLauncher.
s_launchProfileOption
.Name}={launchProfile}");
Aspire.Cli.Tests (8)
Commands\RootCommandTests.cs (1)
268
Assert.Equal("E2E", result.GetValue(AppHostLauncher.
s_launchProfileOption
));
Commands\RunCommandTests.cs (3)
71
Assert.Equal("E2E", result.GetValue(AppHostLauncher.
s_launchProfileOption
));
4398
Assert.Null(result.GetValue(AppHostLauncher.
s_launchProfileOption
));
5470
Assert.Equal(expectedLaunchProfile, childParseResult.GetValue(AppHostLauncher.
s_launchProfileOption
));
Commands\StartCommandTests.cs (3)
118
Assert.Equal("E2E", result.GetValue(AppHostLauncher.
s_launchProfileOption
));
203
Assert.Null(result.GetValue(AppHostLauncher.
s_launchProfileOption
));
704
Assert.Equal(expectedLaunchProfile, childParseResult.GetValue(AppHostLauncher.
s_launchProfileOption
));
Projects\DotNetAppHostProjectTests.cs (1)
1163
LaunchProfile = parseResult.GetValue(AppHostLauncher.
s_launchProfileOption
),