From d8c31fd8b178a39248c3424f3613b9c2f2377870 Mon Sep 17 00:00:00 2001 From: Jack Liu shurui Date: Wed, 18 May 2022 22:57:28 +0800 Subject: [PATCH] correct configuration.program in launch.json Signed-off-by: Jack Liu shurui --- .../ides/vscode/vscode-how-to-debug-multiple-dapr-apps.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/daprdocs/content/en/developing-applications/ides/vscode/vscode-how-to-debug-multiple-dapr-apps.md b/daprdocs/content/en/developing-applications/ides/vscode/vscode-how-to-debug-multiple-dapr-apps.md index 2972a29dd..1b839d811 100644 --- a/daprdocs/content/en/developing-applications/ides/vscode/vscode-how-to-debug-multiple-dapr-apps.md +++ b/daprdocs/content/en/developing-applications/ides/vscode/vscode-how-to-debug-multiple-dapr-apps.md @@ -48,7 +48,7 @@ In the case of the hello world quickstart, two applications are launched, each w "skipFiles": [ "/**" ], - "program": "${workspaceFolder}/app.js", + "program": "${workspaceFolder}/node/app.js", "preLaunchTask": "daprd-debug-node", "postDebugTask": "daprd-down-node" }, @@ -56,7 +56,7 @@ In the case of the hello world quickstart, two applications are launched, each w "type": "python", "request": "launch", "name": "Pythonapp with Dapr", - "program": "${workspaceFolder}/app.py", + "program": "${workspaceFolder}/python/app.py", "console": "integratedTerminal", "preLaunchTask": "daprd-debug-python", "postDebugTask": "daprd-down-python" @@ -123,7 +123,7 @@ For this example the compound configuration is: ```json { "version": "2.0.0", - "tasks": [...], + "configurations": [...], "compounds": [ { "name": "Node/Python Dapr",