我想编写一个 Visual Studio 扩展来访问 redmine 问题。你会如何建议这样做?
我想编写一个 Visual Studio 扩展来访问 redmine 问题。你会如何建议这样做?我考虑过尝试将 Visual Studio 中已有的工作项系统与 TFS 一起使用,但我不确定这是否是最好的方法,或者是否有必要。
是否可以通过 Visual Studio 扩展填充工作项并在没有实际 TFS 服务器的情况下提供对这些项目的访问?
有想法吗?
i want to write a visual studio extension to access redmine issues. how would you recommend doing this? I thought about trying to use the work item system that already exists in visual studio with TFS, but I'm not sure that'd be the best approach or if that's even necessary.
Is it possible to populate work items through a visual studio extension and provide access to those items without an actual TFS server?
Ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我会编写一个自定义包并使用 IVSTaskList 服务将Redmine中的内容输出到任务窗口中。您还可以构建自己的 ToolWindowPane(覆盖 ToolWindowPane.Window 返回一个 WinForm 用户控件)做任何你想做的事情。
我不确定 TFS 绑定是否在所有计算机上都可用,因此我不会尝试连接它们。
I would write a custom Package and use the IVSTaskList service to output stuff from Redmine into the task window. You can also build your own ToolWindowPane (override ToolWindowPane.Window to return a WinForm usercontrol) to do anything you want.
I'm not sure that the TFS bindings are available on all machines, so I wouldn't try and hook into them.
查看一个简单的 Visual Studio 扩展,它将 Redmine 问题显示为任务列表工具窗口中的任务:
https://redminetasklist.codeplex.com /
Check out a simple Visual Studio extension that displays Redmine issues as tasks in Task List tool window:
https://redminetasklist.codeplex.com/