Vince Kálmán
Vince Kálmán
This would be really useful. The readme actually says: > `Image` - The icon to be displayed next to the button's label. The color of the icon will be based...
If makepkg completes successfully, I don't really care about anything it outputs. All I really want to know, is what packages are being installed from where, and if something fails,...
Right, so as far as I can tell, by "alternative solutions that are actively maintained by other teams or the community" you just mean Microsoft's closed source "Data Wrangler Extension...
Ideally the debugger should support it around here: https://github.com/Samsung/netcoredbg/blob/27606c317017beb81bc1b81846cdc460a7a6aed3/src/protocols/vscodeprotocol.cpp#L565-L590 By reading the contents of launchSettings.json and passing on the args and env. The configuration I've linked really is about the...
So, this was quite interesting. I have a launch configuration like this: launch.json ``` { "name": ".NET Core Launch (console)", "type": "coreclr", "request": "launch", "preLaunchTask": "build", "program": "${workspaceFolder}/src/app/bin/Debug/net5.0/app.dll", "cwd": "${workspaceFolder}/src/app",...
I think I've figured out what's going on. The args parameter from launchSettings is actually added by vsdbg-ui.exe, which then presumably relays everything to vsdbg.exe. After looking at the extension...
Hey @viewizard, what's your final verdict on this, would you accept a PR for this feature to be compatible with how vsdbg does this? Or should I try to get...