We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5cc3320 commit 8f0e385Copy full SHA for 8f0e385
src/Aspire.Cli/Program.cs
@@ -41,7 +41,7 @@ public class Program
41
private static string GetGlobalSettingsPath()
42
{
43
var homeDirectory = Environment.GetFolderPath(Environment.SpecialFolder.UserProfile);
44
- var globalSettingsPath = ConfigurationHelper.BuildPathToSettingsJsonFile(homeDirectory);
+ var globalSettingsPath = Path.Combine(homeDirectory, ".aspire", "globalsettings.json");
45
return globalSettingsPath;
46
}
47
0 commit comments