我可以通过 C# 以编程方式使用 T4 吗?
我正在编写生成 C# 代码的软件。我主要使用 StringTemplate 和 StringBuilder。
有没有办法直接从我的代码使用 T4 模板?
I am writing software that produces C# code. Mostly I am using StringTemplate and StringBuilder.
Is there any way to use T4 templates direct from my code?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Oleg Sych 在此描述了如何执行此操作:了解 T4:预处理文本模板。请注意,您似乎需要 Visual Studio 2010 来生成预处理的文本模板,但您可以在任何您喜欢的地方托管预处理的文本模板 - 包括在 WinForms 应用程序中。
Oleg Sych describes how to do this here: Understanding T4: Preprocessed Text Templates. Note that it looks like you'll need Visual Studio 2010 to generate a preprocessed Text Template, but you'll be able to host the preprocessed Text Template wherever you like - including within your WinForms application.
一个简单的方法可以做到这一点:
A simple way to do this: