7 references to ExpandVariables
Microsoft.DotNet.HotReload.Watch (1)
Process\LaunchSettingsProfile.cs (1)
108: LaunchProfileParser.ExpandVariables(LaunchUrl, evaluateExpression),
Microsoft.DotNet.ProjectTools (6)
LaunchSettings\ExecutableLaunchProfileParser.cs (2)
40ExecutablePath = ExpandVariables(profile.ExecutablePath, evaluateExpression), 68var expandedValue = ExpandVariables(value, evaluateExpression);
LaunchSettings\LaunchProfileParser.cs (2)
33? ExpandVariables(value, expandCommandLineArgs ? evaluateExpression : null) 54builder[key] = ExpandVariables(value, evaluateExpression);
LaunchSettings\ProjectLaunchProfileParser.cs (2)
36LaunchUrl = profile.LaunchUrl is null ? null : ExpandVariables(profile.LaunchUrl, evaluateExpression: null), 37ApplicationUrl = profile.ApplicationUrl is null ? null : ExpandVariables(profile.ApplicationUrl, evaluateExpression),