如何在 Visual Studio For Mac 中执行 T4 模板文件?
How to execute T4 template files in Visual Studio For Mac?
我无法在 Visual Studio 中为 Mac 或 visual studio 代码 运行 文本模板。我试过了:
VS > 右键单击项目 > 工具 > 处理 T4 模板 >(未找到模板)
我还去了 Visual Studio 顶部菜单 > 扩展 >(搜索 T4)> IDE 扩展 > 文本模板 v8.10.6 已安装。
我正在尝试使用 linq2db.SqlServer. 中的 *.tt 模板。但是 运行 任何基本的 T4 模板都会让我知道 TextTemplatingFileGenerator 至少可以正常工作。那里的文件指出:
Make sure that custom tool for your tt file set to TextTemplatingFileGenerator, otherwise it will not run
虽然没有解释如何实际完成这个任务?
我还将 TT-Processor 安装到 visual studio 代码中。我也无法执行 *.tt 文件。在这种情况下,当我右键单击 *.tt 文件时,我没有看到 execute/run 命令。
微软帮我解答了这个问题。正如我已经提到的,没有人谈论的部分是这个问题的答案:
Make sure that custom tool for your tt file set to TextTemplatingFileGenerator, otherwise it will not run
在 visual studio 中右键单击 *.tt 文件 > 属性 > 自定义工具 > 选择“TextTemplatingFileGenereator”
现在,当您右键单击项目 > 工具 > 处理 T4 模板时,visual studio 将找到 *.tt 文件
可以说,这种体验应该改进为默认这种行为,以符合“掉进成功的坑”的哲学。
我无法在 Visual Studio 中为 Mac 或 visual studio 代码 运行 文本模板。我试过了:
VS > 右键单击项目 > 工具 > 处理 T4 模板 >(未找到模板)
我还去了 Visual Studio 顶部菜单 > 扩展 >(搜索 T4)> IDE 扩展 > 文本模板 v8.10.6 已安装。
我正在尝试使用 linq2db.SqlServer. 中的 *.tt 模板。但是 运行 任何基本的 T4 模板都会让我知道 TextTemplatingFileGenerator 至少可以正常工作。那里的文件指出:
Make sure that custom tool for your tt file set to TextTemplatingFileGenerator, otherwise it will not run
虽然没有解释如何实际完成这个任务?
我还将 TT-Processor 安装到 visual studio 代码中。我也无法执行 *.tt 文件。在这种情况下,当我右键单击 *.tt 文件时,我没有看到 execute/run 命令。
微软帮我解答了这个问题。正如我已经提到的,没有人谈论的部分是这个问题的答案:
Make sure that custom tool for your tt file set to TextTemplatingFileGenerator, otherwise it will not run
在 visual studio 中右键单击 *.tt 文件 > 属性 > 自定义工具 > 选择“TextTemplatingFileGenereator”
现在,当您右键单击项目 > 工具 > 处理 T4 模板时,visual studio 将找到 *.tt 文件
可以说,这种体验应该改进为默认这种行为,以符合“掉进成功的坑”的哲学。