使用T4模板时错误报告在哪里

时间:2018-10-12 13:48:07

标签: t4

刚开始玩t4。 我知道中间代码文件在哪里。它在temp目录中,已使用'%TEMP%'访问。

但是我找不到错误报告。

能请我指出一点吗?

我为模板指令设置了debug =“ true”。

<#@ template debug="true" hostSpecific="true" #>
<#@ output extension=".cs" #> 
<#@ Assembly Name="System.Core" #>
<#@ Assembly Name="System.Windows.Forms" #>
<#@ import namespace="System" #>
<#@ import namespace="System.IO" #> 
<#@ import namespace="System.Diagnostics" #> 
<#@ import namespace="System.Linq" #>
<#@ import namespace="System.Collections" #> 
<#@ import namespace="System.Collections.Generic" #>

using System; 
using System.Collections.Generic;
using System.Linq; 
using System.Text;
using System.Threading.Tasks;

namespace book
{ 
    class Program 
    { 
        static void Hello(string[] args) 
        { 
            Console.WriteLine("Hello World"); 
            Console.ReadKey(); 
        } 
    } 
}

<#+ 
    private void HelloWorld() 
    { 
#> 
    Hello World at <#= DateTime.Now #> 
<#+ 
    } 
#>

0 个答案:

没有答案