Asp.Net Mvc3, MEF, plugin implementation

Has anyone been able to create an implementation of the Asp.Net Mvc plugin using MEF (or some other IoC tools) that DO NOT require Razor views to be assembled in a dll? Ideally, I would like to be able to deploy changes to the Razor view simply by dropping new files in a folder, rather than recompiling and dropping new dlls. Any ideas?

+3
source share
1 answer

By default, views are not compiled, so you can do this without additional work.

+1
source

All Articles