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" ,
62 "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" : " ${workspaceRoot}/bin/Debug/netcoreapp3.1/surveyjs-aspnet-mvc.dll" ,
14- "args" : [],
15- "cwd" : " ${workspaceRoot}" ,
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" : " ${workspaceRoot}/Views"
37- }
3+ {
4+ "name" : " .NET Core Launch (web)" ,
5+ "type" : " coreclr" ,
6+ "request" : " launch" ,
7+ "preLaunchTask" : " build" ,
8+ "program" : " ${workspaceFolder}/bin/Debug/net8.0/surveyjs-aspnet-mvc.dll" ,
9+ "args" : [],
10+ "cwd" : " ${workspaceFolder}" ,
11+ "stopAtEntry" : false ,
12+ "serverReadyAction" : {
13+ "action" : " openExternally" ,
14+ "pattern" : " \\ bNow listening on:\\ s+(https?://\\ S+)"
3815 },
39- {
40- "name " : " .NET Core Attach " ,
41- "type" : " coreclr " ,
42- "request " : " attach " ,
43- "processId " : " ${command:pickProcess} "
16+ "env" : {
17+ "ASPNETCORE_ENVIRONMENT " : " Development "
18+ } ,
19+ "sourceFileMap " : {
20+ "/Views " : " ${workspaceFolder}/Views "
4421 }
22+ }
4523 ]
4624}
0 commit comments