VS Code

时间:2016-07-29 08:31:49

标签: visual-studio-code .net-core

是否可以使用VS Code调用多个预启动任务?

我尝试恢复包然后构建然后运行但我只能配置构建。

我的launch.json:

{
        "name": ".NET Core Launch (console)",
        "type": "coreclr",
        "request": "launch",
        "preLaunchTask": "build",
        "program": "${workspaceRoot}/src/myProject/bin/Debug/netcoreapp1.0/myProject.dll",
        "args": [],
        "cwd": "${workspaceRoot}/src/myProject",
        "stopAtEntry": false,
        "externalConsole": false
    },

我的tasks.json:

{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "0.1.0",
"command": "dotnet",
"isShellCommand": true,
"args": [],
"tasks": [
    {
        "taskName": "build",
        "args": [
            "./**/project.json"
            ],
        "isBuildCommand": true,
        "showOutput": "always",
        "problemMatcher": "$msCompile"
    }
]

}

所以我尝试指定dotnet restore命令,但它不起作用。

0 个答案:

没有答案