1

How to write an add-in that allows me to right click on the files hierachy tree to do something that will display something?

This is exactly what I want (please see the 2nd part of the video):

http://msdn.microsoft.com/en-us/vstudio/bb614548.aspx

Unfortunately, it is in VB; I need a C# version.

gonzobrains
  • 7,856
  • 14
  • 81
  • 132
yeeen
  • 4,911
  • 11
  • 52
  • 73
  • (the C# approach will be pretty much identical to the VB, once you have the VS SDK installed, no?) – Marc Gravell Oct 23 '09 at 05:53
  • SDK installed already. But how is SDK useful? My VS already got the Extensibility section, and I don't need the extra stuff I think... – yeeen Oct 23 '09 at 07:10

1 Answers1

1

Writing VisualStudio plugins is a pretty terse task. What you are searching for has already been answered here.

You also might want to check out DXCore from Devexpress. It provides nice abstractions above the VS API that might help you getting things done faster.

Community
  • 1
  • 1
Johannes Rudolph
  • 35,298
  • 14
  • 114
  • 172
  • I just need sth simple like the one shown in the video above. But I want it in C#. The 1st link u provide is all in visual basic. The 2nd link is not what I want. – yeeen Oct 23 '09 at 10:49