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")]
According to the documentation , if you want to exclude a namespace, the correct way to do it is to write a line like:
[assembly: Obfuscation(Exclude = false, Feature = "namespace('namespaceToExclude'):-rename")]
This should be written in the Assembly.info file of the project.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With