Hi Group,
I’m getting used to obfuscar (it seems great!), and am busy writing all the skips for public classes / methods / fields, etc. One that I can’t figure out is how to skip a public enum which is inside a class, such as:
namespace blah_ns
{
public class blah_cls
{
public enum blah_e
{
e1,
e2
};
}
}
This does *NOT* do the trick:
<SkipType name="blah_ns.blah_cls"/>
<SkipEnum type="blah_ns.blah_cls.blah_e" attrib="public" rx=".*" />
Thanks for any info you can throw my way!
Eric