Files
portmaster/desktop/tauri/.vscode/tasks.json
Alexandr Stelnykovych 2d7d0323b0
Some checks failed
Angular / Lint (push) Has been cancelled
Angular / Build (push) Has been cancelled
Release v2.X / Prep (push) Has been cancelled
Tauri / Build (push) Has been cancelled
Tauri / Linter (push) Has been cancelled
Release v2.X / Installer linux (push) Has been cancelled
Release v2.X / Installer windows (push) Has been cancelled
Close Stale Issues / stale (push) Has been cancelled
feat(VisualStudio Code): add launch configurations
2025-12-17 14:08:24 +02:00

13 lines
350 B
JSON

{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "build:debug",
"type": "cargo",
"command": "build",
"args": ["--manifest-path=./src-tauri/Cargo.toml", "--no-default-features"]
}
]
}