Visual Studio SUO 文件的文件格式或解析指南。

发布于 2024-08-20 23:44:52 字数 221 浏览 4 评论 0原文

在哪里可以找到文件格式规范或解析 .suo 文件的指南?我想从中提取断点信息。

MSDN 主题解决方案用户选项 (.Suo) 文件 简要介绍了如何存储流是从此结构存储文件中读取和写入的,但此信息非常少,特别是对于我的结构化存储经验的人来说。

Where can I find a file format spec, or guidance for parsing, .suo files? I'd like to extract breakpoint information from them.

The MSDN topic Solution User Options (.Suo) File briefly describes how storage streams are read from and written to this structure storage file, but this information is very scant, especially for someone of my structured storage experience.

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

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

发布评论

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

评论(1

盗梦空间 2024-08-27 23:44:52

从 .suo 文件中获取任何有用信息的希望渺茫。即使您确实设法对其(复杂的)格式进行逆向工程,您的辛勤工作对于 Visual Studio 的下一个版本或服务包来说也将毫无意义。

该文件存储 IDE 状态。该状态也可以从可扩展性接口访问。使用宏来取得成功。在 MSDN 库中查找 EnvDTE 命名空间即可开始。

There's little hope to ever get any useful info out of a .suo file. Even if you do manage to reverse-engineer its (complicated) format, your hard work will be for naught with the next release or service pack for Visual Studio.

The file stores IDE state. That state is also accessible from the extensibility interfaces. Use macros to get ahead. Lookup the EnvDTE namespace in the MSDN library to get started.

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