重命名选项

Dotfuscator 允许使用几个选项,这些选项指定重命名算法处理命名空间的方式。这些选项是“keepnamespace”和“keephierarchy”,我们将在标识符重命名一节中详细解释这些选项。

使用“disable”选项主要是为了方便和进行故障排除。设置该选项后,无论重命名节中的其余部分是什么,Dotfuscator 都将完全跳过重命名。

<renaming>
<!--  Keep namespaces as they are, but rename types. -->
<option>keepnamespace</option>

<!-- Preserves namespace hierarchy but rename --> 
<!-- namespace names -->
<option>keephierarchy</option>

<!—- Skip renaming, ignoring rest of section -->
<option>disable</option>
 ...
</renaming>

重命名选项不区分大小写。

© 2002-2007 PreEmptive Solutions. 保留所有权利。