Closed rupertsciamenna89 closed 9 years ago
Hi, To remove a protection, you should use:
[Obfuscation(Exclude = false, Feature = "-rename")]
Thanks, It works.
Hi, I have still the issue.
I've got two auto-properties written in VB.NET on VS2013, but ConfuserEx rename them.
<Obfuscation(Feature:="-rename", Exclude:=False)>
Public Property Tariffa As String
<Obfuscation(Feature:="-rename", Exclude:=False)>
Public Property Descrizione As String
If I add the Get and the Set statements, the Confuser didn't perform the rename. Why? I changed the lines:
<Obfuscation(Feature:="-rename", Exclude:=False)> _
Public Property Tariffa As String
<DebuggerStepThrough()> Get
Return GetValue(Of String)("Tariffa")
End Get
<DebuggerStepThrough()> Set(ByVal value As String)
SetValue("Tariffa", value)
End Set
End Property
<Obfuscation(Feature:="-rename", Exclude:=False)> _
Public Property Descrizione As String
<DebuggerStepThrough()> Get
Return GetValue(Of String)("Descrizione")
End Get
<DebuggerStepThrough()> Set(ByVal value As String)
SetValue("Descrizione", value)
End Set
End Property
Hi, I'm using ConfuserEx 1.5 and I try to exclude a member from renaming in the follow mode:
But If I decompile the source I have the follow result
I've got another class with the ObfuscationAttribute with Exclude Flag to True and it works.