How to use DLR with MEF in .Net 4.0? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T23:24:52Z http://stackoverflow.com/feeds/question/1070573 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1070573/how-to-use-dlr-with-mef-in-net-4-0 2 How to use DLR with MEF in .Net 4.0? Sergey Aldoukhov 2009-07-01T18:12:24Z 2009-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#1075858 4 Answer by Daniel Plaisted for How to use DLR with MEF in .Net 4.0? Daniel Plaisted 2009-07-02T18:08:34Z 2009-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>