Feature: ビルドタスクのgroup kindを適切な値にする
Opened this issue · 0 comments
yutotnh commented
なぜ機能が欲しいのか
.vscode/tasks.json
のgroup:kind
でbuild
やtest
と記載すると、下の画像のようにまとめて実行するコマンドをトリガーにして実行される
今までは意識していなかった(知らなかった)ので各タスクを整理し、テストタスクとして必要なものはtest
に、ビルドタスクとして必要なタスクはbuild
にする
当てはまらないものはnone
にする
{
"label": "Doxygen",
"type": "shell",
"dependsOn": [
"Doxygen: Developper build",
"Doxygen: Genaral users build"
],
"problemMatcher": [],
"group": {
"kind": "build",
"isDefault": false
},
"detail": "全てのDoxygen関連のタスクを実行する"
},
提案の説明
その他
タスクに関するページ