I have a DotNetBrowser license in my project, and it is bound to my namespace. However, Eazfuscator is obfuscating the namespace.
I tried to prevent this by adding the following lines(one at a time) to AssemblyInfo.cs:
[assembly: Obfuscation(Feature = "namespace(MyNamespace)", Exclude = true)]
[assembly: Obfuscation(Exclude = true, Feature = "namespace('MyNamespace'):-rename")]
I also tried with Exclude = false, but my namespace still gets obfuscated.
Can anyone tell me how to prevent my namespace from being obfuscated?
New contributor
user25224750 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.