↧
Answer by user11953043 for How can you make a C++/CLI DLL resolve a...
Updated based on comments... I found an interesting point in Microsoft's documentation here: docs.microsoft.com/en-us/windows/win32/dlls/… -- "If a DLL has dependencies, the system searches for the...
View ArticleAnswer by Arie R for How can you make a C++/CLI DLL resolve a dependency on...
I'm not sure that I entirely understand your question, but I'll try to answer: While trying to solve this, we should remember the following: Fusion doesn't kick in (and thus dependency resolution),...
View ArticleHow can you make a C++/CLI DLL resolve a dependency on managed assemblies...
We currently build an ODBC driver as 4 DLLs: A DLL implementing the ODBC (C) API, mostly implemented in C++, with some 'glue' code written in C++/CLI, used to interact with #2, #3, & #4 A DLL...
View Article