我已按照https://www.preemptive.com/dotfuscator/pro/userguide/en/getting_started_xamarin.html#setup-targets
上提供的步骤操作当我构建应用时,它会给出以下错误。
表达式""" .TargetName"无法评估。方法' System.String.TargetName'没找到。
然后我编辑了该文件的第251行来替换它:
<Destination>%(IntermediateSatelliteAssembliesWithTargetPath.Culture)\$(IntermediateSatelliteAssembliesWithTargetPath.TargetName).resources.dll</Destination>
用这个:
<Destination>%(IntermediateSatelliteAssembliesWithTargetPath.Culture)\$(TargetName).resources.dll</Destination>
但是在完成所有步骤后,当我尝试重新设计app.dll文件时,它并没有混淆。