【发布时间】:2020-08-08 18:21:10
【问题描述】:
我正在开发一个 .Net 标准项目,我正在其中使用 netDxf.netstandard 库。
我正在尝试使用 DotFuscator Community Edition GUI 混淆我的代码。
DotFuscator 构建过程失败并抛出以下消息:
Reading debugging symbols for module 'MyNameSpace.dll'...
Warning: No debugging symbols found for module 'MyNameSpace.dll'.
An item with the same key has already been added.
Build Error.
经过两天的代码修剪:我最终得到了一个单一文件的项目,并且抛出了相同的错误消息!
using netDxf.Entities;
namespace MyNameSpace
{
public class Cls
{
public static double Method1(Polyline p)
{
return 0;
}
public static double Method2(LwPolyline p)
{
return 0;
}
}
}
这个sn-p有什么问题所以混淆过程总是失败?
【问题讨论】:
标签: obfuscation class-library dotfuscator .net-standard-2.1