File tree Expand file tree Collapse file tree 2 files changed +50
-3
lines changed Expand file tree Collapse file tree 2 files changed +50
-3
lines changed Original file line number Diff line number Diff line change 16
16
" unmanaged" ,
17
17
" xunit"
18
18
],
19
- "coverage-gutters.coverageBaseDir" : " artifacts/coverage " ,
19
+ "coverage-gutters.coverageBaseDir" : " artifacts/logs " ,
20
20
"coverage-gutters.coverageFileNames" : [
21
21
" **/coverage.cobertura.xml"
22
22
],
23
23
"dotnet.defaultSolution" : " Autofac.Multitenant.sln" ,
24
+ "explorer.fileNesting.enabled" : true ,
25
+ "explorer.fileNesting.patterns" : {
26
+ "*.resx" : " $(capture).*.resx, $(capture).designer.cs, $(capture).designer.vb"
27
+ },
24
28
"files.watcherExclude" : {
25
29
"**/target" : true
26
30
}
Original file line number Diff line number Diff line change 1
1
{
2
+ "linux" : {
3
+ "options" : {
4
+ "shell" : {
5
+ "args" : [
6
+ " -NoProfile" ,
7
+ " -Command"
8
+ ],
9
+ "executable" : " pwsh"
10
+ }
11
+ }
12
+ },
13
+ "osx" : {
14
+ "options" : {
15
+ "shell" : {
16
+ "args" : [
17
+ " -NoProfile" ,
18
+ " -Command"
19
+ ],
20
+ "executable" : " /usr/local/bin/pwsh"
21
+ }
22
+ }
23
+ },
2
24
"tasks" : [
25
+ {
26
+ "command" : " If (Test-Path ${workspaceFolder}/artifacts/logs) { Remove-Item ${workspaceFolder}/artifacts/logs -Recurse -Force }; New-Item -Path ${workspaceFolder}/artifacts/logs -ItemType Directory -Force | Out-Null" ,
27
+ "label" : " create log directory" ,
28
+ "type" : " shell"
29
+ },
3
30
{
4
31
"args" : [
5
32
" build" ,
23
50
" /property:GenerateFullPaths=true" ,
24
51
" /consoleloggerparameters:NoSummary" ,
25
52
" --results-directory" ,
26
- " \" artifacts/coverage \" " ,
53
+ " \" artifacts/logs \" " ,
27
54
" --logger:trx" ,
28
55
" --collect:\" XPlat Code Coverage\" " ,
29
56
" --settings:build/Coverage.runsettings"
30
57
],
31
58
"command" : " dotnet" ,
59
+ "dependsOn" : [
60
+ " create log directory"
61
+ ],
32
62
"group" : {
33
63
"isDefault" : true ,
34
64
"kind" : " test"
38
68
"type" : " process"
39
69
}
40
70
],
41
- "version" : " 2.0.0"
71
+ "version" : " 2.0.0" ,
72
+ "windows" : {
73
+ "options" : {
74
+ "shell" : {
75
+ "args" : [
76
+ " -NoProfile" ,
77
+ " -ExecutionPolicy" ,
78
+ " Bypass" ,
79
+ " -Command"
80
+ ],
81
+ "executable" : " pwsh.exe"
82
+ }
83
+ }
84
+ }
42
85
}
You can’t perform that action at this time.
0 commit comments