Skip to content

Commit d84e6c0

Browse files
authored
Add tasks.json for vscode debugging (#8117)
1 parent 24b0e40 commit d84e6c0

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

.vscode/tasks.json

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
{
2+
"version": "2.0.0",
3+
"tasks": [
4+
{
5+
"label": "build",
6+
"command": "dotnet",
7+
"type": "process",
8+
"args": [
9+
"build",
10+
"${workspaceFolder}/src/WebJobs.Script.WebHost/WebJobs.Script.WebHost.csproj"
11+
],
12+
"problemMatcher": "$msCompile"
13+
}
14+
]
15+
}

0 commit comments

Comments
 (0)