Skip to content

Commit 9d28006

Browse files
committed
Add /.vscode/tasks.json for builds inside VS Code
1 parent af96d96 commit 9d28006

File tree

1 file changed

+49
-0
lines changed

1 file changed

+49
-0
lines changed

.vscode/tasks.json

+49
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
{
2+
"version": "2.0.0",
3+
"tasks": [
4+
{
5+
"label": "Build",
6+
"type": "process",
7+
"command": "dotnet",
8+
"args": [
9+
"run",
10+
"--project",
11+
"tools/builder",
12+
"--no-launch-profile",
13+
"--",
14+
"--configuration",
15+
"Debug",
16+
"Build"
17+
],
18+
"options": {
19+
"cwd": "${workspaceRoot}"
20+
},
21+
"group": "build",
22+
"presentation": {
23+
"focus": true
24+
},
25+
"problemMatcher": "$msCompile"
26+
},
27+
{
28+
"label": "Pre-PR Build",
29+
"type": "process",
30+
"command": "dotnet",
31+
"args": [
32+
"run",
33+
"--project",
34+
"tools/builder",
35+
"--no-launch-profile",
36+
"--",
37+
"BuildAll"
38+
],
39+
"options": {
40+
"cwd": "${workspaceRoot}"
41+
},
42+
"group": "build",
43+
"presentation": {
44+
"focus": true
45+
},
46+
"problemMatcher": "$msCompile"
47+
},
48+
]
49+
}

0 commit comments

Comments
 (0)