ClickOnce 应用程序的远程调试类库
我正在尝试在我们的一个内部系统上设置远程调试,因为类库中有一个函数对我们的用户来说一直失败,但对我来说却不然。我已将文件夹共享设置为远程调试器文件夹,并且可以附加到其计算机上的进程,但收到以下消息:
以下模块是在启用优化或没有调试信息的情况下构建的:...
我如何满足这个要求?
我检查过,优化未启用,但是使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在您通过 ClickOnce 发布的项目中:
在此屏幕中,您可以在 ClickOnce 部署中添加/删除文件(如 .pdb 文件)。
您不需要需要使用调试版本来包含.pdb 文件 - 可以使用发布模式。
有关 .NET .pdb 文件的更多信息此处,此处,以及此处。
In the project you're publishing via ClickOnce:
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.