14 references to s_launchProfileOption
aspire (6)
Commands\AppHostLauncher.cs (1)
91
command.Options.Add(
s_launchProfileOption
);
Commands\RunCommand.cs (3)
173
var launchProfile = parseResult.GetValue(AppHostLauncher.
s_launchProfileOption
);
1377
var launchProfile = parseResult.GetValue(AppHostLauncher.
s_launchProfileOption
);
1394
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)
69
Assert.Equal("E2E", result.GetValue(AppHostLauncher.
s_launchProfileOption
));
3718
Assert.Null(result.GetValue(AppHostLauncher.
s_launchProfileOption
));
4790
Assert.Equal(expectedLaunchProfile, childParseResult.GetValue(AppHostLauncher.
s_launchProfileOption
));
Commands\StartCommandTests.cs (3)
117
Assert.Equal("E2E", result.GetValue(AppHostLauncher.
s_launchProfileOption
));
202
Assert.Null(result.GetValue(AppHostLauncher.
s_launchProfileOption
));
703
Assert.Equal(expectedLaunchProfile, childParseResult.GetValue(AppHostLauncher.
s_launchProfileOption
));
Projects\DotNetAppHostProjectTests.cs (1)
1145
LaunchProfile = parseResult.GetValue(AppHostLauncher.
s_launchProfileOption
),