I am writing some tests for a build system and I ran into a problem I couldn't really solve in C#.
I need to check multiple exe and dll files if they have a application manifest.
I have seen some people solve this problem by just seeing if the User executes some program with elevated privileges like here and some solving it with C++ like here for example. However this doesn't work in my case since I am not executing these exe and dll files.
Isn't there some easy way to check if there is an application manifest attached to an exe or dll file?
TIA.