Skip to content

Commit

Permalink
Finish tasks (#2)
Browse files Browse the repository at this point in the history
  • Loading branch information
Ash258 committed Aug 27, 2018
1 parent 4cc3228 commit 9f04716
Showing 1 changed file with 44 additions and 0 deletions.
44 changes: 44 additions & 0 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,38 @@
"isDefault": true
}
},
{
"label": "Check version and update (Actual)",
"type": "shell",
"command": ".\\bin\\checkver.ps1 ${fileBasenameNoExtension} ${fileDirname} -u",
"presentation": {
"echo": true,
"reveal": "silent",
"focus": false,
"panel": "shared",
"showReuseMessage": false
},
"group": {
"kind": "test",
"isDefault": true
}
},
{
"label": "Check version and force update (Actual)",
"type": "shell",
"command": ".\\bin\\checkver.ps1 ${fileBasenameNoExtension} ${fileDirname} -f",
"presentation": {
"echo": true,
"reveal": "silent",
"focus": false,
"panel": "shared",
"showReuseMessage": false
},
"group": {
"kind": "test",
"isDefault": true
}
},
{
"label": "Check version (Recursive)",
"type": "shell",
Expand All @@ -40,6 +72,18 @@
"panel": "shared",
"showReuseMessage": false
}
},
{
"label": "Missing Checkver",
"type": "shell",
"command": ".\\bin\\missing-checkver.ps1; .\\bin\\missing-checkver.ps1 -dir TODO",
"presentation": {
"echo": true,
"reveal": "silent",
"focus": false,
"panel": "shared",
"showReuseMessage": false
}
}
]
}

0 comments on commit 9f04716

Please sign in to comment.