有没有办法在保存另一个文件时自动运行T4转换?
答案 0 :(得分:4)
创建AutoRunCustomTool Visual Studio扩展程序是为了解决这个问题。
答案 1 :(得分:2)
似乎T4 Toolbox不适用于VS2012。但是,现在有形T4编辑器中有一个功能,它允许您简单地将自动转换的模板添加到解决方案中的任何exisitng文件中,以便在保存父文件时转换dependend t4文件。见这里:
http://t4-editor.tangible-engineering.com/blog/dependent-t4-templates.html
答案 2 :(得分:1)
您可以使用T4 Toolbox执行此操作。在解决方案资源管理器中选择文件,然后在“属性”窗口中设置Custom Tool Template
。
我从How can set the custom tool property of an xml file to a T4 file?
获得此答案