How to use DLR with MEF in .Net 4.0? - Stack Overflow most recent 30 from stackoverflow.com2009-12-22T23:24:52Zhttp://stackoverflow.com/feeds/question/1070573http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1070573/how-to-use-dlr-with-mef-in-net-4-02How to use DLR with MEF in .Net 4.0?Sergey Aldoukhov2009-07-01T18:12:24Z2009-07-02T18:08:34Z
<p>There were promises from the MEF team that MEF will support DLR plugins in the .Net 4.0. Did it happen already and I can [Import] some IronPython objects?</p>
<p>If yes, any links to the topic would be helpful.</p>
http://stackoverflow.com/questions/1070573/how-to-use-dlr-with-mef-in-net-4-0/1075858#10758584Answer by Daniel Plaisted for How to use DLR with MEF in .Net 4.0?Daniel Plaisted2009-07-02T18:08:34Z2009-07-02T18:08:34Z<p>The default programming model does not support the DLR, but other programming models can be written that will support it, and that can be used together with the default programming model.</p>
<ul>
<li><a href="http://blogs.msdn.com/dsplaisted/archive/2009/06/08/a-crash-course-on-the-mef-primitives.aspx" rel="nofollow">Blog post on the MEF Primitives</a> (which are used to create programming models).</li>
<li><a href="http://blogs.msdn.com/nblumhardt/archive/2008/12/09/hosting-ruby-parts-in-mef.aspx" rel="nofollow">Blog post with some ideas on how a Ruby programming model could work</a></li>
<li><a href="http://blogs.msdn.com/intellipad/archive/2008/11/11/newbie-experience-writing-a-custom-command.aspx" rel="nofollow">How to write a custom command for Intellipad</a> (Intellipad uses MEF and a python programming model)</li>
</ul>