Asp.Net Mvc3、MEF、插件实现
有没有人能够使用 MEF(或其他一些 IoC 工具)创建不需要将 Razor 视图编译到 dll 中的 Asp.Net Mvc 插件实现?理想情况下,我希望能够通过简单地将新文件放入文件夹中来部署 Razor 视图更改,而不必重新编译并删除新的 dll。有什么想法吗?
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?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
默认情况下,视图不会被编译,因此您应该能够在不需要任何额外工作的情况下完成此操作。
By default views are not compiled so you should be able to do this without any extra work.