64 lines
2.3 KiB
JSON
64 lines
2.3 KiB
JSON
|
{
|
||
|
// 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
|
||
|
"version": "0.2.0",
|
||
|
"configurations": [
|
||
|
{
|
||
|
"name": "debug PTMagic",
|
||
|
"type": "coreclr",
|
||
|
"request": "launch",
|
||
|
"preLaunchTask": "VS build PTMagic",
|
||
|
// If you have changed target frameworks, make sure to update the program path.
|
||
|
"program": "${workspaceFolder}/PTMagic/bin/Debug/netcoreapp2.0/PTMagic.dll",
|
||
|
"args": [],
|
||
|
"cwd": "${workspaceFolder}/PTMagic",
|
||
|
"stopAtEntry": false,
|
||
|
"internalConsoleOptions": "openOnSessionStart",
|
||
|
"env": {
|
||
|
"ASPNETCORE_ENVIRONMENT": "Development"
|
||
|
},
|
||
|
"sourceFileMap": {
|
||
|
"/Views": "${workspaceFolder}/Views"
|
||
|
}
|
||
|
},
|
||
|
{
|
||
|
"name": "debug Monitor",
|
||
|
"type": "coreclr",
|
||
|
"request": "launch",
|
||
|
"preLaunchTask": "VS build Monitor",
|
||
|
// If you have changed target frameworks, make sure to update the program path.
|
||
|
"program": "${workspaceFolder}/Monitor/bin/Debug/netcoreapp2.0/Monitor.dll",
|
||
|
"args": [],
|
||
|
"cwd": "${workspaceFolder}/Monitor",
|
||
|
"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}"
|
||
|
}
|
||
|
,]
|
||
|
}
|