构建后使用 dotfuscator
如何在构建时间后对 Web 应用程序中的 dll 使用 dotfuscator,以便当我发布网站时它将包含隐藏的 dll 而不是旧的 dll?
how can I use dotfuscator for my dlls in web application after build time so when I publish my website it will contain the encrepted dlls instead of the old ones?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 VS 2008 中使用构建后事件命令。
右键单击您的 csproject,选择属性,转到构建事件,然后在构建后事件命令行中输入以下批处理命令:
复制%encrypteddll%%destination%
)。复制命令应该是这样的:
或者,您可以使用 NANT 或其他构建工具来自动化您的构建步骤。
Use Post-build event command in VS 2008.
Right click on your csproject, choose properties, go to build event, then inside the post build event command line, type in the following batch command:
copy %encrypteddll% %destination%
) .The copy command should be something like this:
Or alternatively, you can use NANT or other build tools to automate your build steps.