如何确定 VSLangProj.Reference 是项目引用还是文件引用?
我正在开发 Visual Studio 插件。给定 VSLangProj.Reference,是否有一种方法可以以编程方式确定该引用是项目引用还是文件引用?
I am working on a Visual Studio plug-in. Given a VSLangProj.Reference, is there a way to programmatically determine if that reference is a project reference or a file reference?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在 VS 2008 中,引用类型具有名为 SourceProject 的属性
如果引用是项目,则获取 Project 对象。否则,它返回 Nothing(空引用)。只读。
in VS 2008 the Reference Type has a property called SourceProject
Gets a Project object if the reference is a project. Otherwise, it returns Nothing (a null reference). Read-only.
这是我到目前为止所得到的:
This is what I've got so far: