I have developed a VSTO Plugin for Microsoft Word. Now I want to check the compatibility of this plugin with Word. How can I find out, with which Word versions my Plugin is compatible with?
Thank and regards
There are several aspects in case of VSTO add-ins:
The VSTO runtime. COM add-ins can be run in Word 2000 and above. To find out with what Word versions your add-in is compatible you need to check where VSTO is supported. It depends on the .net runtime version of course, but the Run solutions in different versions of Microsoft Office page lists supported Office versions depending on the VSTO version and target .net framework used.
The Word object model. As for the host application, you need to review your code and check what properties and methods are used. Typically the minimum supported version corresponds to the Word interop version you have used in your solution. If you try to run your solution in an earlier Word version there is a chance to call a property or method which was introduced in later versions.
The installer. In your installer you may configure the minimum required version. Depending on that you may figure out the supported versions of Word.