16

I've seen lots of MEF code for plugging into custom apps, but I am yet to find out how to write a plugin for VS2010 using MEF. I was under the impression that the new IDE supported this.

Does anyone know if this is supported 'out of the box', or does it require an install. Does anyone have any links, tips, etc to get me started.

Ben Laan
  • 2,607
  • 3
  • 29
  • 30
  • No, it wouldn't make sense. a VS plugin built with MEF isn't a correct use case. – Pierreten Apr 22 '10 at 06:24
  • Dude not really following you for that one. Could you explain that a bit better. Or check yourself lest you wreck yourself. LOL – Terrance Nov 17 '10 at 17:39

1 Answers1

19

MEF is the primary extension mechanism for extending the editor. If you install the SDK, there are a few new project samples set up to create editor extensions, found under C# (or VB)->Extensibility. These include:

  • Editor classifier – for providing syntax highlighting
  • Editor margin – putting a margin along the sides of the editor, with arbitrary WPF content
  • Editor text/viewport adornment – for putting WPF visuals into the editor

You can find overview documentation on MSDN: Extending the editor, and Editor extension points.

Some samples you may want to look at: editor samples on code.msdn.microsoft.com, a couple more on editorsamples.codeplex.com, and the source for all the samples I've written.

I blog about writing editor extensions. On there, you can find descriptions of most of the extensions I've written, along with more general posts about performance, design of the new editor, etc.

Questions posted on the editor forum on msdn also are answered by various members of the editor team.

Noah Richards
  • 6,777
  • 2
  • 31
  • 28