diff --git a/.vscode/tasks.json b/.vscode/tasks.json index 27f9f34502..e51b7f8d40 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -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", @@ -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 + } } ] }