Get Application Path from command options (#1916)

This commit is contained in:
Cheena Malhotra
2023-03-08 14:58:30 -08:00
committed by GitHub
parent 19b7a180b5
commit a40b7d3581
4 changed files with 24 additions and 5 deletions

View File

@@ -37,7 +37,7 @@ namespace Microsoft.SqlTools.Authentication.Utility
/// <exception cref="Exception">When called on unsupported platform.</exception>
public static string BuildAppDirectoryPath()
{
var homedir = Environment.GetFolderPath(Environment.SpecialFolder.UserProfile);
var homedir = Environment.GetFolderPath(Environment.SpecialFolder.Personal);
// Windows
if (RuntimeInformation.IsOSPlatform(OSPlatform.Windows))