T4 Toolbox - 混合类特征和语句块

发布于 2024-08-29 06:13:18 字数 1002 浏览 6 评论 0原文

我是一名 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

寄居人 2024-09-05 06:13:18

在第一个类特征块之后,您需要将所有后续语句块也设为类特征块。

在幕后,第一类功能块终止幕后“生成”方法,并切换到将内容作为模板幕后类的成员插入。

如果您使用的是 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.

格子衫的從容 2024-09-05 06:13:18

虽然 @GarethJ 的答案解释了为什么会发生这种情况,但它没有告诉您如何解决它。您需要添加一个加号,即使用 <#+ 而不是仅 <#

<#+ for (int i = 0; i < 10; i++) { #>
<#= i #>
<#+ } #>

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 <#

<#+ for (int i = 0; i < 10; i++) { #>
<#= i #>
<#+ } #>
自控 2024-09-05 06:13:18

您应该将所有类功能放在同一功能块中,位于任何输出下方。

You should have all class features in the same feature block, below any output.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文