kernelman
kernelman

Reputation: 41

Implementing IVsHierarchy

I would like to get started with implementing a new IVsHierarchy, however, i am not sure as to how this can be done, to be rephrasing i am not sure as to how the IVsHierarchy can be used. Can someone share some example or shed some light on it ??

Upvotes: 2

Views: 905

Answers (2)

Matt
Matt

Reputation: 4334

I'd highly recommend reading DiveDeeper's blog on VSX.

He has a number of posts on implementing IVsHierarchy:

He also has an open source library called VSXtra which provides lots of handy support code for writing VS Packages. You may find it useful to use as a reference.

Upvotes: 1

anatoly
anatoly

Reputation: 350

Take a look at the MPF for Projects. It contains implementation of IVsHierarchy. You can use it as base of your Project System.

http://mpfproj.codeplex.com/

Upvotes: 1

Related Questions