"taskName" changed to "label" as per version 2.0.0 (#1713)

Reference Link: https://code.visualstudio.com/docs/editor/tasks#_migrating-to-tasks-200
This commit is contained in:
Shubham Bhattar 2018-03-22 01:14:47 +05:30 коммит произвёл Bob Brown
Родитель f5a2192235
Коммит 97a635bf2d
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -4,7 +4,7 @@
"version": "2.0.0",
"tasks": [
{
"taskName": "clang++",
"label": "clang++",
"command": "clang++ --debug -o main.exe main.cpp",
// "--debug" enables debugging symbols
// "-o main.exe" specifies the output executable
@ -16,4 +16,4 @@
}
}
]
}
}