Skip to content

Commit c99156f

Browse files
committed
Add VS Code tasks
1 parent b6d3e5d commit c99156f

1 file changed

Lines changed: 29 additions & 0 deletions

File tree

.vscode/tasks.json

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
{
2+
"version": "2.0.0",
3+
"tasks": [
4+
{
5+
"label": "build",
6+
"command": "dotnet",
7+
"type": "shell",
8+
"args": [
9+
"build",
10+
"/property:GenerateFullPaths=true",
11+
"/consoleloggerparameters:NoSummary"
12+
],
13+
"group": "build",
14+
"presentation": { "reveal": "silent" },
15+
"problemMatcher": "$msCompile"
16+
},
17+
{
18+
"label": "test",
19+
"command": "dotnet",
20+
"type": "shell",
21+
"args": [
22+
"test",
23+
"/property:GenerateFullPaths=true"
24+
],
25+
"group": "test",
26+
"problemMatcher": "$msCompile"
27+
}
28+
]
29+
}

0 commit comments

Comments
 (0)