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 1462246 commit 1c141f6Copy full SHA for 1c141f6
.vscode/tasks.json
@@ -0,0 +1,24 @@
1
+{
2
+ // See https://go.microsoft.com/fwlink/?LinkId=733558
3
+ // for the documentation about the tasks.json format
4
+ "version": "2.0.0",
5
+ "tasks": [
6
+ {
7
+ "label": "build",
8
+ "command": "dotnet",
9
+ "type": "shell",
10
+ "args": [
11
+ "build",
12
+ // Ask dotnet build to generate full paths for file names.
13
+ "/property:GenerateFullPaths=true",
14
+ // Do not generate summary otherwise it leads to duplicate errors in Problems panel
15
+ "/consoleloggerparameters:NoSummary"
16
+ ],
17
+ "group": "build",
18
+ "presentation": {
19
+ "reveal": "silent"
20
+ },
21
+ "problemMatcher": "$msCompile"
22
+ }
23
+ ]
24
+}
0 commit comments