I have created an VSTO Outlook addin. The configuration is as follows:
- Visual Studio 2008
- Office 2007 Outlook add in (3.5 Framework)
- MSI created using Visual Studio Setup Project
- Deployed to Office 2010 under windows 7
It works fine on the Dev PC however it fails to load once installed on the test machine. The outlook addin window shows a "Not loaded. A runtime error occurred during loading of COM add-in"
It is my understanding that I should not need to install any PIA as the Office 2007 PIA are part of Office 2010.
So far I have tried the following:
- set
VSTO_SUPPRESSDISPLAYALERTS
however it does not show any messages when it tries to start. - configured
Fuslogvw.exe
(Assembly Binding Log Viewer) however it is not showing any binding errors. - set
VTSO_LOGALERTS
and it is logging all alerts however as none are shown this has not helped.
Is there anything I am doing wrong or need to do in addition to make this work?