Running a T4 template using C#

后端 未结 2 558
野的像风
野的像风 2021-02-02 14:18

I have T4 template (mycode.tt) which generates a cs file. I usually right click the tt file and select RunCustomTool which internally takes an xml file and generate code for me.

2条回答
  •  天涯浪人
    2021-02-02 14:50

    I'd recommend the preprocessed route as answered above by @jb_.

    As an alternative, if you need your templates to still be editable without a compile step for use with your custom C# application, and the application will only be deployed on machines alongside Visual Studio, you can write a custom host.

    http://msdn.microsoft.com/en-us/library/bb126519.aspx

提交回复
热议问题