{ "version": "0.2.0", "configurations": [ { // Use IntelliSense to find out which attributes exist for C# debugging // Use hover for the description of the existing attributes // For further information visit https://github.com/OmniSharp/omnisharp-vscode/blob/master/debugger-launchjson.md "name": ".NET Core Launch (web) - Server", "type": "coreclr", "request": "launch", "preLaunchTask": "buildServer", // If you have changed target frameworks, make sure to update the program path. "program": "${workspaceFolder}/Server/bin/Debug/net7.0/win-x64/OI.Metrology.Server.dll", "args": [], "cwd": "${workspaceFolder}/Server", "stopAtEntry": false, // Enable launching a web browser when ASP.NET Core starts. For more information: https://aka.ms/VSCode-CS-LaunchJson-WebBrowser "serverReadyAction": { "action": "openExternally", "pattern": "\\bNow listening on:\\s+(https?://\\S+)", "uriFormat": "%s/swagger/index.html" }, "env": { "ASPNETCORE_ENVIRONMENT": "Development" }, "sourceFileMap": { "/Views": "${workspaceFolder}/Server/Views" } }, { "name": ".NET Core Attach - Server", "type": "coreclr", "request": "attach", "preLaunchTask": "watchServer", "processName": "OI.Metrology.Server.exe" }, { // Use IntelliSense to find out which attributes exist for C# debugging // Use hover for the description of the existing attributes // For further information visit https://github.com/OmniSharp/omnisharp-vscode/blob/master/debugger-launchjson.md "name": ".NET Core Launch (web) - ClientHub", "type": "coreclr", "request": "launch", "preLaunchTask": "buildClientHub", // If you have changed target frameworks, make sure to update the program path. "program": "${workspaceFolder}/ClientHub/bin/Debug/net7.0/win-x64/OI.Metrology.ClientHub.dll", "args": [], "cwd": "${workspaceFolder}/ClientHub", "stopAtEntry": false, // Enable launching a web browser when ASP.NET Core starts. For more information: https://aka.ms/VSCode-CS-LaunchJson-WebBrowser "serverReadyAction": { "action": "openExternally", "pattern": "\\bNow listening on:\\s+(https?://\\S+)", "uriFormat": "%s/swagger/index.html" }, "env": { "ASPNETCORE_ENVIRONMENT": "Development" }, "sourceFileMap": { "/Views": "${workspaceFolder}/ClientHub/Views" } }, { "name": ".NET Core Attach - ClientHub", "type": "coreclr", "request": "attach", "preLaunchTask": "watchClientHub", "processName": "OI.Metrology.ClientHub.exe" }, { "name": ".NET Core Attach", "type": "coreclr", "request": "attach" } ] }