fix: don't ignore methods which contains `[CompilerGenerated]`
parent
570033520e
commit
b618f2cb1e
|
@ -13,7 +13,7 @@ namespace Obfuz
|
|||
{
|
||||
private bool ShouldBeIgnoredByCustomAttribute(IHasCustomAttribute obj)
|
||||
{
|
||||
return MetaUtil.HasObfuzIgnoreAttribute(obj) || MetaUtil.HasCompilerGeneratedAttribute(obj);
|
||||
return MetaUtil.HasObfuzIgnoreAttribute(obj);
|
||||
}
|
||||
|
||||
public bool IsInWhiteList(ModuleDef module)
|
||||
|
|
Loading…
Reference in New Issue