Merge pull request #2445 from jackliusr/v1.7

correct configurations.program in launch.json
This commit is contained in:
greenie-msft 2022-05-18 14:29:22 -07:00 committed by GitHub
commit 3e6d039f12
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -48,7 +48,7 @@ In the case of the hello world quickstart, two applications are launched, each w
"skipFiles": [
"<node_internals>/**"
],
"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",