在visual studio代码中发布启动任务

时间:2018-02-07 07:57:16

标签: node.js visual-studio-code task

我可以在使用launch.json中的preLaunchTask arg在vscode中调试我的节点应用程序之前启动任务,但是我无法在调试后找到启动任务的方法。有没有办法在vscode中执行此操作,就像使用preLaunchTask一样?

1 个答案:

答案 0 :(得分:1)

v1.22刚刚添加了postDebugTaskrelease notes: postDebugTask

  

我们在launch.json中添加了postDebugTask支持。此任务已运行   调试会话结束后。与preLaunchTask类似,你可以   通过名称在tasks.json中引用任务。这是一个例子   使用postDebugTask启动配置:

{
    "name": "Attach to node server",
    "type": "node",
    "request": "attach",
    "port": 8008,
    "preLaunchTask": "Start Server",
    "postDebugTask": "Your delete task here"
}