1 instantiation of LaunchSettingsProfile
Microsoft.DotNet.HotReload.Watch (1)
Browser\BrowserLauncher.cs (1)
139
return profile ??
new
();
10 references to LaunchSettingsProfile
Microsoft.DotNet.HotReload.Watch (10)
Browser\BrowserLauncher.cs (5)
27
if (!CanLaunchBrowser(projectOptions, out
var
launchProfile))
107
private bool CanLaunchBrowser(ProjectOptions projectOptions, [NotNullWhen(true)] out
LaunchSettingsProfile
? launchProfile)
133
private
LaunchSettingsProfile
GetLaunchProfile(ProjectOptions projectOptions)
135
var
profile = projectOptions.LaunchProfileName.HasValue
136
?
LaunchSettingsProfile
.ReadLaunchProfile(projectOptions.Representation, projectOptions.LaunchProfileName.Value, logger)
Process\LaunchSettingsProfile.cs (5)
26
internal static
LaunchSettingsProfile
? ReadLaunchProfile(ProjectRepresentation project, string? launchProfileName, ILogger logger)
65
var
namedProfile = launchSettings?.Profiles?.FirstOrDefault(kvp =>
89
private static
LaunchSettingsProfile
? ReadDefaultLaunchProfile(LaunchSettingsJson? launchSettings, ILogger logger)
110
var
defaultProfile = launchSettings.Profiles[defaultProfileKey];
117
public OrderedDictionary<string,
LaunchSettingsProfile
>? Profiles { get; set; }