Question

Thanks to this Stackoverflow question, I can enumerate between the projects in my editor.
Now, I would like to get more information about the IVsProject I got, but the MSDN reference does not really point me to any solution.
How should I do to get the project's name (and full path) ? Also, is there an online resource more detailed/easier to explore than MSDN reference, about the Visual Studio SDK ?

Was it helpful?

Solution

BSTR* fileName;
HRESULT hr=pvsProject->GetMkDocument(VSITEMID_ROOT,&fileName);
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top