使用 IIS 5 调试 GAC DLL
我正在尝试使用 VS 2008 / XP / IIS 5 配置调试 GAC 中的 DLL。尝试将 DLL 复制到 C:\\ assembly\GAC_MSIL 中,但符号仍然没有被加载:-( 还有这篇关于调试 GAC 的有趣文章,而无需将 PDB 文件复制到 GAC 中: http://www.elumenotion.com/Blog/Lists/Posts/Post.aspx?ID=23
但由于我运行 IIS 5,所以没有 w3wp.exe 的踪迹(似乎仅在 IIS 6 及更高版本中)。您知道我可以附加到我的网页并跟踪引用的 DLL 的技巧吗?
I'm trying to debug a DLL in the GAC with VS 2008 / XP / IIS 5 configuration. Tried to copy the DLL in the C:\\assembly\GAC_MSIL but the symbols still doesnt get loeded :-( Also this interesting post about debugging GAC without having to copy the PDB file into the GAC : http://www.elumenotion.com/Blog/Lists/Posts/Post.aspx?ID=23
But since I run IIS 5, there's no trace of the w3wp.exe (which seems to be only in IIS 6 and newer). Do you know a trick so I can attach to my web page and trace a referenced DLL ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
最后,事实证明,无需复制 .pdb 文件的解决方案是有效的。唯一的事情是附加到“aspnet_wp”进程而不是帖子中提到的“w3wp.exe”。
Finally, turns out that the solution without copying the .pdb file is working. Only thing is to attach to the "aspnet_wp" process instead of the "w3wp.exe" mentionned in the post.