We have a variety of VSCode Tasks that are run as part of Debug targets via PreLaunchTask and these tasks pollute the dropdown list making it difficult to find other tasks. It would be super helpful if we could hide them. Here is my proposition:
{
"label": "build task for launch target",
----> "hidden": true,
"type": "shell",
"command": "bash build.sh",
"problemMatcher": []
}
or
{
"label": "build task for launch target",
"options": {
----> "hidden": true
},
"type": "shell",
"command": "bash build.sh",
"problemMatcher": []
}
Thoughts?
We have a variety of VSCode Tasks that are run as part of Debug targets via
PreLaunchTaskand these tasks pollute the dropdown list making it difficult to find other tasks. It would be super helpful if we could hide them. Here is my proposition:or
Thoughts?