在生产中使用 t4 模板引擎
规划在生产环境中使用t4模板。我以前也没有用过这个。我想知道生产服务器上是否需要安装任何东西,服务器上是否需要配置任何设置等。
Planning of using t4 template in a production environment. I have not used this before either. I want to know if anything is required to be installed on the production server, are there any settings to be configured on the server, etc.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您正在编译部分代码由 T4 生成的程序并将 dll 放置在服务器上,则与您编写所有行的程序没有区别。
If you are compiling your program where parts of the code is generated by T4 and placing the dll's on the server there is no difference from a program where you wrote all lines.
假设您正在谈论预处理(运行时)模板,那么您不需要服务器上的任何特殊内容。
如果您谈论的是设计时(常规)T4 模板,那么它不是受支持的场景。
如果您谈论的是通过 T4 搭建的 ASP.Net MVC 网站,那么 T4 并不存在于生产中。
Assuming you're talking about preprocessed (runtime) templates, then you don't need anything special on the server.
If you're talking about design-time (regular) T4 templates, then it's not a supported scenario.
If you're talking about an ASP.Net MVC website scaffolded via T4, then T4 isn't present in production.