I need to check for a given dll if all DLLs it depends on are present. I was able to get the list of DLLs using the code given in this question: How to programatically read native DLL imports in C#?. It gives the list of DLLs, including system ones (like kernel32.dll and others). What I need is to remove them from this list, as I do not need to check them, I only need to check the DLLs explicitly imported by developer.
Any ideas how to do that?