File tree Expand file tree Collapse file tree 4 files changed +41
-1
lines changed Expand file tree Collapse file tree 4 files changed +41
-1
lines changed Original file line number Diff line number Diff line change @@ -13,7 +13,6 @@ TestResults
1313* .user
1414* .sln.docstates
1515.vs /
16- .vscode /
1716.idea /
1817.ionide /
1918
Original file line number Diff line number Diff line change 1+ {
2+ "recommendations" : [
3+ " EditorConfig.EditorConfig" ,
4+ " k--kato.docomment" ,
5+ " ms-dotnettools.csharp"
6+ ]
7+ }
Original file line number Diff line number Diff line change 1+ {
2+ "version" : " 0.2.0" ,
3+ "configurations" : [
4+ {
5+ "name" : " Run tests" ,
6+ "type" : " coreclr" ,
7+ "request" : " launch" ,
8+ "preLaunchTask" : " build" ,
9+ "program" : " dotnet" ,
10+ "args" : [
11+ " test"
12+ ],
13+ "cwd" : " ${workspaceFolder}/src/Polly.Specs" ,
14+ "console" : " internalConsole" ,
15+ "stopAtEntry" : false ,
16+ "internalConsoleOptions" : " openOnSessionStart"
17+ }
18+ ]
19+ }
Original file line number Diff line number Diff line change 1+ {
2+ "version" : " 2.0.0" ,
3+ "tasks" : [
4+ {
5+ "label" : " build" ,
6+ "command" : " dotnet build ./src/Polly.sln" ,
7+ "type" : " shell" ,
8+ "group" : " build" ,
9+ "presentation" : {
10+ "reveal" : " silent"
11+ },
12+ "problemMatcher" : " $msCompile"
13+ }
14+ ]
15+ }
You can’t perform that action at this time.
0 commit comments