I am working on a C # application that uses the EasyHook library to inject DLLs. EasyHook requires that any application using it be strongly named. To strongly name the application, I have to make sure that all the libraries that I use are also strongly named.
This is easy to do for all of my managed libraries, but I also have an unmanaged C ++ library that I need to name. After some searching, I cannot find a way to sign my unmanaged DLL, even with the source code. It can be done, and if so, what do I need to do?
Thanks for any suggestions or help!
source share