2 instantiations of LaunchSettingsProfile
Microsoft.DotNet.HotReload.Watch (2)
Browser\BrowserLauncher.cs (1)
146
return profile ??
new
();
Process\LaunchSettingsProfile.cs (1)
100
return new
LaunchSettingsProfile
11 references to LaunchSettingsProfile
Microsoft.DotNet.HotReload.Watch (11)
Browser\BrowserLauncher.cs (5)
27
if (!CanLaunchBrowser(projectNode, projectOptions, out
var
launchProfile))
110
[NotNullWhen(true)] out
LaunchSettingsProfile
? launchProfile)
136
private
LaunchSettingsProfile
GetLaunchProfile(ProjectGraphNode projectNode, ProjectOptions projectOptions)
138
var
profile = projectOptions.LaunchProfileName.HasValue
139
?
LaunchSettingsProfile
.ReadLaunchProfile(
Process\LaunchSettingsProfile.cs (6)
27
internal static
LaunchSettingsProfile
? ReadLaunchProfile(
70
var
namedProfile = launchSettings?.Profiles?.FirstOrDefault(kvp =>
94
private
LaunchSettingsProfile
? WithExpandedVariables(
118
private static
LaunchSettingsProfile
? ReadDefaultLaunchProfile(LaunchSettingsJson? launchSettings, ILogger logger)
139
var
defaultProfile = launchSettings.Profiles[defaultProfileKey];
146
public OrderedDictionary<string,
LaunchSettingsProfile
>? Profiles { get; set; }