制作 WinForm 安装项目的混淆 exe 主要输出
我正在使用 DotFuscator 来混淆我的源代码。如何使位于单独目录中的混淆文件成为安装项目的主要输出?如果我覆盖 obj 中的文件并使用模糊文件释放文件夹,它只会被覆盖我重新编译安装项目。
谢谢。 查理
I'm using DotFuscator to obfuscate my source code. How do I make the obfuscated file, which lives in a separate directory, the primary output of my Setup project? If I overwrite file in obj and release folders with obfuscated file, it just gets overwritten my I recompile Setup project.
Thanks.
Charlie
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要先创建Dotfuscator项目,即右键单击解决方案->添加项目->选择Dotfuscator作为项目类型。到创建的项目右键Input->;映射到实际项目的项目输出。构建 Dotfuscator 项目。接下来添加安装项目。将设置项目输出指向 Dotfuscator 的输出。现在构建以创建设置。现在你的代码被混淆了。
You need to create Dotfuscator project first, i.e right click on solution->add project->select Dotfuscator as project type. To the project created right click on Input-> map to project output from your actual project. Build the Dotfuscator project. Next add the setup project. Point setup project output to that of Dotfuscator. And now build to create the setup. Now your code is obfuscated.