Welcome to mirror list, hosted at ThFree Co, Russian Federation.

tasks.json « .vscode - github.com/mono/corert.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3420cc476ef6e3d7690ed92a9d1342c70a0ed4e3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
    // See https://go.microsoft.com/fwlink/?LinkId=733558
    // for the documentation about the tasks.json format
    "version": "0.1.0",
    "command": "${workspaceRoot}/build.sh",
    "isShellCommand": false,
    "args": [],
    "tasks": [
        {
            "taskName": "build",
            "args": [ ],
            "isBuildCommand": true,
            "showOutput": "silent",
            "suppressTaskName" : true,
            "problemMatcher": "$msCompile"
        }
    ]
}