我最近使用Dotfuscator CE和Visual Studio 2015 Update 3对DLL进行了混淆。这是我使用的Dotfuscator.xml文件。
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<!DOCTYPE dotfuscator SYSTEM "http://www.preemptive.com/dotfuscator/dtd/dotfuscator_v2.3.dtd">
<dotfuscator version="2.3">
<propertylist>
<property name="SourceDirectory" value="This Path Will Be Replaced By Visual Studio" />
<property name="SourceFile" value="This Filename Will Be Replaced By Visual Studio" />
</propertylist>
<input>
<asmlist>
<inputassembly>
<option>library</option>
<file dir="${SourceDirectory}\" name="${SourceFile}" />
</inputassembly>
</asmlist>
</input>
<output>
<file dir="${SourceDirectory}\" />
</output>
</dotfuscator>
现在的问题是,混淆的程序集包含一些存储在Settings.settings中的信息。文件,当我的代码尝试从设置文件访问数据时,它会因以下异常而失败。
设置属性&#39; ProxyTestURL&#39;没找到
以下是读取设置的语法:
Dim strURI As String = My.Settings.ProxyTestURL
我知道有一个类似的问题&#34; Dotfuscator:混淆后错误&#34;但它似乎不是完整的或强大的,虽然我也把我的评论放在那里,但在这里我希望得到第二个意见和更强大的解决方案,而不是将我的设置文件文字重命名为混淆的名称(如那里提到的)。