Idea is that if a mod dev forgets to switch VS from debug to release, they may publish the wrong mod DLLs and then the mod doesn't work for users
The goal is to show a warning message when installing a mod (in Easy Installer) that contains a debug DLL
We can detect this in mod DLLs by looking at their imports
Debug imports VCRUNTIME140D.dll
Release imports VCRUNTIME140.dll
Code to check imports is kinda tedious, but could probably be done similar to how we do LAA check
Idea is that if a mod dev forgets to switch VS from debug to release, they may publish the wrong mod DLLs and then the mod doesn't work for users
The goal is to show a warning message when installing a mod (in Easy Installer) that contains a debug DLL
We can detect this in mod DLLs by looking at their imports
Debug imports VCRUNTIME140D.dll
Release imports VCRUNTIME140.dll
Code to check imports is kinda tedious, but could probably be done similar to how we do LAA check