You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
My scenario is that I'm trying to load a bunch of DLLs and the DLLs that have dependencies on other DLLs fail to return types when calling GetTypes(). My assumption is that the DLLs have to be loaded or resolved in a certain order so that there's no dependency failure. In pythonnet, I can do something like this:
Although I'm still interested in the answer to this, I solved my issue by merging all the DLLs and dependencies into a single DLL using ILMerge and I was able to get the types I needed. :)
Hi,
Thank you so much for creating a great library. Do you have an example of how to use the
add_*
andremove_*
functions here?winim/winim/inc/mscoree.nim
Line 1240 in 3abd0ae
My scenario is that I'm trying to load a bunch of DLLs and the DLLs that have dependencies on other DLLs fail to return types when calling GetTypes(). My assumption is that the DLLs have to be loaded or resolved in a certain order so that there's no dependency failure. In pythonnet, I can do something like this:
I'm trying to accomplish the same with winim but unsuccessful.
Thanks for any help you can provide.
The text was updated successfully, but these errors were encountered: