Skip to content

Commit a837c65

Browse files
committed
Add VSCode build task for cargo build
1 parent ffbb57a commit a837c65

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

.vscode/tasks.json

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
{
2+
"version": "2.0.0",
3+
"tasks": [
4+
{
5+
"type": "cargo",
6+
"subcommand": "build",
7+
"problemMatcher": [
8+
"$rustc"
9+
],
10+
"group": "build",
11+
"label": "Rust: cargo build"
12+
}
13+
]
14+
}

0 commit comments

Comments
 (0)