I have an extension to Visual Studio 2010 which provide provide service related to a specific compiler. This compiler provide error message during build. I need to be able to do a specific action when user double click on a specific task item related to a specific error.
I can browse the IVsTaskItem, check for the error message without problem. But I did not find any way to be notified when the user click or double click on the task itself.
To me more specific, I need to be notified when the OnNavigate of the IVsTaskItem is called.
Is there any way to do that ? Currently, I can think of only one way: contact the compiler maker to provide a way to do it directly from his IVsTaskItem or IVsErrorItem implementation.