what is and where can I find MvcTextTemplateHost

后端 未结 4 513
太阳男子
太阳男子 2021-01-19 07:07

I would like to know what this is MvcTextTemplateHost. I have this in my create.tt but I cant find it in my bin folder (searching with object viewer). I read up and found ou

4条回答
  •  旧时难觅i
    2021-01-19 07:38

    In my case the solution was. add these line en controllerWithContext.tt

    <#@ assembly name="C:\Program Files (x86)\Microsoft Visual Studio 10.0\Common7\IDE\Microsoft.VisualStudio.Web.Mvc.3.01.dll" #>
    

    next to:

    <#@ import namespace="System.Reflection" #>
    

    before:

    <#@ import namespace="Microsoft.VisualStudio.Web.Mvc.Scaffolding.BuiltIn" #>
    

    good luck

提交回复
热议问题