Define multiple tasks in VSCode

后端 未结 13 2066
旧时难觅i
旧时难觅i 2020-11-28 05:40

I have seen that it is possible to define a task in the VSCode. But I am not sure how to define multiple tasks in the tasks.json file.

13条回答
  •  渐次进展
    2020-11-28 05:51

    You can list more than one task in the tasks property. Something like:

    "tasks": [
        {
            "taskName": "build",
            ...
        },
        {
             "taskName": "package",
             ...
        }
    ]
    

提交回复
热议问题