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

github.com/mono/corert.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to '.vscode/tasks.json')
-rw-r--r--.vscode/tasks.json18
1 files changed, 18 insertions, 0 deletions
diff --git a/.vscode/tasks.json b/.vscode/tasks.json
new file mode 100644
index 000000000..3420cc476
--- /dev/null
+++ b/.vscode/tasks.json
@@ -0,0 +1,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"
+ }
+ ]
+}