File tree Expand file tree Collapse file tree 1 file changed +16
-25
lines changed Expand file tree Collapse file tree 1 file changed +16
-25
lines changed Original file line number Diff line number Diff line change 17
17
"tasks" : [
18
18
{
19
19
"taskName" : " Install" ,
20
- "suppressTaskName" : true ,
21
- "args" : [
22
- " Invoke-Build Restore"
23
- ]
20
+ "type" : " shell" ,
21
+ "command" : " Invoke-Build Restore"
24
22
},
25
23
{
26
24
"taskName" : " CleanAll" ,
27
- "suppressTaskName" : true ,
28
- "args" : [
29
- " Invoke-Build CleanAll"
30
- ]
25
+ "type" : " shell" ,
26
+ "command" : " Invoke-Build CleanAll"
31
27
},
32
28
{
33
29
"taskName" : " Clean" ,
34
- "suppressTaskName" : true ,
35
- "args" : [
36
- " Invoke-Build Clean"
37
- ]
30
+ "type" : " shell" ,
31
+ "command" : " Invoke-Build Clean"
38
32
},
39
33
{
40
34
"taskName" : " BuildAll" ,
41
- "suppressTaskName" : true ,
42
- "isBuildCommand" : true ,
43
- "args" : [
44
- " Invoke-Build BuildAll"
45
- ],
35
+ "type" : " shell" ,
36
+ "command" : " Invoke-Build BuildAll" ,
46
37
"problemMatcher" : []
47
38
},
48
39
{
49
40
"taskName" : " Build" ,
50
- "suppressTaskName" : true ,
51
- "args" : [
52
- " Invoke-Build Build"
53
- ],
41
+ "type" : " shell" ,
42
+ "command" : " Invoke-Build Build" ,
43
+ "group" : {
44
+ "kind" : " build" ,
45
+ "isDefault" : true
46
+ },
54
47
"problemMatcher" : []
55
48
},
56
49
{
57
50
"taskName" : " Test" ,
58
- "suppressTaskName" : true ,
59
- "args" : [
60
- " Invoke-Build Test"
61
- ],
51
+ "type" : " shell" ,
52
+ "command" : " Invoke-Build Test" ,
62
53
"group" : {
63
54
"kind" : " test" ,
64
55
"isDefault" : true
You can’t perform that action at this time.
0 commit comments