Include App Path in service launch arguments (#22233)

This commit is contained in:
Cheena Malhotra
2023-03-08 18:44:17 -08:00
committed by GitHub
parent 8e5d89ef94
commit cc52eb9dd8
2 changed files with 3 additions and 1 deletions

View File

@@ -1,6 +1,6 @@
{
"downloadUrl": "https://github.com/Microsoft/sqltoolsservice/releases/download/{#version#}/microsoft.sqltools.servicelayer-{#fileName#}",
"version": "4.6.0.3",
"version": "4.6.0.4",
"downloadFileNames": {
"Windows_86": "win-x86-net7.0.zip",
"Windows_64": "win-x64-net7.0.zip",

View File

@@ -185,6 +185,8 @@ export function getCommonLaunchArgsAndCleanupOldLogFiles(logPath: string, fileNa
let launchArgs = [];
// Application Name determines app storage location or user data path.
launchArgs.push('--application-name', 'azuredatastudio');
launchArgs.push('--data-path', getAppDataPath());
launchArgs.push(`--locale`, vscode.env.language);
launchArgs.push('--log-file');