diff --git a/.vscode/launch.json b/.vscode/launch.json index 14cd719..93ffb39 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -8,7 +8,7 @@ "program": "${workspaceRoot}/target/debug/${workspaceFolderBasename}", "args": [], "cwd": "${workspaceRoot}", - "preLaunchTask":"build", + "preLaunchTask":"rust: cargo build", } ] } \ No newline at end of file diff --git a/.vscode/tasks.json b/.vscode/tasks.json index 50cd549..a131727 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -2,13 +2,16 @@ "version": "2.0.0", "tasks": [ { - "type": "cargo", - "command": "build", + "type": "process", + "command": "cargo", + "args": [ + "build" + ], "problemMatcher": [ "$rustc" ], "group": "build", - "label": "build" + "label": "rust: cargo build" } ] } \ No newline at end of file