Has anyone ever successfully attached the Samsung debugger to a Release-built process?

I'm trying to attach the Samsung debugger (netcoredbg) to a Release-built process (with just-my-code 0, as noted in their documentation), but I get the following warning: You are debugging a Release build of OpenDebugAPI.dll. Without Just My Code Release builds try not to use compiler optimizations, but in some cases (e.g. attach) this still results in a degraded debugging experience (e.g. breakpoints will not be hit). and breakpoints are indeed not hit. Has anyone gotten the breakpoints to work?
1 Reply
Vasil Yanakiev
Vasil YanakievOP10h ago
Works with <Optimize>False</Optimize>. The VS debugger doesn't need that, though.

Did you find this page helpful?