File tree Expand file tree Collapse file tree 2 files changed +34
-7
lines changed Expand file tree Collapse file tree 2 files changed +34
-7
lines changed Original file line number Diff line number Diff line change 10
10
"request" : " launch" ,
11
11
"preLaunchTask" : " build" ,
12
12
// If you have changed target frameworks, make sure to update the program path.
13
- "program" : " ${workspaceFolder}/src/Microsoft.OpenApi.Hidi/bin/Debug/netcoreapp3.1 /Microsoft.OpenApi.Hidi.dll" ,
13
+ "program" : " ${workspaceFolder}/src/Microsoft.OpenApi.Hidi/bin/Debug/net6.0 /Microsoft.OpenApi.Hidi.dll" ,
14
14
"args" : [],
15
15
"cwd" : " ${workspaceFolder}/src/Microsoft.OpenApi.Hidi" ,
16
16
// For more information about the 'console' field, see https://aka.ms/VSCode-CS-LaunchJson-Console
Original file line number Diff line number Diff line change 5
5
"tasks" : [
6
6
{
7
7
"label" : " build" ,
8
- "type" : " shell" ,
9
- "command" : " msbuild" ,
8
+ "command" : " dotnet" ,
9
+ "type" : " process" ,
10
+ "group" : " build" ,
11
+ "args" : [
12
+ " build" ,
13
+ " ${workspaceFolder}/src/Microsoft.OpenApi.Hidi/Microsoft.OpenApi.Hidi.csproj" ,
14
+ " /property:GenerateFullPaths=true" ,
15
+ " /consoleloggerparameters:NoSummary"
16
+ ],
17
+ "problemMatcher" : " $msCompile"
18
+ },
19
+ {
20
+ "label" : " test" ,
21
+ "command" : " dotnet" ,
22
+ "type" : " process" ,
23
+ "group" : " test" ,
10
24
"args" : [
25
+ " test" ,
26
+ " ${workspaceFolder}/Microsoft.OpenApi.sln" ,
11
27
" /property:GenerateFullPaths=true" ,
12
- " /t:build"
28
+ " /consoleloggerparameters:NoSummary" ,
29
+ " --collect:\" XPlat Code Coverage\" "
13
30
],
31
+ "problemMatcher" : " $msCompile"
32
+ },
33
+ {
34
+ "label" : " watch" ,
35
+ "command" : " dotnet" ,
36
+ "type" : " process" ,
14
37
"group" : " build" ,
15
- "presentation" : {
16
- "reveal" : " silent"
17
- },
38
+ "args" : [
39
+ " watch" ,
40
+ " run" ,
41
+ " ${workspaceFolder}/src/Microsoft.OpenApi.Hidi/Microsoft.OpenApi.Hidi.csproj" ,
42
+ " /property:GenerateFullPaths=true" ,
43
+ " /consoleloggerparameters:NoSummary"
44
+ ],
18
45
"problemMatcher" : " $msCompile"
19
46
},
20
47
{
You can’t perform that action at this time.
0 commit comments