We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b6d3e5d commit c99156fCopy full SHA for c99156f
1 file changed
.vscode/tasks.json
@@ -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
20
21
22
+ "test",
23
+ "/property:GenerateFullPaths=true"
24
25
+ "group": "test",
26
27
+ }
28
+ ]
29
+}
0 commit comments