我有DevExpress 9.1源代码,我想在其中调试,该怎么做?

发布于 2024-08-28 09:13:12 字数 67 浏览 3 评论 0原文

我花了两天时间尝试构建DevExpress源代码来进行调试。但做不到,有人知道如何调试DLL吗?

MQ

It took me two days to try to build the DevExpress source code to make debugging. But can not do it, anyone know how to debug the DLL which is not?

MQ

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

破晓 2024-09-04 09:13:13
  • 您必须安装 DXperience 套件中的所有组件
  • http: //www.devexpress.com/Support/Center/ViewKBIssue.aspx?kbid=A609
  • 按照下载的 zip 中包含的 readme.txt 中的所有说明进行操作。特别是:

    1. 不要移动组件源。由于某种原因,它们必须在其安装位置进行编译(例如 %Program Files%/Devexpress 2009.1/Components/Sources)
    2. 将所有构建文件复制到该位置
    3. 编辑define.bat,使configuration=Debug 和vsver=your_version_of_visual_studio
    4. 运行buildall.bat
  • 更新您对 DevExpress 程序集的引用,因为编译后它们使用不同的强密钥签名。

    更新

现在您应该能够调试它们的程序集。

  • You have to install ALL components from DXperience suite
  • Download proper build scripts from http://www.devexpress.com/Support/Center/ViewKBIssue.aspx?kbid=A609
  • Follow all instructions in readme.txt contained in downloaded zip. In particular:

    1. do not move component sources. For some reason they must be compiled in their install location (something like %Program Files%/Devexpress 2009.1/Components/Sources)
    2. copy all build files into that location
    3. edit defines.bat, so that configuration=Debug and vsver=your_version_of_visual_studio
    4. run buildall.bat
  • update your references to DevExpress assemblies, because after compilation they are signed with different strong key.

Now you should be able to debug their assemblies.

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