Visual Studio Extension

I want to write AddIn for visual studio (2010). My goal is to add a menu item to the context menu of all .cs files in the solution explorer. Or maybe just in the context menu of the code window, although I prefer the first. I was browsing the Visual Studio extensibility website , but I have to admit that it's hard for me to find a tutorial on how to achieve what I want. I guess I really don't understand the VS extensibility model, to be honest.

So I thought that some of the smart people here must have tried this before, and I hope to save time by asking here instead of messing around in the dark.

Thanks in advance for your help.

+5
source share
2 answers

I have a blog post about something pretty similar to http://www.runeibsen.dk/?p=237 . Unfortunately, the whole WPF is now used for VS2008 and AFAIK VS2010, in which case you will not be able to use it.

+1
source

Checkout codeproject Article-- LineCounterAddin , this is a good one. An explanation of the internal VS IDEs required by Addins code.

And a quick googling shows this Add-in, which converts C # code to Visual Basic

0
source

All Articles