MoonWorksImGuiExample/.vscode/launch.json

17 lines
448 B
JSON
Raw Normal View History

2022-03-04 01:20:00 +00:00
{
"version": "0.2.0",
"configurations": [
{
"name": "Attach to .NET 6 Debugger",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "Build: .NET 6 Debug",
2022-03-04 01:21:42 +00:00
"program": "${workspaceFolder}/bin/x64/Debug/net6.0/MoonWorksImGuiExample.dll",
2022-03-04 01:20:00 +00:00
"args": [],
"cwd": "${workspaceFolder}/bin/x64/Debug/net6.0",
"console": "integratedTerminal",
"internalConsoleOptions": "neverOpen"
}
]
}