1234567891011121314151617181920212223242526272829303132333435363738 |
- {
-
-
-
- "version": "0.2.0",
- "configurations": [
- {
- "name": ".NET Core Launch (web)",
- "type": "coreclr",
- "request": "launch",
- "preLaunchTask": "build",
-
- "program": "${workspaceFolder}/bin/Debug/netcoreapp3.1/FMSAdmin.dll",
- "args": [],
- "cwd": "${workspaceFolder}",
- "stopAtEntry": false,
-
-
- "env": {
- "ASPNETCORE_ENVIRONMENT": "Development"
- },
- "sourceFileMap": {
- "/Views": "${workspaceFolder}/Views"
- }
- },
- {
- "name": ".NET Core Attach",
- "type": "coreclr",
- "request": "attach",
- "processId": "${command:pickProcess}"
- }
- ]
- }
|