2009-10-13 80 views
1

我們在我們的TFS構建的解決方案中添加了一些Office AddIn項目,現在已經破產。我們正在使用Visual Studio和TFS 2008(SP1)。 4個項目已被添加,每個以下的目標...錯誤MSB4062:無法加載「GenerateAndPersistAppInfoTask」任務

  • Word 2003中
  • Word 2007中
  • Excel 2003中
  • Excel 2007中

生成日誌報告以下...

C:\Program Files\MSBuild\Microsoft.VisualStudio.OfficeTools2.targets(116,9): error MSB4062: The "GenerateAndPersistAppInfoTask" task could not be loaded from the assembly Microsoft.VisualStudio.Tools.Applications.Hosting, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a. Could not load file or assembly 'Microsoft.VisualStudio.Tools.Applications.Hosting, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' or one of its dependencies. The system cannot find the file specified. Confirm that the <UsingTask> declaration is correct, and that the assembly and all its dependencies are available. 

Microsoft.VisualStudio .Tools.Applications.Runtime.v9.0.dll存在於服務器上,並在GAC中正確安裝。 Visual Studio Tools for Office(2005 & 3.0)也全部安裝。 如果遠程連接到服務器並運行Visual Studio,我可以重新創建其中一個插件併成功編譯它。

幫助,卡住了!

回答

0

原來我需要安裝到GAC的Microsoft.VisualStudio.Tools.Applications.Hosting.dll。我已安裝Microsoft.VisualStudio.Tools.Applications.Hosting.v9.0.dll,但這不是兼容版本。

相關問題