2 types derived from LaunchProfileParser
Microsoft.DotNet.ProjectTools (2)
LaunchSettings\ExecutableLaunchProfileParser.cs (1)
9internal sealed class ExecutableLaunchProfileParser : LaunchProfileParser
LaunchSettings\ProjectLaunchProfileParser.cs (1)
8internal sealed class ProjectLaunchProfileParser : LaunchProfileParser
6 references to LaunchProfileParser
dotnet (1)
Commands\Run\RunCommand.cs (1)
172Reporter.Error.WriteLine(string.Format(CliCommandStrings.RunCommandExceptionCouldNotApplyLaunchSettings, LaunchProfileParser.GetLaunchProfileDisplayName(LaunchProfile), launchProfileParseResult.FailureReason).Bold().Red());
dotnet-aot (1)
src\sdk\src\Cli\dotnet\Commands\Run\AotRunCommand.cs (1)
240LaunchProfileParser.GetLaunchProfileDisplayName(launchProfile),
Microsoft.DotNet.ProjectTools (4)
LaunchSettings\LaunchSettings.cs (4)
15private static readonly IReadOnlyDictionary<string, LaunchProfileParser> s_providers = new Dictionary<string, LaunchProfileParser> 158if (!TryLocateHandler(commandName, out LaunchProfileParser? provider)) 172private static bool TryLocateHandler(string? commandName, [NotNullWhen(true)] out LaunchProfileParser? provider)