开发者

i want to write a visual studio extension to access redmine issues. how would you recommend doing this?

开发者 https://www.devze.com 2023-02-04 12:17 出处:网络
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,

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 it开发者_如何学JAVAems without an actual TFS server?

Ideas?


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.


Check out a simple Visual Studio extension that displays Redmine issues as tasks in Task List tool window:

https://redminetasklist.codeplex.com/

0

精彩评论

暂无评论...
验证码 换一张
取 消