11{
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
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
55 "version" : " 0.2.0" ,
66 "configurations" : [
77 {
88 "name" : " .NET Core Launch (web)" ,
99 "type" : " coreclr" ,
1010 "request" : " launch" ,
1111 "preLaunchTask" : " build" ,
12- "program" : " ${workspaceFolder}/bin/Debug/netcoreapp3.1/AspNetCoreVueStarter.dll" ,
12+ // If you have changed target frameworks, make sure to update the program path.
13+ "program" : " ${workspaceFolder}/bin/Debug/net5.0/AspNetCoreVueStarter.dll" ,
1314 "args" : [],
1415 "cwd" : " ${workspaceFolder}" ,
1516 "stopAtEntry" : false ,
17+ // Enable launching a web browser when ASP.NET Core starts. For more information: https://aka.ms/VSCode-CS-LaunchJson-WebBrowser
1618 "serverReadyAction" : {
1719 "action" : " openExternally" ,
18- "pattern" : " ^ \\ s*Now listening on:\\ s+(https?://\\ S+)"
20+ "pattern" : " \\ bNow listening on:\\ s+(https?://\\ S+)"
1921 },
2022 "env" : {
2123 "ASPNETCORE_ENVIRONMENT" : " Development"
4143 "sourceMapPathOverrides" : {
4244 "webpack:///*" : " ${webRoot}/*" ,
4345 "webpack:///./*" : " ${webRoot}/*" ,
44- "webpack:///src/*" : " ${webRoot}/src/ *"
46+ "webpack:///src/*" : " ${webRoot}/*"
4547 }
4648 },
4749 {
4850 "name" : " Launch Firefox" ,
51+ "type" : " firefox" ,
4952 "request" : " launch" ,
5053 "url" : " http://localhost:5000" ,
51- "type" : " firefox" ,
5254 "webRoot" : " ${workspaceFolder}/ClientApp" ,
5355 "pathMappings" : [
5456 {
55- "url" : " webpack:///src" ,
56- "path" : " ${webRoot}/src "
57+ "url" : " webpack:///src/ " ,
58+ "path" : " ${webRoot}/"
5759 }
5860 ]
5961 }
6062 ],
6163 "compounds" : [
6264 {
6365 "name" : " Debug SPA and API (Chrome)" ,
64- "configurations" : [" .NET Core Launch (web)" , " Launch Chrome" ]
66+ "configurations" : [
67+ " .NET Core Launch (web)" ,
68+ " Launch Chrome"
69+ ]
6570 },
6671 {
6772 "name" : " Debug SPA and API (Firefox)" ,
68- "configurations" : [" .NET Core Launch (web)" , " Launch Firefox" ]
73+ "configurations" : [
74+ " .NET Core Launch (web)" ,
75+ " Launch Firefox"
76+ ]
6977 }
7078 ]
71- }
79+ }
0 commit comments