Skip to content

Commit 8f0e385

Browse files
Copilotmitchdenny
andauthored
aspire config set writes appHostPath to ~/.aspire/settings.json globally, causing incorrect path resolution (#10700)
* Initial plan * Rename global settings file from settings.json to globalsettings.json Co-authored-by: mitchdenny <[email protected]> --------- Co-authored-by: copilot-swe-agent[bot] <[email protected]> Co-authored-by: mitchdenny <[email protected]>
1 parent 5cc3320 commit 8f0e385

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Aspire.Cli/Program.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ public class Program
4141
private static string GetGlobalSettingsPath()
4242
{
4343
var homeDirectory = Environment.GetFolderPath(Environment.SpecialFolder.UserProfile);
44-
var globalSettingsPath = ConfigurationHelper.BuildPathToSettingsJsonFile(homeDirectory);
44+
var globalSettingsPath = Path.Combine(homeDirectory, ".aspire", "globalsettings.json");
4545
return globalSettingsPath;
4646
}
4747

0 commit comments

Comments
 (0)