How to programmatically check C++ DLL files and C# DLL files for references to debug DLLS to automate a testing procedure
I have run into this issue too many times and need this to be an automated approach: I have multiple DLL files that are constantly being built/changed that multiple projects use. I have created a C# application that detects if the DLL files are present and warns the operator if they are not and kills the program. In this C# application, I want it to also check to determine if it is a "debug" version - in other words it would crash if it ran on an end users computer. Now I have been searching high and low and found a few possible solutions, but they all fall through. Assembly.LoadFrom(string)