T4 自定义代码块
使用 T4,您可以拥有在生成时不应该被覆盖的自定义代码块吗? 与 PreserveExistingFile 类似,但针对生成文件中的代码块。 我无法在我的场景中使用部分类
With T4 can you have custom code blocks, that should not be overwritten at generation?
Like PreserveExistingFile but for a block of code in the generated file.
I can’t use partial class in my scenario
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
没有办法做到这一点。您应该在模板本身中包含不可修改的代码块,或者从另一个文件中读取它们。
There's no way to do this. You should either include unmodifiable code blocks in the template itself, or read them from another file.