数据集可视化器和 Visual Studio 中的远程调试
我们使用 Lab Manager 在多个平台上进行测试,并通过在 Lab Manager 中的本地开发盒和虚拟机上创建具有相同名称和密码的 Windows 帐户来进行远程调试(导致 VS 调试器认为正在使用相同的帐户)在两个盒子上,这样它就可以在开发盒子上看到调试服务器)。 然后我们在debug账户下运行VS,就可以远程调试了。
这一切都很好,只是尝试运行 DataSetVisualizer 会导致以下异常:
Microsoft.VisualStudio.DebuggerVisualizers.DebugViewerShim.RemoteObjectSourceException:无法加载文件或程序集“file:///D:\apps\Microsoft Visual Studio 8\Common7\Packages\Debugger\Visualizers\Microsoft.VisualStudio.Debugger.DataSetVisualizer” .dll' 或其依赖项之一。
该dll位于指定的文件夹中,并且该文件夹允许管理员(调试帐户是其成员)完全控制。 该文件夹中没有其他 dll。
我还尝试将可视化工具 dll 复制到 Document and Settings\
(自定义可视化工具的推荐路径)。 例外情况相同,但引用 MyDocs 路径而不是 VS 安装路径。
还有其他人看过这个吗? 有任何想法吗?
We use Lab Manager to test on multiple platforms and do remote debugging by creating a Windows account with the same name and password on both the local dev box and the VM in Lab Manager (causes the VS debugger to think that the same account is being used on both boxes so it allows the debug server to be seen on the dev box). Then we run VS under the debug account and can debug remotely.
This all works great except that trying to run the DataSetVisualizer causes the following exception:
Microsoft.VisualStudio.DebuggerVisualizers.DebugViewerShim.RemoteObjectSourceException: Could not load file or assembly 'file:///D:\apps\Microsoft Visual Studio 8\Common7\Packages\Debugger\Visualizers\Microsoft.VisualStudio.Debugger.DataSetVisualizer.dll' or one of its dependencies.
The dll is in the specified folder, and the folder allows Full control by Administrators (of which the debug account is a member). There are no other dlls in that folder.
I've also tried copying the visualizer dll to Document and Settings\<debug_account>\My Documents\Visual Studio 2005\Visualizers
(the recommended path for custom visualizers). The exception is the same but references the MyDocs path instead of the VS install path.
Anyone else seen this? Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我的一位同事找到了答案:将可视化工具 dll 复制到远程计算机上的某个位置,该位置镜像了开发盒上的目录结构。
A colleague of mine found the answer: copy the visualizer dll to a location on the remote machine that mirrors the directory structure on your dev box.