mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-13 17:22:15 -05:00
Clean up launch tasks (#16820)
This commit is contained in:
472
.vscode/launch.json
vendored
472
.vscode/launch.json
vendored
@@ -4,214 +4,25 @@
|
|||||||
{
|
{
|
||||||
"type": "node",
|
"type": "node",
|
||||||
"request": "launch",
|
"request": "launch",
|
||||||
"name": "Gulp Build",
|
"name": "Launch Azure Data Studio",
|
||||||
"program": "${workspaceFolder}/node_modules/gulp/bin/gulp.js",
|
"runtimeExecutable": "${workspaceFolder}/scripts/sql.sh",
|
||||||
"stopOnEntry": true,
|
"windows": {
|
||||||
"args": [
|
"runtimeExecutable": "${workspaceFolder}/scripts/sql.bat",
|
||||||
"hygiene"
|
},
|
||||||
]
|
"runtimeArgs": [
|
||||||
},
|
"--no-cached-data"
|
||||||
{
|
|
||||||
"type": "node",
|
|
||||||
"request": "attach",
|
|
||||||
"restart": true,
|
|
||||||
"name": "Attach to Extension Host",
|
|
||||||
"timeout": 30000,
|
|
||||||
"port": 5870,
|
|
||||||
"outFiles": [
|
|
||||||
"${workspaceFolder}/out/**/*.js",
|
|
||||||
"${workspaceFolder}/extensions/*/out/**/*.js"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"type": "pwa-chrome",
|
|
||||||
"request": "attach",
|
|
||||||
"name": "Attach to Shared Process",
|
|
||||||
"timeout": 30000,
|
|
||||||
"port": 9222,
|
|
||||||
"urlFilter": "*sharedProcess.html*",
|
|
||||||
"presentation": {
|
|
||||||
"hidden": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"type": "node",
|
|
||||||
"request": "attach",
|
|
||||||
"name": "Attach to Search Process",
|
|
||||||
"port": 5876,
|
|
||||||
"outFiles": [
|
|
||||||
"${workspaceFolder}/out/**/*.js"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"type": "node",
|
|
||||||
"request": "attach",
|
|
||||||
"name": "Attach to CLI Process",
|
|
||||||
"port": 5874,
|
|
||||||
"outFiles": [
|
|
||||||
"${workspaceFolder}/out/**/*.js"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"type": "node",
|
|
||||||
"request": "attach",
|
|
||||||
"name": "Attach to Main Process",
|
|
||||||
"timeout": 30000,
|
|
||||||
"port": 5875,
|
|
||||||
"outFiles": [
|
|
||||||
"${workspaceFolder}/out/**/*.js"
|
|
||||||
],
|
|
||||||
"presentation": {
|
|
||||||
"hidden": true,
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"type": "extensionHost",
|
|
||||||
"request": "launch",
|
|
||||||
"name": "VS Code Emmet Tests",
|
|
||||||
"runtimeExecutable": "${execPath}",
|
|
||||||
"args": [
|
|
||||||
"${workspaceFolder}/extensions/emmet/test-fixtures",
|
|
||||||
"--extensionDevelopmentPath=${workspaceFolder}/extensions/emmet",
|
|
||||||
"--extensionTestsPath=${workspaceFolder}/extensions/emmet/out/test"
|
|
||||||
],
|
],
|
||||||
"outFiles": [
|
"outFiles": [
|
||||||
"${workspaceFolder}/out/**/*.js"
|
"${workspaceFolder}/out/**/*.js"
|
||||||
],
|
],
|
||||||
"presentation": {
|
"presentation": {
|
||||||
"group": "5_tests",
|
"group": "0_ads"
|
||||||
"order": 6
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"type": "extensionHost",
|
|
||||||
"request": "launch",
|
|
||||||
"name": "VS Code Git Tests",
|
|
||||||
"runtimeExecutable": "${execPath}",
|
|
||||||
"args": [
|
|
||||||
"/tmp/my4g9l",
|
|
||||||
"--extensionDevelopmentPath=${workspaceFolder}/extensions/git",
|
|
||||||
"--extensionTestsPath=${workspaceFolder}/extensions/git/out/test"
|
|
||||||
],
|
|
||||||
"outFiles": [
|
|
||||||
"${workspaceFolder}/extensions/git/out/**/*.js"
|
|
||||||
],
|
|
||||||
"presentation": {
|
|
||||||
"group": "5_tests",
|
|
||||||
"order": 6
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"type": "extensionHost",
|
|
||||||
"request": "launch",
|
|
||||||
"name": "VS Code API Tests (single folder)",
|
|
||||||
"runtimeExecutable": "${execPath}",
|
|
||||||
"args": [
|
|
||||||
// "${workspaceFolder}", // Uncomment for running out of sources.
|
|
||||||
"${workspaceFolder}/extensions/vscode-api-tests/testWorkspace",
|
|
||||||
"--extensionDevelopmentPath=${workspaceFolder}/extensions/vscode-api-tests",
|
|
||||||
"--extensionTestsPath=${workspaceFolder}/extensions/vscode-api-tests/out/singlefolder-tests",
|
|
||||||
"--disable-extensions"
|
|
||||||
],
|
|
||||||
"outFiles": [
|
|
||||||
"${workspaceFolder}/out/**/*.js"
|
|
||||||
],
|
|
||||||
"presentation": {
|
|
||||||
"group": "5_tests",
|
|
||||||
"order": 3
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"type": "extensionHost",
|
|
||||||
"request": "launch",
|
|
||||||
"name": "VS Code API Tests (workspace)",
|
|
||||||
"runtimeExecutable": "${execPath}",
|
|
||||||
"args": [
|
|
||||||
"${workspaceFolder}/extensions/vscode-api-tests/testworkspace.code-workspace",
|
|
||||||
"--extensionDevelopmentPath=${workspaceFolder}/extensions/vscode-api-tests",
|
|
||||||
"--extensionTestsPath=${workspaceFolder}/extensions/vscode-api-tests/out/workspace-tests"
|
|
||||||
],
|
|
||||||
"outFiles": [
|
|
||||||
"${workspaceFolder}/out/**/*.js"
|
|
||||||
],
|
|
||||||
"presentation": {
|
|
||||||
"group": "5_tests",
|
|
||||||
"order": 4
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"type": "extensionHost",
|
|
||||||
"request": "launch",
|
|
||||||
"name": "VS Code Tokenizer Tests",
|
|
||||||
"runtimeExecutable": "${execPath}",
|
|
||||||
"args": [
|
|
||||||
"${workspaceFolder}/extensions/vscode-colorize-tests/test",
|
|
||||||
"--extensionDevelopmentPath=${workspaceFolder}/extensions/vscode-colorize-tests",
|
|
||||||
"--extensionTestsPath=${workspaceFolder}/extensions/vscode-colorize-tests/out"
|
|
||||||
],
|
|
||||||
"outFiles": [
|
|
||||||
"${workspaceFolder}/out/**/*.js"
|
|
||||||
],
|
|
||||||
"presentation": {
|
|
||||||
"group": "5_tests",
|
|
||||||
"order": 5
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"type": "extensionHost",
|
|
||||||
"request": "launch",
|
|
||||||
"name": "VS Code Notebook Tests",
|
|
||||||
"runtimeExecutable": "${execPath}",
|
|
||||||
"args": [
|
|
||||||
"${workspaceFolder}/extensions/vscode-notebook-tests/test",
|
|
||||||
"--extensionDevelopmentPath=${workspaceFolder}/extensions/vscode-notebook-tests",
|
|
||||||
"--extensionTestsPath=${workspaceFolder}/extensions/vscode-notebook-tests/out"
|
|
||||||
],
|
|
||||||
"outFiles": [
|
|
||||||
"${workspaceFolder}/out/**/*.js"
|
|
||||||
],
|
|
||||||
"presentation": {
|
|
||||||
"group": "5_tests",
|
|
||||||
"order": 6
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"type": "extensionHost",
|
|
||||||
"request": "launch",
|
|
||||||
"name": "VS Code Custom Editor Tests",
|
|
||||||
"runtimeExecutable": "${execPath}",
|
|
||||||
"args": [
|
|
||||||
"${workspaceFolder}/extensions/vscode-custom-editor-tests/test-workspace",
|
|
||||||
"--extensionDevelopmentPath=${workspaceFolder}/extensions/vscode-custom-editor-tests",
|
|
||||||
"--extensionTestsPath=${workspaceFolder}/extensions/vscode-custom-editor-tests/out/test"
|
|
||||||
],
|
|
||||||
"outFiles": [
|
|
||||||
"${workspaceFolder}/out/**/*.js"
|
|
||||||
],
|
|
||||||
"presentation": {
|
|
||||||
"group": "5_tests",
|
|
||||||
"order": 6
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"type": "pwa-chrome",
|
|
||||||
"request": "attach",
|
|
||||||
"name": "Attach to azuredatastudio",
|
|
||||||
"browserAttachLocation": "workspace",
|
|
||||||
"port": 9222,
|
|
||||||
"trace": true,
|
|
||||||
"outFiles": [
|
|
||||||
"${workspaceFolder}/out/**/*.js"
|
|
||||||
],
|
|
||||||
"resolveSourceMapLocations": [
|
|
||||||
"${workspaceFolder}/out/**/*.js"
|
|
||||||
],
|
|
||||||
"perScriptSourcemaps": "yes"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"type": "pwa-chrome",
|
"type": "pwa-chrome",
|
||||||
"request": "launch",
|
"request": "launch",
|
||||||
"name": "Launch azuredatastudio",
|
"name": "Launch ADS & Debug Renderer",
|
||||||
"windows": {
|
"windows": {
|
||||||
"runtimeExecutable": "${workspaceFolder}/scripts/sql.bat"
|
"runtimeExecutable": "${workspaceFolder}/scripts/sql.bat"
|
||||||
},
|
},
|
||||||
@@ -242,97 +53,88 @@
|
|||||||
"outFiles": [
|
"outFiles": [
|
||||||
"${workspaceFolder}/out/**/*.js"
|
"${workspaceFolder}/out/**/*.js"
|
||||||
],
|
],
|
||||||
"browserLaunchLocation": "workspace"
|
"browserLaunchLocation": "workspace",
|
||||||
|
"presentation": {
|
||||||
|
"group": "1_debug",
|
||||||
|
"order": 2
|
||||||
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"type": "node",
|
"type": "node",
|
||||||
"request": "launch",
|
"request": "attach",
|
||||||
"name": "Launch ADS (Web) (TBD)",
|
"restart": true,
|
||||||
"program": "${workspaceFolder}/resources/web/code-web.js",
|
"name": "Attach to Extension Host",
|
||||||
|
"timeout": 30000,
|
||||||
|
"port": 5870,
|
||||||
|
"outFiles": [
|
||||||
|
"${workspaceFolder}/out/**/*.js",
|
||||||
|
"${workspaceFolder}/extensions/*/out/**/*.js"
|
||||||
|
],
|
||||||
"presentation": {
|
"presentation": {
|
||||||
"group": "0_vscode",
|
"group": "2_attach"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "pwa-chrome",
|
||||||
|
"request": "attach",
|
||||||
|
"name": "Attach to Shared Process",
|
||||||
|
"timeout": 30000,
|
||||||
|
"port": 9222,
|
||||||
|
"urlFilter": "*sharedProcess.html*",
|
||||||
|
"presentation": {
|
||||||
|
"group": "2_attach"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "node",
|
||||||
|
"request": "attach",
|
||||||
|
"name": "Attach to Main Process",
|
||||||
|
"timeout": 30000,
|
||||||
|
"port": 5875,
|
||||||
|
"outFiles": [
|
||||||
|
"${workspaceFolder}/out/**/*.js"
|
||||||
|
],
|
||||||
|
"presentation": {
|
||||||
|
"group": "2_attach"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "pwa-chrome",
|
||||||
|
"request": "attach",
|
||||||
|
"name": "Attach to Renderer",
|
||||||
|
"browserAttachLocation": "workspace",
|
||||||
|
"port": 9222,
|
||||||
|
"trace": true,
|
||||||
|
"outFiles": [
|
||||||
|
"${workspaceFolder}/out/**/*.js"
|
||||||
|
],
|
||||||
|
"resolveSourceMapLocations": [
|
||||||
|
"${workspaceFolder}/out/**/*.js"
|
||||||
|
],
|
||||||
|
"perScriptSourcemaps": "yes",
|
||||||
|
"presentation": {
|
||||||
|
"group": "2_attach",
|
||||||
"order": 2
|
"order": 2
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"type": "node",
|
"type": "node",
|
||||||
"request": "launch",
|
"request": "launch",
|
||||||
"name": "Main Process",
|
"name": "Run Smoke Tests",
|
||||||
"runtimeExecutable": "${workspaceFolder}/scripts/code.sh",
|
|
||||||
"windows": {
|
|
||||||
"runtimeExecutable": "${workspaceFolder}/scripts/code.bat",
|
|
||||||
},
|
|
||||||
"runtimeArgs": [
|
|
||||||
"--no-cached-data"
|
|
||||||
],
|
|
||||||
"outFiles": [
|
|
||||||
"${workspaceFolder}/out/**/*.js"
|
|
||||||
],
|
|
||||||
"presentation": {
|
|
||||||
"group": "1_vscode",
|
|
||||||
"order": 1
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"type": "pwa-chrome",
|
|
||||||
"request": "launch",
|
|
||||||
"outFiles": [],
|
|
||||||
"perScriptSourcemaps": "yes",
|
|
||||||
"name": "VS Code (Web, Chrome)",
|
|
||||||
"url": "http://localhost:8080",
|
|
||||||
"preLaunchTask": "Run web",
|
|
||||||
"presentation": {
|
|
||||||
"group": "0_vscode",
|
|
||||||
"order": 3
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"type": "pwa-msedge",
|
|
||||||
"request": "launch",
|
|
||||||
"outFiles": [],
|
|
||||||
"perScriptSourcemaps": "yes",
|
|
||||||
"name": "VS Code (Web, Edge)",
|
|
||||||
"url": "http://localhost:8080",
|
|
||||||
"pauseForSourceMap": false,
|
|
||||||
"preLaunchTask": "Run web",
|
|
||||||
"presentation": {
|
|
||||||
"group": "0_vscode",
|
|
||||||
"order": 3
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"type": "node",
|
|
||||||
"request": "launch",
|
|
||||||
"name": "Git Unit Tests",
|
|
||||||
"program": "${workspaceFolder}/extensions/git/node_modules/mocha/bin/_mocha",
|
|
||||||
"stopOnEntry": false,
|
|
||||||
"cwd": "${workspaceFolder}/extensions/git",
|
|
||||||
"outFiles": [
|
|
||||||
"${workspaceFolder}/extensions/git/out/**/*.js"
|
|
||||||
],
|
|
||||||
"presentation": {
|
|
||||||
"group": "5_tests",
|
|
||||||
"order": 10
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"type": "node",
|
|
||||||
"request": "launch",
|
|
||||||
"name": "Launch Smoke Test",
|
|
||||||
"program": "${workspaceFolder}/test/smoke/test/index.js",
|
"program": "${workspaceFolder}/test/smoke/test/index.js",
|
||||||
"cwd": "${workspaceFolder}/test/smoke",
|
"cwd": "${workspaceFolder}/test/smoke",
|
||||||
"env": {
|
"env": {
|
||||||
"BUILD_ARTIFACTSTAGINGDIRECTORY": "${workspaceFolder}"
|
"BUILD_ARTIFACTSTAGINGDIRECTORY": "${workspaceFolder}"
|
||||||
},
|
},
|
||||||
"presentation": {
|
"presentation": {
|
||||||
"group": "5_tests",
|
"group": "3_tests",
|
||||||
"order": 8
|
"order": 5
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"type": "pwa-node",
|
"type": "pwa-node",
|
||||||
"request": "launch",
|
"request": "launch",
|
||||||
"name": "Run Unit Tests",
|
"name": "Run Core Unit Tests",
|
||||||
"program": "${workspaceFolder}/test/unit/electron/index.js",
|
"program": "${workspaceFolder}/test/unit/electron/index.js",
|
||||||
"runtimeExecutable": "${workspaceFolder}/.build/electron/Azure Data Studio.app/Contents/MacOS/Electron",
|
"runtimeExecutable": "${workspaceFolder}/.build/electron/Azure Data Studio.app/Contents/MacOS/Electron",
|
||||||
"windows": {
|
"windows": {
|
||||||
@@ -350,19 +152,20 @@
|
|||||||
"${workspaceFolder}/out/**/*.js"
|
"${workspaceFolder}/out/**/*.js"
|
||||||
],
|
],
|
||||||
"cascadeTerminateToConfigurations": [
|
"cascadeTerminateToConfigurations": [
|
||||||
"Attach to azuredatastudio"
|
"Attach to Renderer"
|
||||||
],
|
],
|
||||||
"env": {
|
"env": {
|
||||||
"MOCHA_COLORS": "true"
|
"MOCHA_COLORS": "true"
|
||||||
},
|
},
|
||||||
"presentation": {
|
"presentation": {
|
||||||
"hidden": true
|
"group": "3_tests",
|
||||||
|
"order": 1
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"type": "pwa-node",
|
"type": "pwa-node",
|
||||||
"request": "launch",
|
"request": "launch",
|
||||||
"name": "Run Unit Tests For Current File",
|
"name": "Run Core Unit Tests (Current File)",
|
||||||
"program": "${workspaceFolder}/test/unit/electron/index.js",
|
"program": "${workspaceFolder}/test/unit/electron/index.js",
|
||||||
"runtimeExecutable": "${workspaceFolder}/.build/electron/Azure Data Studio.app/Contents/MacOS/Electron",
|
"runtimeExecutable": "${workspaceFolder}/.build/electron/Azure Data Studio.app/Contents/MacOS/Electron",
|
||||||
"windows": {
|
"windows": {
|
||||||
@@ -372,7 +175,7 @@
|
|||||||
"runtimeExecutable": "${workspaceFolder}/.build/electron/azuredatastudio"
|
"runtimeExecutable": "${workspaceFolder}/.build/electron/azuredatastudio"
|
||||||
},
|
},
|
||||||
"cascadeTerminateToConfigurations": [
|
"cascadeTerminateToConfigurations": [
|
||||||
"Attach to azuredatastudio"
|
"Attach to Renderer"
|
||||||
],
|
],
|
||||||
"outputCapture": "std",
|
"outputCapture": "std",
|
||||||
"args": [
|
"args": [
|
||||||
@@ -386,6 +189,10 @@
|
|||||||
],
|
],
|
||||||
"env": {
|
"env": {
|
||||||
"MOCHA_COLORS": "true"
|
"MOCHA_COLORS": "true"
|
||||||
|
},
|
||||||
|
"presentation": {
|
||||||
|
"group": "3_tests",
|
||||||
|
"order": 2
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -402,7 +209,11 @@
|
|||||||
"runtimeExecutable": "${workspaceFolder}/scripts/test-extensions-unit.sh"
|
"runtimeExecutable": "${workspaceFolder}/scripts/test-extensions-unit.sh"
|
||||||
},
|
},
|
||||||
"webRoot": "${workspaceFolder}",
|
"webRoot": "${workspaceFolder}",
|
||||||
"timeout": 45000
|
"timeout": 45000,
|
||||||
|
"presentation": {
|
||||||
|
"group": "3_tests",
|
||||||
|
"order": 3
|
||||||
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"type": "chrome",
|
"type": "chrome",
|
||||||
@@ -418,82 +229,127 @@
|
|||||||
"runtimeExecutable": "${workspaceFolder}/scripts/sql-test-integration.sh"
|
"runtimeExecutable": "${workspaceFolder}/scripts/sql-test-integration.sh"
|
||||||
},
|
},
|
||||||
"webRoot": "${workspaceFolder}",
|
"webRoot": "${workspaceFolder}",
|
||||||
"timeout": 45000
|
"timeout": 45000,
|
||||||
|
"presentation": {
|
||||||
|
"group": "3_tests",
|
||||||
|
"order": 4
|
||||||
|
}
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"type": "node",
|
||||||
|
"request": "launch",
|
||||||
|
"name": "Launch Azure Data Studio (Web) (TBD)",
|
||||||
|
"program": "${workspaceFolder}/resources/web/code-web.js",
|
||||||
|
"presentation": {
|
||||||
|
"group": "4_web"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "pwa-chrome",
|
||||||
|
"request": "launch",
|
||||||
|
"outFiles": [],
|
||||||
|
"perScriptSourcemaps": "yes",
|
||||||
|
"name": "Launch Azure Data Studio (Web, Chrome)",
|
||||||
|
"url": "http://localhost:8080",
|
||||||
|
"preLaunchTask": "Run web",
|
||||||
|
"presentation": {
|
||||||
|
"group": "4_web"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "pwa-msedge",
|
||||||
|
"request": "launch",
|
||||||
|
"outFiles": [],
|
||||||
|
"perScriptSourcemaps": "yes",
|
||||||
|
"name": "Launch Azure Data Studio (Web, Edge)",
|
||||||
|
"url": "http://localhost:8080",
|
||||||
|
"pauseForSourceMap": false,
|
||||||
|
"preLaunchTask": "Run web",
|
||||||
|
"presentation": {
|
||||||
|
"group": "4_web"
|
||||||
|
}
|
||||||
|
}
|
||||||
],
|
],
|
||||||
"compounds": [
|
"compounds": [
|
||||||
{
|
{
|
||||||
"name": "Debug Unit Tests",
|
"name": "Launch ADS & Debug All",
|
||||||
"configurations": [
|
|
||||||
"Attach to azuredatastudio",
|
|
||||||
"Run Unit Tests"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Debug Extension Unit Tests",
|
|
||||||
"configurations": [
|
|
||||||
"Attach to Extension Host",
|
|
||||||
"Run Extension Unit Tests"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Azure Data Studio",
|
|
||||||
"stopAll": true,
|
"stopAll": true,
|
||||||
"configurations": [
|
"configurations": [
|
||||||
"Launch azuredatastudio",
|
"Launch Azure Data Studio",
|
||||||
"Attach to Main Process",
|
"Attach to Main Process",
|
||||||
"Attach to Extension Host",
|
"Attach to Extension Host",
|
||||||
"Attach to Shared Process",
|
"Attach to Shared Process",
|
||||||
],
|
],
|
||||||
"preLaunchTask": "Ensure Prelaunch Dependencies",
|
"preLaunchTask": "Ensure Prelaunch Dependencies",
|
||||||
"presentation": {
|
"presentation": {
|
||||||
"group": "0_vscode",
|
"group": "1_debug",
|
||||||
"order": 1
|
"order": 4
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Debug azuredatastudio Main, Renderer & Extension Host",
|
"name": "Launch ADS & Debug Main, Renderer and Extension Host",
|
||||||
"configurations": [
|
"configurations": [
|
||||||
"Launch azuredatastudio",
|
"Launch ADS & Debug Renderer",
|
||||||
"Attach to Main Process",
|
"Attach to Main Process",
|
||||||
"Attach to Extension Host"
|
"Attach to Extension Host"
|
||||||
],
|
],
|
||||||
"presentation": {
|
"presentation": {
|
||||||
"group": "1_vscode",
|
"group": "1_debug",
|
||||||
"order": 3
|
"order": 3
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Debug Renderer and Extension Host processes",
|
"name": "Launch ADS & Debug Renderer and Extension Host",
|
||||||
"configurations": [
|
"configurations": [
|
||||||
"Launch azuredatastudio",
|
"Launch Azure Data Studio",
|
||||||
"Attach to Extension Host"
|
"Attach to Extension Host"
|
||||||
],
|
],
|
||||||
"presentation": {
|
"presentation": {
|
||||||
"group": "1_vscode",
|
"group": "1_debug",
|
||||||
"order": 2
|
"order": 1
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Attach Renderer and Extension Host",
|
"name": "Attach to Renderer and Extension Host",
|
||||||
"configurations": [
|
"configurations": [
|
||||||
"Attach to azuredatastudio",
|
"Attach to Renderer",
|
||||||
"Attach to Extension Host"
|
"Attach to Extension Host"
|
||||||
],
|
],
|
||||||
"presentation": {
|
"presentation": {
|
||||||
"group": "1_vscode",
|
"group": "2_attach",
|
||||||
"order": 2
|
"order": 1
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Debug Unit Tests (Current File)",
|
"name": "Debug Core Unit Tests",
|
||||||
"configurations": [
|
"configurations": [
|
||||||
"Attach to azuredatastudio",
|
"Attach to Renderer",
|
||||||
"Run Unit Tests For Current File"
|
"Run Core Unit Tests"
|
||||||
],
|
],
|
||||||
"presentation": {
|
"presentation": {
|
||||||
"group": "1_vscode",
|
"group": "3_tests",
|
||||||
"order": 2
|
"order": 6
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Debug Extension Unit Tests",
|
||||||
|
"configurations": [
|
||||||
|
"Attach to Extension Host",
|
||||||
|
"Run Extension Unit Tests"
|
||||||
|
],
|
||||||
|
"presentation": {
|
||||||
|
"group": "3_tests"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Debug Core Unit Tests (Current File)",
|
||||||
|
"configurations": [
|
||||||
|
"Attach to Renderer",
|
||||||
|
"Run Core Unit Tests (Current File)"
|
||||||
|
],
|
||||||
|
"presentation": {
|
||||||
|
"group": "3_tests",
|
||||||
|
"order": 8
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|||||||
Reference in New Issue
Block a user