Visual Studio Code Debugger не работает и отсутствуют файлы - PullRequest
0 голосов
/ 02 октября 2019

Теперь мои проблемы: когда я пытаюсь отладить, он говорит: «не может найти сборку задачи. Когда я запускаю код, даже если он запущен, он говорит:

Error: the task 'build' neither specifies a command nor a dependsOn property. The task will be ignored. Its definition is:
{
    "label": "build",
    "type": "shell",
    "group": {
        "kind": "build",
        "isDefault": true
    },
    "windows": {
        "command": "powershell"
    },
    "linux": {
        "command": "bash"
    },
    "args": [
        "-c",
        "make"
    ]
}
Error: the task 'build & run' neither specifies a command nor a dependsOn property. The task will be ignored. Its definition is:
{
    "label": "build & run",
    "type": "shell",
    "group": {
        "kind": "test",
        "isDefault": true
    },
    "windows": {
        "command": "powershell"
    },
    "linux": {
        "command": "bash"
    },
    "args": [
        "-c",
        "'make run'"
    ]
}
Error: the task 'clean' neither specifies a command nor a dependsOn property. The task will be ignored. Its definition is:
{
    "label": "clean",
    "type": "shell",
    "windows": {
        "command": "powershell"
    },
    "linux": {
        "command": "bash"
    },
    "args": [
        "-c",
        "'make clean'"
    ]
}

Это две основные проблемы с кодом Visual Studio, и я действительно хочу понять, как использовать эту среду, поэтому буду признателен за любую помощь.

...