57 lines
2.0 KiB
JSON
57 lines
2.0 KiB
JSON
{
|
|
// Use IntelliSense to learn about possible attributes.
|
|
// Hover to view descriptions of existing attributes.
|
|
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"name": ".NET Core Launch (console)",
|
|
"type": "coreclr",
|
|
"request": "launch",
|
|
"preLaunchTask": "build",
|
|
"program": "${workspaceFolder}/bin/Debug/<insert-target-framework-here>/<insert-project-name-here>.dll",
|
|
"args": [],
|
|
"cwd": "${workspaceFolder}",
|
|
"console": "internalConsole",
|
|
"stopAtEntry": false,
|
|
"internalConsoleOptions": "openOnSessionStart"
|
|
},
|
|
{
|
|
"name": ".NET Core Launch (web)",
|
|
"type": "coreclr",
|
|
"request": "launch",
|
|
"preLaunchTask": "build",
|
|
"program": "${workspaceFolder}/bin/Debug/<insert-target-framework-here>/<insert-project-name-here>.dll",
|
|
"args": [],
|
|
"cwd": "${workspaceFolder}",
|
|
"stopAtEntry": false,
|
|
"internalConsoleOptions": "openOnSessionStart",
|
|
"launchBrowser": {
|
|
"enabled": true,
|
|
"args": "${auto-detect-url}",
|
|
"windows": {
|
|
"command": "cmd.exe",
|
|
"args": "/C start ${auto-detect-url}"
|
|
},
|
|
"osx": {
|
|
"command": "open"
|
|
},
|
|
"linux": {
|
|
"command": "xdg-open"
|
|
}
|
|
},
|
|
"env": {
|
|
"ASPNETCORE_ENVIRONMENT": "Development"
|
|
},
|
|
"sourceFileMap": {
|
|
"/Views": "${workspaceFolder}/Views"
|
|
}
|
|
},
|
|
{
|
|
"name": ".NET Core Attach",
|
|
"type": "coreclr",
|
|
"request": "attach",
|
|
"processId": "${command:pickProcess}"
|
|
}
|
|
]
|
|
} |