File tree Expand file tree Collapse file tree 1 file changed +29
-12
lines changed Expand file tree Collapse file tree 1 file changed +29
-12
lines changed Original file line number Diff line number Diff line change 1
1
{
2
- "version" : " 0.1.0" ,
3
- "command" : " dotnet" ,
4
- "isShellCommand" : true ,
5
- "args" : [],
6
- "options" : {
7
- "cwd" : " ${workspaceRoot}\\ tests\\ MySqlConnector.Tests"
8
- },
2
+ "version" : " 2.0.0" ,
9
3
"tasks" : [
10
4
{
11
- "taskName" : " build" ,
12
- "args" : [ ],
13
- "isBuildCommand" : true ,
14
- "showOutput" : " silent" ,
5
+ "label" : " build" ,
6
+ "command" : " dotnet" ,
7
+ "type" : " shell" ,
8
+ "args" : [
9
+ " build" ,
10
+ // Ask dotnet build to generate full paths for file names.
11
+ " /property:GenerateFullPaths=true" ,
12
+ // Do not generate summary otherwise it leads to duplicate errors in Problems panel
13
+ " /consoleloggerparameters:NoSummary"
14
+ ],
15
+ "group" : " build" ,
16
+ "presentation" : {
17
+ "reveal" : " silent"
18
+ },
15
19
"problemMatcher" : " $msCompile"
20
+ },
21
+ {
22
+ "label" : " test" ,
23
+ "command" : " dotnet" ,
24
+ "type" : " shell" ,
25
+ "args" : [
26
+ " test" ,
27
+ " --configuration=Release"
28
+ ],
29
+ "group" : " test" ,
30
+ "presentation" : {
31
+ "reveal" : " silent"
32
+ }
16
33
}
17
34
]
18
- }
35
+ }
You can’t perform that action at this time.
0 commit comments