T4 Toolbox - 混合类特征和语句块
我是一名 T4 新手,尝试使用 T4 Toolbox 生成基于 这个答案,但似乎类功能块不能与语句块混合。这是我的代码:
<#@ template language="C#" hostspecific="True" debug="True" #>
<#@ output extension="txt" #>
<#@ include file="T4Toolbox.tt" #>
<#
FSharpTemplate template = new FSharpTemplate();
template.Output.Project = @"..\Library1\Library1.fsproj";
template.Output.File = "Module2.fs";
template.Render();
#>
<#+
class FSharpTemplate: Template
{
public override string TransformText()
{
#>
module Module2
<# for (int i = 0; i < 10; i++) { #>
<#= i #>
<# } #>
<#+
return this.GenerationEnvironment.ToString();
}
}
#>
我收到此错误:
声明不能出现在 模板中的一流功能。 只有样板、表达式和 之后允许其他类功能 第一类功能块。
那么...我该如何重写模板来实现这一目标呢?
I'm a T4 newbie trying to use T4 Toolbox to generate F# code based on this answer, but it seems that class feature blocks can't be mixed with statement blocks. Here's my code:
<#@ template language="C#" hostspecific="True" debug="True" #>
<#@ output extension="txt" #>
<#@ include file="T4Toolbox.tt" #>
<#
FSharpTemplate template = new FSharpTemplate();
template.Output.Project = @"..\Library1\Library1.fsproj";
template.Output.File = "Module2.fs";
template.Render();
#>
<#+
class FSharpTemplate: Template
{
public override string TransformText()
{
#>
module Module2
<# for (int i = 0; i < 10; i++) { #>
<#= i #>
<# } #>
<#+
return this.GenerationEnvironment.ToString();
}
}
#>
And I get this error:
A Statement cannot appear after the
first class feature in the template.
Only boilerplate, expressions and
other class features are allowed after
the first class feature block.
So... how can I rewrite the template to achieve this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
在第一个类特征块之后,您需要将所有后续语句块也设为类特征块。
在幕后,第一类功能块终止幕后“生成”方法,并切换到将内容作为模板幕后类的成员插入。
如果您使用的是 Visual Studio 2010,则始终可以创建一个预处理模板并将常规模板代码粘贴到其中,以查看幕后发生的情况。
After the first class feature block, you need to make all the subsequent statement blocks also class feature blocks.
Under the covers, the first class feature block terminates the behind the scenes "Generate" method and switches to inserting the content as members of the template's behind the scenes class.
If you're using Visual Studio 2010, you can always create a preprocessed template and paste your regular template code into that to see what's going on under the hood.
虽然 @GarethJ 的答案解释了为什么会发生这种情况,但它没有告诉您如何解决它。您需要添加一个加号,即使用
<#+
而不是仅<#
While @GarethJ's answer explains why this happens, it does not tell you how to fix it. You need to add a plus sign, i.e. use
<#+
instead of just<#
您应该将所有类功能放在同一功能块中,位于任何输出下方。
You should have all class features in the same feature block, below any output.