Asp.Net Mvc3, MEF, Plugin Implementations
开发者_运维技巧Has anyone been able to create an Asp.Net Mvc plug-in implementation using MEF (or some other IoC tools) that does NOT require the Razor views to be compiled into dll's? Ideally, I'd like to be able to deploy Razor view changes by simply dropping new files in a folder rather than having to recompile and drop new dll's. Any ideas?
By default views are not compiled so you should be able to do this without any extra work.
精彩评论