I would like to extend the project explorer of Visual Studio 2015 with some commands and new elements.
For example: A C-file contains some functions and if a function contains a special comment, the project explorer should contain this element in the tree.
Futhermore, I would like to add commands to C-file elements and to functions of a file. One command shall add a special comment to the file and the oher one shall remove the comment (which is represented by an element in the tree) from the file.
At the moment I tried some examples which are included in the SDK but I don't know how to start.
I tried to add some commands and I found a solution to add a command to the context menu of a class in the class view. But the main question at the moment is: How do I extend the UI Hierachy?
What are the "extension points" I am looking for? Is there any example/tutorial available concerning my question(s)?
Thanks a lot!