How to see cll and c # dll dependencies?

I have a python project that calls the C ++ DLL wrapper that calls C # com interop dll. On my computer, with all the frameworks and programs installed, my project works very well.

But on a computer that has just been formatted, no. I already installed C ++ 2008 redistribute, and part of C ++ works, but when I call a function from it (which will call the C # correspondent code), it will throw an error.

I want to know which dll dependencies on C ++ and C # dll to see what is missing :)

+4
source share
2 answers

Sounds like you need a Dependency Walker .

+8
source

Dependency Walker (aka depends.exe ) works for both native DLLs and managed DLLs.

It is included in some versions of Visual Studio and can also be downloaded here .

+5
source

Source: https://habr.com/ru/post/1310761/


All Articles