ClickOnce 应用程序的远程调试类库

发布于 2024-09-18 15:08:14 字数 264 浏览 3 评论 0原文

我正在尝试在我们的一个内部系统上设置远程调试,因为类库中有一个函数对我们的用户来说一直失败,但对我来说却不然。我已将文件夹共享设置为远程调试器文件夹,并且可以附加到其计算机上的进程,但收到以下消息:

  • 以下模块是在启用优化或没有调试信息的情况下构建的:...

我如何满足这个要求?

我检查过,优化未启用,但是使用 ClickOnce 时如何向用户获取 .pdb 文件?这也是我的问题吗?

I am trying to set up remote debugging on one of our internal systems as there is a function in a class library that keeps failing for our users but not me. I have the folder share to my remote debugger folder set up and I can attach to the process on their machine but I get the following message:

  • The following module was built either with optimizations enabled or without debug information: ....

How do I satisfy this requirement?

I checked and optimizations is not enabled but how do I get the .pdb files to the user when using ClickOnce? Is that even my issue?

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

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

发布评论

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

评论(1

感性 2024-09-25 15:08:14

在您通过 ClickOnce 发布的项目中:

  • 打开项目的属性
  • 单击“发布”(垂直)选项卡
  • 单击“应用程序文件”按钮

在此屏幕中,您可以在 ClickOnce 部署中添加/删除文件(如 .pdb 文件)。

不需要需要使用调试版本来包含.pdb 文件 - 可以使用发布模式。

有关 .NET .pdb 文件的更多信息此处此处,以及此处

In the project you're publishing via ClickOnce:

  • Open Properties for the project
  • Click the Publish (vertical) tab
  • Click the Application Files button

From this screen, you can add/remove files (like .pdb files) from the ClickOnce deployment.

You do not need to use a Debug release to include .pdb files - Release mode can be used.

More info about .NET .pdb files here, here, and here.

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