代码之家  ›  专栏  ›  技术社区  ›  TheVillageIdiot

创建T4模板文件引用亚音速

  •  1
  • TheVillageIdiot  · 技术社区  · 14 年前

    Compiling transformation: Metadata file 'SubSonic.Core' could not be found
    

    我的设置文件中包含了亚音速.Core。 <#@ assembly name="SubSonic.Core" #> 然后导入名称空间,如 <#@ import namespace="SubSonic.Schema"#> <#@ import namespace="SubSonic"#>

    我做错了什么?我需要将SubSonic.Core.dll放入GAC吗?

    1 回复  |  直到 14 年前
        1
  •  1
  •   Justin    14 年前

    你试过把 .dll

    <#@ assembly name="SubSonic.Core.dll" #>
    

    (确保SubSonic.Core.dll位于同一目录中)。

    有一篇关于T4装配指令的文章可以帮助您:

    http://www.olegsych.com/2008/02/t4-assembly-directive/