1234567891011121314151617181920212223242526272829303132333435363738 |
- {
-
-
-
- "version": "0.2.0",
- "configurations": [
- {
-
-
-
- "name": ".NET Core Launch (web)",
- "type": "coreclr",
- "request": "launch",
- "preLaunchTask": "build",
-
- "program": "${workspaceFolder}/Ropin.Inspection.Api/bin/Debug/net5.0/Ropin.Inspection.Api.dll",
- "args": [],
- "cwd": "${workspaceFolder}/Ropin.Inspection.Api",
- "stopAtEntry": false,
-
- "serverReadyAction": {
- "action": "openExternally",
- "pattern": "\\bNow listening on:\\s+(https?://\\S+)"
- },
- "env": {
- "ASPNETCORE_ENVIRONMENT": "Development"
- },
- "sourceFileMap": {
- "/Views": "${workspaceFolder}/Views"
- }
- },
- {
- "name": ".NET Core Attach",
- "type": "coreclr",
- "request": "attach"
- }
- ]
- }
|