Skip to content

Commit ae8d913

Browse files
committed
Merge branch 'master' into develop
2 parents 6034f8f + 31919b1 commit ae8d913

File tree

1 file changed

+39
-0
lines changed

1 file changed

+39
-0
lines changed

.vscode/launch.json

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
{
2+
// Use IntelliSense to learn about possible attributes.
3+
// Hover to view descriptions of existing attributes.
4+
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5+
"version": "0.2.0",
6+
"configurations": [
7+
{
8+
"name": "Python Debugger: Current File",
9+
"type": "debugpy",
10+
"request": "launch",
11+
"program": "${file}",
12+
"console": "integratedTerminal",
13+
"env": {
14+
"PYTHONPATH": "${cwd}/src"
15+
}
16+
},
17+
{
18+
"name": "Python Debugger: BasicPy",
19+
"type": "debugpy",
20+
"request": "launch",
21+
"program": "${cwd}/examples/BasicPy/src/BasicPy/main.py",
22+
"console": "integratedTerminal",
23+
},
24+
{
25+
"name": "Python Debugger: IntermediatePy",
26+
"type": "debugpy",
27+
"request": "launch",
28+
"program": "${cwd}/examples/IntermediatePy/src/IntermediatePy/main.py",
29+
"console": "integratedTerminal",
30+
},
31+
{
32+
"name": "Python Debugger: AdvancedPy",
33+
"type": "debugpy",
34+
"request": "launch",
35+
"program": "${cwd}/examples/AdvancedPy/src/AdvancedPy/main.py",
36+
"console": "integratedTerminal",
37+
}
38+
]
39+
}

0 commit comments

Comments
 (0)