Initialer Import der Synology Scripts
This commit is contained in:
BIN
Binary file not shown.
BIN
Binary file not shown.
+23
@@ -0,0 +1,23 @@
|
||||
{
|
||||
"version": "0.2.0",
|
||||
"configurations": [
|
||||
{
|
||||
"name": "PyDebug: Current File",
|
||||
"type": "debugpy",
|
||||
"request": "launch",
|
||||
"program": "${file}",
|
||||
"console": "integratedTerminal",
|
||||
"args": [],
|
||||
"justMyCode": true
|
||||
},
|
||||
{
|
||||
"name": "PyDebug: Main File",
|
||||
"type": "debugpy",
|
||||
"request": "launch",
|
||||
"program": "${workspaceFolder}/main.py",
|
||||
"console": "integratedTerminal",
|
||||
"args": [],
|
||||
"justMyCode": true
|
||||
}
|
||||
]
|
||||
}
|
||||
+19
@@ -0,0 +1,19 @@
|
||||
{
|
||||
"version": "2.0.0",
|
||||
"tasks": [
|
||||
{
|
||||
"label": "Python: Current File",
|
||||
"type": "shell",
|
||||
"command": "${command:python.interpreterPath} ${file}",
|
||||
"args": [],
|
||||
"group": "build"
|
||||
},
|
||||
{
|
||||
"label": "Python: Main File",
|
||||
"type": "shell",
|
||||
"command": "${command:python.interpreterPath} ${workspaceFolder}/main.py",
|
||||
"args": [],
|
||||
"group": "build"
|
||||
}
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user