當我使用的是現有的T4模板,我最後一次使用大約6個月前,我不知道任何東西已經改變。但是,當我保存模板文件時,我沒有看到以下例外情況:FileNotFoundException異常轉化T4模板
初始化變換對象時生成了錯誤。 轉換將不會運行。引發以下異常: System.IO.FileNotFoundException:無法加載文件或程序集 'T4Toolbox,Version = 11.0.0.0,Culture = neutral, PublicKeyToken = dc4a538672a7b38f'或其依賴項之一。 系統找不到指定的文件。文件名: 'T4Toolbox, 版本= 11.0.0.0,文化=中性公鑰= dc4a538672a7b38f'
服務器堆棧跟蹤:在 System.Reflection.RuntimeAssembly._nLoad(的AssemblyName文件名,字符串 的代碼庫,證據assemblySecurity ,RuntimeAssembly locationHint, StackCrawlMark & stackMark,IntPtr的pPrivHostBinder,布爾 throwOnFileNotFound,布爾forIntrospection,布爾 suppressSecurityChecks)...
的報頭我的tt文件是:
<#@ template language="C#" debug="True" #>
<#@ output extension="cs" #>
<#@ include file="T4Toolbox.tt" #>
<#@ assembly name="System.Core" #>
<#@ import namespace="System.IO" #>
<#@ assembly name="System.Xml"#>
<#@ assembly name="System.Linq"#>
<#@ assembly name="$(TargetPath)" #>
<#@ import namespace="System.Xml" #>
<#@ import namespace="System.Diagnostics" #>
<#@ import namespace="System.Linq" #>
<#@ import namespace="System.Collections.ObjectModel" #>
<#@ import namespace="MyNamespace" #>
<#@ parameter name="className" type="System.String" #>
我檢查了工具>擴展和更新,我安裝了版本11.8.0.0。
還有什麼我可以檢查?