I want to create Add-in for outlook 2010, that will open TFS work items link directly in Visual Studio Team Explorer...but I can't find enough information on how to accomplish this relatively simple task.
Currently I found how to create a simple Outlook 2010 add-in and how to connect to "NewMail Inspector". But how I can force the links to our TFS server to open in Visual Studio and not in browser?
I thought just to catch click event on link inside mail and check if it's authority points to TFS, but it looks like it's impossible to catch click event.
Then I thought that I can parse incoming/existing mails and replace link with my custom URI scheme, then to use simple CMD application to open the VS, but I can't find how to parse currently active mail...the active mail can be in preview pane or mail can be opened...
Does anybody have ideas how to do this?