问题描述
在 ConfUserEX 混淆中 (https://yck1509.github.io/ConfuserEx/)>
如何从重命名模块中排除一个命名空间?
例如:[assembly: Obfuscation(Exclude = true, Feature = "namespace 'ABC.XYZ':-rename")]
看起来它不起作用.我在命名空间中有一个用于 Json 解析的对象模型和这个抛出错误.此外,我使用 .crproj 文件使用 CLI 进行混淆.
请通过 这个 链接.排除从 true
到 false
的字段.就是这样.
例如:
[assembly: Obfuscation(Exclude = false, Feature = "namespace 'Your.Namespace':-rename")]
In ConfUserEX Obfuscation (https://yck1509.github.io/ConfuserEx/)
How to EXCLUDE just one Namespace from rename module?
For example :[assembly: Obfuscation(Exclude = true, Feature = "namespace 'ABC.XYZ':-rename")]
Looks it does not work. I have a objectmodels for Json parsing in a namespace and this throwing error. Also I am using .crproj file for obfuscating using CLI.
Please download latest version v0.6.0 by this link. Exclude field from true
to false
. And that's it.
For example:
[assembly: Obfuscation(Exclude = false, Feature = "namespace 'Your.Namespace':-rename")]
这篇关于ConfUserEx 从混淆中排除命名空间的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!