Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am working with Excel Add in in VisualStudio,I am Using C#.net for coding while building my application,I am getting the following exception:

The "InitializeDefaultProperties" task could not be loaded from the assembly Microsoft.VisualStudio.Tools.Office.BuildTasks, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a. Could not load file or assembly 'Microsoft.VisualStudio.Tools.Office.BuildTasks, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' or one of its dependencies. The system cannot find the file specified. Confirm that the declaration is correct, and that the assembly and all its dependencies are available.

Can anyone help me,Thanks in advance...............

share|improve this question

1 Answer

In case it's still relevant to anyone :) Just came across this very issue after upgrating VS2008 project to VS2010.

gacutil /l | find /i "Microsoft.VisualStudio.Tools.Office.BuildTasks" shows you the list of msbuild office assemblies - most likely, with the error above the dll are just not installed in GAC.

I personally ended up using build targets from v9.0, however on a machine with only VS2010 installed that required manual registration of the following v9.0 dlls:

  • Microsoft.VisualStudio.Tools.Applications.BuildTasks.dll
  • Microsoft.VisualStudio.Tools.Office.BuildTasks.dll

(I just took them from a machine which had VS2008 installed)

share|improve this answer
I can find the assemblies installed when I run this command. but still I cannot find them under C;\Windows\assembly. How do I fix the error where in there is the missing file Microsoft.VisualStudio.Tools.Office.BuildTasks.dll – Sandepku May 4 at 17:28

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.