Hello,
I want to navigate between includes of the my ProjectItem. I know how to get the include name itself, however I can't find out how do I or if it's possible to navigate between Include elements, a.k.a Ctrl+Shift+G inside the Visual Studio IDE.
Here is the example how I get the the includes:
VCFileCodeModel fileCodeModel = projectItem.FileCodeModel as VCFileCodeModel; CodeElements codeElements = fileCodeModel.Includes;
Thanks,