Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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?

like image 996
ActionJackson Avatar asked Aug 12 '26 14:08

ActionJackson


1 Answers

By default views are not compiled so you should be able to do this without any extra work.

like image 108
Adam Flanagan Avatar answered Aug 15 '26 03:08

Adam Flanagan