1 implementation of ILaunchSettingsProvider
dotnet (1)
Commands\Run\LaunchSettings\ProjectLaunchSettingsProvider.cs (1)
8
internal class ProjectLaunchSettingsProvider :
ILaunchSettingsProvider
4 references to ILaunchSettingsProvider
dotnet (4)
Commands\Run\LaunchSettings\LaunchSettingsManager.cs (4)
15
private static readonly IReadOnlyDictionary<string,
ILaunchSettingsProvider
> _providers;
19
_providers = new Dictionary<string,
ILaunchSettingsProvider
>
109
if (!TryLocateHandler(commandName, out
ILaunchSettingsProvider
? provider))
123
private static bool TryLocateHandler(string? commandName, [NotNullWhen(true)]out
ILaunchSettingsProvider
? provider)