当我对这个表单进行模糊处理时," debug"它
public partial class Form1 : Form
{
public void Form1()
{
InitializeComponents();
}
protected override void OnShown(EventArgs e)
{
base.OnShown(e);
Console.WriteLine("Name: "+this.Name);
Console.WriteLine("FullName: "+this.GetType().FullName);
}
}
输出如下:
姓名:Form1
FullName:#Yab。#Zab
的问题
为什么FullName
被混淆了?
Form1
是公开的,所以我希望SmartAssembly忽略它。
额外信息
Form1
是public partial
,designer.cs也是如此
我的SmartAssembly设置如下:
<ApplicationName />
<Destination DestinationFileName=".\bin.obfuscated\MyProject.Form1.exe" />
<Assemblies>
<Assembly AssemblyName="MyProject.Form1, Culture=neutral, PublicKeyToken=omitted">
<Merging>
<ResourcesCompression Compress="0" />
<MemberRefsProxy />
<Pruning />
<Obfuscation Obfuscate="1">
<Exclusions />
</Obfuscation>
<ControlFlow Obfuscate="1" />
</Merging>
</Assembly>
</Assemblies>
<Options>
<Obfuscation FieldsNameMangling="2" NameMangling="1" />
<ExceptionReporting />
<FeatureUsageReporting Template="res:SmartUsageWithUIConsentFirstRun1033.dll" />
<StrongNameSigning KeyFileName="PathToKeyFile" Sign="1" />
<OtherProtections />
<StringsEncoding />
<OtherOptimizations />
<Debugging />
</Options>
答案 0 :(得分:2)
首先,应用程序项目中的SmartAssembly不会忽略公共类(在库项目中将忽略它)。
其次,表单的Name property是在运行时设置的属性。在您的情况下,它可以初始化为&#34; Form1&#34;代码中的某个地方,也许是设计师。
此值可以随时更改,例如:
public Form1()
{
InitializeComponent();
this.Name = "foo";
}
因此,SmartAssembly无法模糊此值,这将是错误的并且会改变代码的行为。
当SmartAssembly对代码进行模糊处理时,它只会更改类型,字段和方法的名称。当您尝试获取类型名称时,获取类型的模糊名称是合乎逻辑的。