mirror of
https://github.com/prime31/FNA-VSCode-Template.git
synced 2025-10-31 21:50:44 +07:00
28 lines
862 B
JSON
28 lines
862 B
JSON
{
|
|
// Change "mono" to "clr" for 64-bit .NET Framework debugging on Windows.
|
|
// (See: https://github.com/OmniSharp/omnisharp-vscode/wiki/Desktop-.NET-Framework)
|
|
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"name": "Launch",
|
|
"type": "mono",
|
|
"request": "launch",
|
|
"program": "${workspaceFolder}/project_name/bin/Debug/project_name.exe",
|
|
"cwd": "${workspaceFolder}/project_name",
|
|
"preLaunchTask": "Build (Debug)",
|
|
"osx":{
|
|
"env": {
|
|
"DYLD_LIBRARY_PATH": "${workspaceFolder}/project_name/bin/Debug/osx/"
|
|
},
|
|
}
|
|
},
|
|
{
|
|
"name": "Attach",
|
|
"type": "mono",
|
|
"request": "attach",
|
|
"address": "localhost",
|
|
"port": 55555
|
|
}
|
|
]
|
|
} |