使用 VC 开发 VSPackage (VSX) ?需要参考资料和链接
我有一个要求,我需要使用 C++ 或 VC++ 使用 Visual Studio SDK 来扩展或自定义 Visual Studio。我运气不好,找到了所有使用 C# 自定义 Visual Studio 的书籍、博客和 msdn。需要帮助来分享有关使用 C++ 定制 VS 的链接和书籍。
问候 约翰.
帮助表示赞赏!
I have a requirement where I need to extend or customize the Visual Studio using Visual Studio SDK using C++ or VC++. I have fallen out of luck and have found all the book, blogs and msdn customizing Visual Studio using C#. Need help to share me links and books on customization of VS using C++.
Regards
John.
Help appreciated !!!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Visual Studio 2005 SDK 附带了一些示例(FigPkg、BscPrj、MyCPrj),演示使用本机 C++ 扩展 VS。这是一个很好的开始方式。
较新版本的 SDK 不包含此示例。但VSx COM API并没有改变太多。学习不同非 C++ 项目(MPF、MPF For Projects、VisualD)的内部结构也可以帮助您更好地理解 VS 扩展的工作原理。
Visual Studio 2005 SDK comes with few samples (FigPkg, BscPrj, MyCPrj) demonstrating extending VS using native C++. It's a good way to start.
Newer versions of SDK don't contain this samples. But VSx COM API has not changed too much. Learning internals of different non-C++ projects (MPF, MPF For Projects, VisualD) can also help you better understand how VS-extensions work.