Skip to content

Commit 47e9221

Browse files
committed
Add a VSCode task file
1 parent b6ff66d commit 47e9221

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

.vscode/tasks.json

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{
2+
"version": "2.0.0",
3+
"tasks": [
4+
{
5+
"label": "build",
6+
"group": {"kind": "build", "isDefault": true},
7+
"type": "shell",
8+
"command": "dotnet",
9+
"args": ["cake", "--target", "build"],
10+
"problemMatcher": "$msCompile"
11+
}
12+
]
13+
}

0 commit comments

Comments
 (0)