Files
yourpart-daemon/.vscode/tasks.json
Torsten Schulz (local) 8f8fb8418a
All checks were successful
Deploy yourpart (blue-green) / deploy (push) Successful in 2m45s
Ändere Dateiberechtigungen auf ausführbar für mehrere Dateien
2026-07-16 09:16:49 +02:00

27 lines
445 B
JSON
Executable File

{
"version": "2.0.0",
"tasks": [
{
"label": "Build and clippy",
"type": "shell",
"command": "cargo build && cargo clippy",
"group": "build"
},
{
"label": "cargo build",
"type": "shell",
"command": "cargo build",
"group": "build"
},
{
"label": "Build YpDaemon",
"type": "shell",
"command": "cargo build",
"isBackground": false,
"problemMatcher": [
"$rustc"
],
"group": "build"
}
]
}