netcoredbg
netcoredbg copied to clipboard
NetCoreDbg is a managed code debugger with MI interface for CoreCLR.
It seems to me that vsdbg from Microsoft supports several parameters when launching a program, while netcoredbg only supports three, https://github.com/Samsung/netcoredbg/blob/9d0608ff8f39ab6e0fbff448bdd8c485b56b2761/src/debug/netcoredbg/vscodeprotocol.cpp#L316 One missing piece is that a setting to spin...
There were some other similar issues about this this topic, but I feel like those were entirely clear about the situation. The Microsoft .NET debugger supports reading some debug settings...
# Overview Cannot get location of unhandled exception occurred in async Main program. # Environment * netcoredbg version: 3.0.0-13 (27606c3, Release) * os: win10 x64 * dotnet-sdk: 8.0.200 * vscode:...
Hello! I can't get netcoredbg to work on even a simple project. Since I am using GUIX as my distro I decided to build netcoredbg from source so that we...
The Debug Adapter Protocol specifies that `InitializedEvent` occurs after the `InitializeRequest` has returned: [Initialized Event](https://microsoft.github.io/debug-adapter-protocol/specification#arrow_left-initialized-event) ``` adapters sends initialized event (after the initialize request has returned) ``` But that's not...
When I try to debug after building from source, I get the following error: ``` Assertion failed: !read_lock, file C:\Users\user\Documents\netcoredbg\src\utils\ioredirect.cpp, line 404 ``` When I use the latest release it...
For type int?, double?, string?... I decide whether to display null directly based on `HasValue` value. But while they are properties of a class, and not assigned a vlaue. the...
When debugging, Windows Defender detects Behavior:Win32/DefenseEvasion.A!ml and quarantines netcoredbg.exe. Tested on Windows 11 and 10. Suggestion: Sign netcoredbg.exe with an authenticode code signing certificate. If the certificate already has good...
Hey, I've noticed that the current implementation for evaluate expression is limited, and have some ideas about how to improve it. 1. using the official Roslyn - although it compiles...
Several bad things, possibly related: 1. `Debugger.Break` in non-user code is ignored. 2. `Debug.Assert(false)` and `Debug.Fail` don't pause. 3. `-gdb-set just-my-code 0` does not work. Note: I tested only in...