如何在Visual Studio中构建t4文件?

时间:2009-01-01 22:15:11

标签: visual-studio t4

当我构建我的c#解决方案时,.tt文件将不会创建.cs文件输出。但是,如果我在解决方案资源管理器中一次单击一个.tt文件并选择“运行自定义工具”,则会生成.cs,因此构建工具设置是正确的。如何才能使整个解决方案构建强制自定义工具在.tt文件上运行?

4 个答案:

答案 0 :(得分:9)

Paul,您还可以在构建时使用TextTransform.exeElton Stoneman's MSBuild task生成代码。请记住,当T4在Visual Studio和命令行主机中运行时,内置指令(如assemblyinclude)的行为会有所不同。

答案 1 :(得分:5)

回答我自己的问题,它们应该按照这个讨论在设计时生成:

https://web.archive.org/web/20081227142303/http://www.olegsych.com/2008/02/t4-template-directive/

答案 2 :(得分:0)

在Visual Studio 2013中,我可以通过将这些行添加到.csproj文件来获取.tt文件来重新生成目标:

<PropertyGroup>
  <!-- Get the Visual Studio version – defaults to 10: -->
  <VisualStudioVersion Condition="'$(VisualStudioVersion)' == ''">10.0</VisualStudioVersion>
  <!-- Keep the next element all on one line: -->
  <VSToolsPath Condition="'$(VSToolsPath)' == ''">$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)</VSToolsPath>
</PropertyGroup>
<!-- To enable build tasks on your development computer, install Modeling SDK for Visual Studio. https://www.microsoft.com/en-us/download/details.aspx?id=40754 -->
<Import Project="$(VSToolsPath)\TextTemplating\Microsoft.TextTemplating.targets" />
<!-- Run the Transform task at the start of every build -->
<PropertyGroup>
  <TransformOnBuild>true</TransformOnBuild>
</PropertyGroup>
<!-- Overwrite files that are read-only, for example because they are not checked out -->
<PropertyGroup>
  <OverwriteReadOnlyOutputFiles>true</OverwriteReadOnlyOutputFiles>
</PropertyGroup>
<!-- Transform every template every time -->
<PropertyGroup>
  <TransformOutOfDateOnly>false</TransformOutOfDateOnly>
</PropertyGroup>

但是,要实现此功能,您需要安装Modeling SDK for Visual Studio。我在此页面上找到了所有这些信息以及可用选项的更完整描述:Code Generation in a Build Process

答案 3 :(得分:0)

在Visual Studio 2017中(可能也是下一版本),您应该在Pre-build事件中添加它:

return(d1-d2)?.TotalDays; 

p.s。唯一对我有用的解决方案。

p.s.s。如果模板不在根项目目录中,请更改其路径。