Replies: 1 comment 3 replies
-
Truth be told, none of us really know. We've tried fiddling around with it for a long time, and As for the ExecutionEngineException, at a guess it's something to do with delegate marshalling, possibly a regression from #821. Keep an eye on glfw.GcUtility to see what it's caching - it could be that your delegate is being freed prematurely. |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi,
I'm currently debugging an issue where dropping a file into a Silk.net window will randomly but often lead to an
ExecutionEngineException
originating fromSilk.NET.GLFW
. While doing that I wanted to drill down into the call stack to pinpoint the exact place where it happened. My assumption was that I could get a view into the original source code since the nuget packages have been set up to support Sourcelink.I can't get it to work though. With 'Just My Code' disabled, and Sourcelink support enabled in latest Visual Studio 2022, loading symbols for a Silk call stack frame fails. The nuget package itself does not contain any symbols or source server information and so the only option I'm given is to decompile the release code itself, with obviously much worse results.
I'd be grateful on any pointers :)
Beta Was this translation helpful? Give feedback.
All reactions