3
3
// Hover to view descriptions of existing attributes.
4
4
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5
5
"version" : " 0.2.0" ,
6
- "configurations" : [
7
- {
6
+ "configurations" : [{
8
7
"name" : " .NET Core Launch (console)" ,
9
8
"type" : " coreclr" ,
10
9
"request" : " launch" ,
11
10
"preLaunchTask" : " build" ,
12
- "program" :
13
- " ${workspaceFolder}/bin/Debug/netcoreapp2.1/SampleWebApiAspNetCore.dll" ,
11
+ "program" : " ${workspaceFolder}/bin/Debug/netcoreapp3.1/SampleWebApiAspNetCore.dll" ,
14
12
"args" : [],
15
13
"cwd" : " ${workspaceFolder}" ,
16
14
"console" : " internalConsole" ,
22
20
"type" : " coreclr" ,
23
21
"request" : " launch" ,
24
22
"preLaunchTask" : " build" ,
25
- "program" :
26
- " ${workspaceFolder}/bin/Debug/netcoreapp2.1/SampleWebApiAspNetCore.dll" ,
23
+ "program" : " ${workspaceFolder}/bin/Debug/netcoreapp3.1/SampleWebApiAspNetCore.dll" ,
27
24
"args" : [],
28
25
"cwd" : " ${workspaceFolder}" ,
29
26
"stopAtEntry" : false ,
35
32
"command" : " cmd.exe" ,
36
33
"args" : " /C start ${auto-detect-url}"
37
34
},
38
- "osx" : { "command" : " open" },
39
- "linux" : { "command" : " xdg-open" }
35
+ "osx" : {
36
+ "command" : " open"
37
+ },
38
+ "linux" : {
39
+ "command" : " xdg-open"
40
+ }
41
+ },
42
+ "env" : {
43
+ "ASPNETCORE_ENVIRONMENT" : " Development"
40
44
},
41
- "env" : { "ASPNETCORE_ENVIRONMENT" : " Development" },
42
- "sourceFileMap" : { "/Views" : " ${workspaceFolder}/Views" }
45
+ "sourceFileMap" : {
46
+ "/Views" : " ${workspaceFolder}/Views"
47
+ }
43
48
},
44
49
{
45
50
"name" : " .NET Core Attach" ,
48
53
"processId" : " ${command:pickProcess}"
49
54
}
50
55
]
51
- }
56
+ }
0 commit comments