forked from MoonsideGames/FNA-VSCode-Template
21 lines
633 B
JSON
21 lines
633 B
JSON
{
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"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"
|
|
},
|
|
"cwd": "${workspaceFolder}",
|
|
"console": "integratedTerminal",
|
|
"internalConsoleOptions": "neverOpen"
|
|
}
|
|
]
|
|
}
|