2020-03-03 23:18:34 +00:00
|
|
|
{
|
|
|
|
"version": "0.2.0",
|
|
|
|
"configurations": [
|
2020-11-17 06:29:21 +00:00
|
|
|
{
|
|
|
|
"name": "Attach to Framework Debugger",
|
|
|
|
"type": "clr",
|
|
|
|
"request": "launch",
|
|
|
|
"preLaunchTask": "Build: Framework Debug",
|
2020-11-17 06:45:13 +00:00
|
|
|
"program": "${workspaceFolder}/ProjectName/bin/Debug/net48/ProjectName.exe",
|
2020-11-17 06:29:21 +00:00
|
|
|
"args": [],
|
|
|
|
"cwd": "${workspaceFolder}",
|
2020-11-17 06:45:13 +00:00
|
|
|
"console": "integratedTerminal",
|
|
|
|
"internalConsoleOptions": "neverOpen"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "Attach to Mono Debugger",
|
|
|
|
"type": "mono",
|
|
|
|
"request": "launch",
|
|
|
|
"preLaunchTask": "Build: Mono Debug",
|
|
|
|
"program": "${workspaceFolder}/ProjectName/bin/Debug/net48/ProjectName.exe",
|
|
|
|
"args": [],
|
|
|
|
"env": {
|
|
|
|
"LD_LIBRARY_PATH": "${workspaceFolder}/ProjectName/bin/Debug/net48/lib64",
|
|
|
|
"DYLD_LIBRARY_PATH": "${workspaceFolder}/ProjectName/bin/Debug/net48/osx"
|
|
|
|
},
|
|
|
|
"cwd": "${workspaceFolder}",
|
|
|
|
"console": "integratedTerminal",
|
2020-11-17 06:29:21 +00:00
|
|
|
"internalConsoleOptions": "neverOpen"
|
|
|
|
},
|
2020-03-03 23:18:34 +00:00
|
|
|
{
|
|
|
|
"name": "Attach to Core Debugger",
|
|
|
|
"type": "coreclr",
|
|
|
|
"request": "launch",
|
|
|
|
"preLaunchTask": "Build: Core Debug",
|
|
|
|
"program": "${workspaceFolder}/ProjectName/bin/Debug/netcoreapp3.1/ProjectName.dll",
|
|
|
|
"args": [],
|
|
|
|
"env": {
|
|
|
|
"LD_LIBRARY_PATH": "${workspaceFolder}/ProjectName/bin/Debug/netcoreapp3.1/lib64",
|
|
|
|
"DYLD_LIBRARY_PATH": "${workspaceFolder}/ProjectName/bin/Debug/netcoreapp3.1/osx"
|
|
|
|
},
|
2020-08-06 23:50:57 +00:00
|
|
|
"cwd": "${workspaceFolder}/ProjectName/bin/Debug/netcoreapp3.1",
|
2020-03-03 23:18:34 +00:00
|
|
|
"console": "integratedTerminal",
|
|
|
|
"internalConsoleOptions": "neverOpen"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|