我发现使用具有非标准目录结构的 t4 模板真的很困难。我在我的 csproj 文件中使用链接,这似乎是问题的根源。
我让它工作了,但是,VS 会自动做出改变,这会破坏事情。
我有以下目录结构:
/source
+ MyLib.cs
/generate
/MyLib
+ MyLib.tt
+ MyLib.A.t4 // included by MyLib.tt
+ MyLib.B.t4 // included by MyLib.tt
+ MyLib.C.t4 // included by MyLib.tt
/build_examples
/vs
+ MyLib.csproj
+ MyLib.sln
MyLib.csproj 看起来像这样:
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
...
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
</ItemGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
<ItemGroup>
<None Include="..\..\generate\MyLib\MyLib.tt">
<Link>MyLib\MyLib.tt</Link>
<Generator>TextTemplatingFileGenerator</Generator>
<LastGenOutput>..\..\source\MyLib.cs</LastGenOutput>
</None>
<None Include="..\..\generate\MyLib\MyLib.A.t4">
<Link>MyLib\MyLib.A.t4</Link></None>
<None Include="..\..\generate\MyLib\MyLib.B.t4">
<Link>MyLib\MyLib.A.t4</Link></None>
<None Include="..\..\generate\MyLib\MyLib.C.t4">
<Link>MyLib\MyLib.A.t4</Link></None>
</ItemGroup>
<ItemGroup>
<Compile Include="..\..\source\MyLib.cs">
<Link>MyLib\MyLib.cs</Link>
<AutoGen>True</AutoGen>
<DesignTime>True</DesignTime>
<DependentUpon>MyLib.tt</DependentUpon>
</Compile>
</ItemGroup>
</Project>
所以我的项目有一个指向 t4 模板的链接,我希望该 t4 模板在项目之外生成一个输出文件,项目链接到该文件并进行编译。
我上面的作品。像这样设置一个项目,打开它,VS正确链接并嵌套LINKED tt文件和cs文件。现在重建。都在工作。t4 引擎正确地重建项目目录之外存在的文件。
但再试一次,BOOM!
构建完成后,VS 会自动从 .csproj 文件中删除以下行:
<LastGenOutput>..\..\source\MyLib.cs</LastGenOutput>
我不确定它为什么这样做,并且一旦触发重建时线路消失,而不是改变 t4 引擎:
/source/MyLib.cs
它决定它需要从 tt 文件自动生成一个新的输出并创建:
/generate/MyLib/MyLib1.cs
任何帮助,将不胜感激。
干杯