I need to work on an existing Word 2007 addIn project that\'s a part of a MSVS 2008 solution. However, when I try to debug the addIn, I get the following error message: &quo
I had the same issue, I changed the officeversion attribute & I had to install office 2010 with the currently installed office 2013
For the benefit of searchers, I hit this error in Visual Studio despite referencing the correct version in the section mentioned by @sdds.
For me the fix was:
Apparently, when the addin project is created, debug information such as the MS Office version and the executable path used for debugging is saved in the .CSPROJ file.
So debug is not guaranteed to work on another machine.
This information is saved in following XML node of the project file:
ProjectExtensions \ VisualStudio \ FlavorProperties \ ProjectProperties
In my case, the problem was in the attributes
OfficeVersion="14.0"
DebugInfoExeName="#Software\Microsoft\Office\14.0\Word\InstallRoot\Path#WINWORD.EXE"
Changing 14.0 to 12.0 (2010 to 2007) in their values solved my problem.
Check out these questions for reference: