在我的文本模板中,我声明我的文本模板如下
<#@ 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?
请帮我