使用单击一次部署混淆的程序集
大家好 我想混淆我的程序集,然后使用单击一次来发布项目。我该怎么做?因为当使用单击一次时,我的项目会重建并再次创建程序集。 谢谢
Hi all
I want to obfuscate my assemlies and then publish project using click once.How I can do that?because when using click once my progect rebuild and assemblies create again.
thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以添加一个项目构建后事件,该事件将在每次构建时从命令行运行 Dotfucator?也许只与发布版本相关,这样它就不会为每个调试版本运行。
有关运行命令行 Dotfuscator 的说明,请参阅:http://msdn .microsoft.com/en-us/library/ms227238(VS.80).aspx
这将确保每个版本版本都被混淆。然后您可以在部署的应用程序文件中引用混淆的程序集。
You could add a project post-build event that will run Dotfucator from the command line on each build? Perhaps only tie to the Release builds so that it is not run for every Debug build.
For instructions on running command line Dotfuscator see: http://msdn.microsoft.com/en-us/library/ms227238(VS.80).aspx
That would ensure that every release build is obfuscated. And then you could reference the obsfucated assemblies in the Application files of the deploy.