I am used to deliver DLLs that built on top of several static libraries(.lib) in the unmanaged environment. Now I need to do similar thing but most lower level libraries are already managed DLLs. For security reasons, I don't want include every functions in these 开发者_运维技巧managed libraries. Any suggestions?
Not much you can do here. Your choices are:
- Obfuscate the lower level libraries. You still ship all functions, but they are harder to decompile.
- Refactor the libaries into different assemblies, so you can ship them more granularly.
精彩评论