rFactor2_vk_hud/.vscode/tasks.json

26 lines
394 B
JSON
Raw Permalink Normal View History

2023-01-10 13:24:04 +00:00
{
"version": "2.0.0",
"tasks": [
{
"type": "cargo",
"command": "build",
2023-01-17 14:44:11 +00:00
"args": [
"--release"
],
2023-01-10 13:24:04 +00:00
"problemMatcher": [
"$rustc"
],
"group": "build",
2023-01-17 14:44:11 +00:00
"label": "rust: cargo build"
2023-01-14 19:15:43 +00:00
},
{
"type": "shell",
"command": "steam steam://rungameid/365960",
"group": "build",
"label": "Run rFactor2",
"dependsOn": [
"rust: cargo build"
]
},
2023-01-10 13:24:04 +00:00
]
}