ホームページ  >  に質問  >  本文

visual-studio-code - vscode配置c/c++怎么让编译之后立刻运行?

只是想编译之后立刻运行,像sublime那样从文件读入后输出到下面控制台。
写了个tasks.json

{
    // See https://go.microsoft.com/fwlink/?LinkId=733558
    // for the documentation about the tasks.json format
    "version": "0.1.0",
    "tasks": [
        {
            "taskName": "build",
            "command": "g++",
            "isShellCommand": true,
            "args": [
                "-o",
                "${workspaceRoot}/main",
                "${workspaceRoot}/main.cpp"
            ],
            "showOutput": "always"
        },
        {
            "taskName": "run",
            "command": "${workspaceRoot}/main",
            "isShellCommand": true,
            "showOutput": "always"
        }
    ]
}

为啥,第二个任务不会运行。。

高洛峰高洛峰2765日前609

全員に返信(1)返信します

  • 天蓬老师

    天蓬老师2017-04-17 15:27:32

    VS Code タスクは継続的に実行されなくなります。

    解決策:

    1. スクリプト、msbuild、make などの外部ツールを使用します。

    2. ブレークポイントを追加せずにデバッグを構成します。コンパイル後、F5 を押して

    3. を実行します。

    2017-03-02 更新:

    VS Code 1.10 は複数のタスクの結合をサポートしており、単一のタスクにショートカット キーを設定することもできます。

    返事
    0
  • キャンセル返事