FNA-VSCode-Template/.vscode/launch.json
Mike 732ab31026 build Nez and the current project initially
added launch without building option
2019-02-20 00:40:42 -08:00

42 lines
1.2 KiB
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": "Launch Without Building",
"type": "mono",
"request": "launch",
"program": "${workspaceFolder}/Fook/bin/Debug/Fook.exe",
"cwd": "${workspaceFolder}",
"osx":{
"env": {
"DYLD_LIBRARY_PATH": "${workspaceFolder}/Fook/bin/Debug/osx/"
},
}
},
{
"name": "Attach",
"type": "mono",
"request": "attach",
"address": "localhost",
"port": 55555
}
]
}