How can I write a plugin for VS2010 using MEF?

后端 未结 1 1033
孤城傲影
孤城傲影 2020-12-09 10:33

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 s

相关标签:
1条回答
  • 2020-12-09 11:05

    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.

    0 讨论(0)
提交回复
热议问题