构建后使用 dotfuscator

发布于 2024-08-06 10:28:50 字数 78 浏览 4 评论 0原文

如何在构建时间后对 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

聽兲甴掵 2024-08-13 10:28:50

在 VS 2008 中使用构建后事件命令。

右键单击您的 csproject,选择属性,转到构建事件,然后在构建后事件命令行中输入以下批处理命令:

  1. dotobfuscator 命令行,以及
  2. 将文件复制到网站的命令(即 复制%encrypteddll%%destination%)。

复制命令应该是这样的:

copy "D:\EncriptionFolder\BusinessEntitesLayer.dll" "D:\wefaq\SocialProject\SocialProject\bin\BusinessEntitesLayer.dll"

或者,您可以使用 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:

  1. dotobfuscator command line, and
  2. the command to copy the files to the website (i.e, copy %encrypteddll% %destination%) .

The copy command should be something like this:

copy "D:\EncriptionFolder\BusinessEntitesLayer.dll" "D:\wefaq\SocialProject\SocialProject\bin\BusinessEntitesLayer.dll"

Or alternatively, you can use NANT or other build tools to automate your build steps.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文