VS 2010 插件:如何获取当前 TFS 项目集合
我即将编写一个 Visual Studio 插件(目标环境:VS2010),它应该使用户能够执行一些与工作项相关的任务。 如何获取团队资源管理器中当前活动的 TFS 项目?我可以订阅一个事件,在当前项目集合发生更改时通知我吗?
谢谢,
马库斯
I'm about to write a Visual Studio Add-In (target environment: VS2010) that should enable the user to perform some work item related tasks.
How can I get the TFS project that is currently active in Team Explorer? Can I subscribe to an event that informs me when the current project collection is changed?
Thanks,
Markus
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
对于标准 VS 插件项目:
连接插件时,将提供 DTE 对象并将其存储在变量
_applicationObject
中。方法GetObject
可用于检索当前TFS连接数据(项目集合url、项目名称):为了使用
TeamFoundationServerExt
类,对需要程序集 Microsoft.VisualStudio.TeamFoundation。它位于:For a standard VS add-in project:
When the add-in is connected, the DTE-object is provided and stored in the variable
_applicationObject
. The methodGetObject
can be used to retrieve the current TFS connection data (project collection url, project name):In order to use the
TeamFoundationServerExt
class, a reference to the assembly Microsoft.VisualStudio.TeamFoundation is required. It is located in: