change: if type contains `[ObfuzIgnore]` attribute, both itself and all nested type should be ignored.
parent
45a07bc2ae
commit
09ad0eb744
|
@ -61,6 +61,10 @@ namespace Obfuz
|
|||
{
|
||||
return true;
|
||||
}
|
||||
if (type.DeclaringType != null && IsInWhiteList(type.DeclaringType))
|
||||
{
|
||||
return true;
|
||||
}
|
||||
if (type.FullName == "Obfuz.EncryptionVM.GeneratedEncryptionVirtualMachine")
|
||||
{
|
||||
return true;
|
||||
|
|
Loading…
Reference in New Issue