Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit ae6e87f

Browse files
Kapil Borledaviwil
Kapil Borle
authored andcommittedMay 13, 2017
Add BuildAll and CleanAll tasks to task.json
1 parent a9af1f2 commit ae6e87f

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed
 

‎.vscode/tasks.json

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,15 +22,25 @@
2222
"suppressTaskName": true,
2323
"args": [ "Invoke-Build Restore" ]
2424
},
25+
{
26+
"taskName": "CleanAll",
27+
"suppressTaskName": true,
28+
"args": [ "Invoke-Build CleanAll" ]
29+
},
2530
{
2631
"taskName": "Clean",
2732
"suppressTaskName": true,
2833
"args": [ "Invoke-Build Clean" ]
2934
},
3035
{
31-
"taskName": "Build",
36+
"taskName": "BuildAll",
3237
"suppressTaskName": true,
3338
"isBuildCommand": true,
39+
"args": [ "Invoke-Build BuildAll" ]
40+
},
41+
{
42+
"taskName": "Build",
43+
"suppressTaskName": true,
3444
"args": [ "Invoke-Build Build" ]
3545
}
3646
]

0 commit comments

Comments
 (0)
Please sign in to comment.