Skip to content

Commit 7e48881

Browse files
authored
Update CONTRIBUTING.md
1 parent efa6321 commit 7e48881

File tree

1 file changed

+14
-1
lines changed

1 file changed

+14
-1
lines changed

CONTRIBUTING.md

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,20 @@ pip install -e $REPOSITORY_ROOT/
123123
```
124124
where REPOSITORY_ROOT is the root folder of the azure-functions-durable-python repository
125125

126-
7. Set breakpoints and click Run -> Start Debugging in VS Code. This should internally start the Azure Function using `func host start` command.
126+
7. Set breakpoints and click Run -> Start Debugging in VS Code. This should internally start the Azure Function using `func host start` command. If the breakpoints are not getting hit, check to make sure that you have set `justMyCode: false` in the function app's .vscode/launch.json.
127+
128+
```
129+
{
130+
"version": "0.2.0",
131+
"configurations": [
132+
{
133+
...
134+
"justMyCode": false
135+
...
136+
}
137+
]
138+
}
139+
```
127140

128141
### Debugging end-to-end
129142

0 commit comments

Comments
 (0)