11{
2- // Use IntelliSense to find out which attributes exist for C# debugging
3- // Use hover for the description of the existing attributes
4- // For further information visit https://github.com/OmniSharp/omnisharp-vscode/blob/master/debugger-launchjson.md
5- "version" : " 0.2.0" ,
6- "configurations" : [
7- {
8- "name" : " .NET Core Launch (web)" ,
9- "type" : " coreclr" ,
10- "request" : " launch" ,
11- "preLaunchTask" : " build" ,
12- // If you have changed target frameworks, make sure to update the program path.
13- "program" : " ${workspaceFolder}/bin/Debug/netcoreapp2.1/asp-net-core-vue-starter.dll" ,
14- "args" : [],
15- "cwd" : " ${workspaceFolder}" ,
16- "stopAtEntry" : false ,
17- "internalConsoleOptions" : " openOnSessionStart" ,
18- "launchBrowser" : {
19- "enabled" : true ,
20- "args" : " ${auto-detect-url}" ,
21- "windows" : {
22- "command" : " cmd.exe" ,
23- "args" : " /C start ${auto-detect-url}"
24- },
25- "osx" : {
26- "command" : " open"
27- },
28- "linux" : {
29- "command" : " xdg-open"
30- }
31- },
32- "env" : {
33- "ASPNETCORE_ENVIRONMENT" : " Development"
34- },
35- "sourceFileMap" : {
36- "/Views" : " ${workspaceFolder}/Views"
37- }
38- },
39- {
40- "name" : " .NET Core Attach" ,
41- "type" : " coreclr" ,
42- "request" : " attach" ,
43- "processId" : " ${command:pickProcess}"
44- }
45- , ]
2+ // Use IntelliSense to learn about possible attributes.
3+ // Hover to view descriptions of existing attributes.
4+ // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5+ "version" : " 0.2.0" ,
6+ "configurations" : [
7+ {
8+ "name" : " .NET Core Launch (web)" ,
9+ "type" : " coreclr" ,
10+ "request" : " launch" ,
11+ "preLaunchTask" : " build" ,
12+ "program" : " ${workspaceFolder}/bin/Debug/netcoreapp3.0/AspNetCoreVueStarter.dll" ,
13+ "args" : [],
14+ "cwd" : " ${workspaceFolder}" ,
15+ "stopAtEntry" : false ,
16+ "serverReadyAction" : {
17+ "action" : " openExternally" ,
18+ "pattern" : " ^\\ s*Now listening on:\\ s+(https?://\\ S+)"
19+ },
20+ "env" : {
21+ "ASPNETCORE_ENVIRONMENT" : " Development"
22+ },
23+ "sourceFileMap" : {
24+ "/Views" : " ${workspaceFolder}/Views"
25+ }
26+ },
27+ {
28+ "name" : " .NET Core Attach" ,
29+ "type" : " coreclr" ,
30+ "request" : " attach" ,
31+ "processId" : " ${command:pickProcess}"
32+ }
33+ ]
4634}
0 commit comments