Joshua Evensen
Joshua Evensen

Reputation: 1566

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

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?

Upvotes: 1

Views: 925

Answers (2)

Dmitry Popov
Dmitry Popov

Reputation: 398

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

https://redminetasklist.codeplex.com/

Upvotes: 0

sisve
sisve

Reputation: 19791

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.

Upvotes: 1

Related Questions