从设置中读取混淆后的设置文件



我最近使用dotfuscator ce与Visual Studio 2015 Update 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>

现在的问题是,混淆的组件包含一些存储在设置中的信息。文件,当我的代码试图从设置文件访问数据时,它会在以下异常中失败。

找不到设置属性" ProxyTesturl"

这是要读取设置的语法:

 Dim strURI As String = My.Settings.ProxyTestURL

我知道有一个类似的问题" dotfuscator:混淆之后的错误",但似乎并不完整或不强调,尽管我也将我的评论放在那里,但是我希望在这里有第二种意见和更强大的解决方案将我的设置文件重命名为混淆名称(如上所述)。

您应该从重命名中排除My.Settings。这样做的说明在文档中。

相关内容

  • 没有找到相关文章

最新更新