File tree Expand file tree Collapse file tree 4 files changed +44
-0
lines changed
Expand file tree Collapse file tree 4 files changed +44
-0
lines changed Original file line number Diff line number Diff line change 1+ {
2+ "recommendations" : [
3+ " ms-azuretools.vscode-azurefunctions" ,
4+ " ms-python.python"
5+ ]
6+ }
Original file line number Diff line number Diff line change 1+ {
2+ "version" : " 0.2.0" ,
3+ "configurations" : [
4+ {
5+ "name" : " Attach to Python Functions" ,
6+ "type" : " debugpy" ,
7+ "request" : " attach" ,
8+ "connect" : {
9+ "host" : " localhost" ,
10+ "port" : 9091
11+ },
12+ "preLaunchTask" : " func: host start"
13+ }
14+ ]
15+ }
Original file line number Diff line number Diff line change 1+ {
2+ "azureFunctions.deploySubpath" : " src" ,
3+ "azureFunctions.scmDoBuildDuringDeployment" : true ,
4+ "azureFunctions.projectLanguage" : " Python" ,
5+ "azureFunctions.projectRuntime" : " ~4" ,
6+ "debug.internalConsoleOptions" : " neverOpen" ,
7+ "azureFunctions.projectLanguageModel" : 2
8+ }
Original file line number Diff line number Diff line change 1+ {
2+ "version" : " 2.0.0" ,
3+ "tasks" : [
4+ {
5+ "type" : " func" ,
6+ "label" : " func: host start" ,
7+ "command" : " host start" ,
8+ "problemMatcher" : " $func-python-watch" ,
9+ "isBackground" : true ,
10+ "options" : {
11+ "cwd" : " ${workspaceFolder}/src"
12+ }
13+ }
14+ ]
15+ }
You can’t perform that action at this time.
0 commit comments