Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I write a plugin for VS2010 using MEF?

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.

like image 295
Ben Laan Avatar asked Apr 22 '10 06:04

Ben Laan


1 Answers

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.

like image 130
Noah Richards Avatar answered Oct 14 '22 22:10

Noah Richards