1

I want to have a go at writing add ins for visual studio that can play around with the code like resharper does e.g. look at a line of code and then suggest which "using statements" need to be added.

This is purely for educational purposes and a bit of fun, however I have no idea where to get started with the extensibility model. Can anyone point me in the right direction of some good resources

John Saunders
  • 160,644
  • 26
  • 247
  • 397
  • dupe of http://stackoverflow.com/questions/855808/visual-studio-2008-plug-in-add-in-development-getting-started – Indy9000 Aug 01 '09 at 21:31

2 Answers2

0

I'd start with the Common Compiler Infrastructure if you are analyizing code compiled to MSIL.

Steve Steiner
  • 5,299
  • 4
  • 32
  • 43
0

You can take a look at the Roslyn CTP: http://msdn.microsoft.com/en-us/vstudio/roslyn.aspx

Matze
  • 5,100
  • 6
  • 46
  • 69