File tree 1 file changed +49
-0
lines changed
1 file changed +49
-0
lines changed Original file line number Diff line number Diff line change
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
+ }
You can’t perform that action at this time.
0 commit comments