22 "version" : " 0.2.0" ,
33 "configurations" : [
44 {
5+ // Use IntelliSense to find out which attributes exist for C# debugging
6+ // Use hover for the description of the existing attributes
7+ // For further information visit https://github.com/dotnet/vscode-csharp/blob/main/debugger-launchjson.md
58 "name" : " .NET Core Launch (console)" ,
69 "type" : " coreclr" ,
710 "request" : " launch" ,
811 "preLaunchTask" : " build" ,
9- "program" : " ${workspaceRoot}/bin/Debug/<target-framework>/<project-name.dll>" ,
12+ // If you have changed target frameworks, make sure to update the program path.
13+ "program" : " ${workspaceFolder}/src/LinqStatisticsTests/bin/Debug/net8.0/LinqStatisticsTests.dll" ,
1014 "args" : [],
11- "cwd" : " ${workspaceRoot}" ,
12- "stopAtEntry" : false ,
13- "externalConsole" : false
14- },
15- {
16- "name" : " .NET Core Launch (web)" ,
17- "type" : " coreclr" ,
18- "request" : " launch" ,
19- "preLaunchTask" : " build" ,
20- "program" : " ${workspaceRoot}/bin/Debug/<target-framework>/<project-name.dll>" ,
21- "args" : [],
22- "cwd" : " ${workspaceRoot}" ,
23- "stopAtEntry" : false ,
24- "launchBrowser" : {
25- "enabled" : true ,
26- "args" : " ${auto-detect-url}" ,
27- "windows" : {
28- "command" : " cmd.exe" ,
29- "args" : " /C start ${auto-detect-url}"
30- },
31- "osx" : {
32- "command" : " open"
33- },
34- "linux" : {
35- "command" : " xdg-open"
36- }
37- },
38- "env" : {
39- "ASPNETCORE_ENVIRONMENT" : " Development"
40- },
41- "sourceFileMap" : {
42- "/Views" : " ${workspaceRoot}/Views"
43- }
15+ "cwd" : " ${workspaceFolder}/src/LinqStatisticsTests" ,
16+ // For more information about the 'console' field, see https://aka.ms/VSCode-CS-LaunchJson-Console
17+ "console" : " internalConsole" ,
18+ "stopAtEntry" : false
4419 },
4520 {
4621 "name" : " .NET Core Attach" ,
4722 "type" : " coreclr" ,
48- "request" : " attach" ,
49- "processId" : " ${command.pickProcess}"
23+ "request" : " attach"
5024 }
5125 ]
5226}
0 commit comments