There was an error while loading. Please reload this page.
1 parent af96d96 commit 9d28006Copy full SHA for 9d28006
1 file changed
.vscode/tasks.json
@@ -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
30
31
32
33
34
35
36
37
+ "BuildAll"
38
39
40
41
42
43
44
45
46
47
48
+ ]
49
+}
0 commit comments