在我的文本模板我聲明瞭我的文字模板如下如何將大會在asp.net MVC應用程序中的T4模板
<#@ template debug="false" hostspecific="true" language="C#" #>
<#@ output extension=".cshtml" #>
<#@ assembly name="System.Data.Entity" #>
<#@ assembly name="System.Core" #>
<#@ import namespace="System.Linq" #>
<#@ import namespace="System.Collections.ObjectModel" #>
<#@ assembly name="$(SolutionDir)\MvcTemplateApplication\bin\Debug\MvcTemplateApplication.Dll" #>
<#@import namespace="MvcTemplateApplication"#>
在它上面給出了以下錯誤
Metadata file could not be found
如何在上面的文本模板中包含應用程序的項目dll?
請幫我