PTMagic/.vscode/launch.json

64 lines
2.3 KiB
JSON
Raw Normal View History

2018-05-22 10:11:50 +02:00
{
// 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.
2019-12-10 00:21:27 +01:00
"program": "${workspaceFolder}/PTMagic/bin/Debug/netcoreapp3.1/PTMagic.dll",
2018-05-22 10:11:50 +02:00
"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.
2019-12-10 00:21:27 +01:00
"program": "${workspaceFolder}/Monitor/bin/Debug/netcoreapp3.1/Monitor.dll",
2018-05-22 10:11:50 +02:00
"args": [],
"cwd": "${workspaceFolder}/Monitor",
"stopAtEntry": false,
"internalConsoleOptions": "openOnSessionStart",
"launchBrowser": {
2018-06-05 08:27:32 +02:00
"enabled": false,
2018-05-22 10:11:50 +02:00
"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}"
}
,]
}