Hi Guys,
I have a class property that I need to exclude from obfuscation.
[DoNotObfuscate()]
public string MyProperty
{
get { return m_MyProperty; }
}
This code generates an error "Error 2 The type 'SmartAssembly.Attributes.DoNotObfuscateAttribute' exists in both 'C:\Code\MyProject\bin\ActiveReports\ActiveReports6.dll' and 'C:\Code\MyProject\bin\ActiveReports\ARVSPackage.dll'".
How can I get past this?
Thanks...
I have a class property that I need to exclude from obfuscation.
This code generates an error "Error 2 The type 'SmartAssembly.Attributes.DoNotObfuscateAttribute' exists in both 'C:\Code\MyProject\bin\ActiveReports\ActiveReports6.dll' and 'C:\Code\MyProject\bin\ActiveReports\ARVSPackage.dll'".
How can I get past this?
Thanks...