Search code examples
office-addinsword-addins

Office Word Add-in compatibility


I have a MS Word Add in and it is rejected by MS when I submit to Office store because it is not compatible with MS Word 2013 and MS Word 2016. But I just want to use my add in in MS Word online environment, how can I config my add on manifest file to prevent using from MS Word?

If it is impossible, can we prevent using from MS 2013? I see this add-in only available for MS Word 2016 and Word online only. How can we config it?

Please help me, Thanks


Solution

  • I had the same problem. The solution is easy. You must change your manifest xml. If you add the requirements for Word API 1.1 Office 2013 disappears automaticly when you submit it to the Office Store.

    <Requirements>
        <Sets DefaultMinVersion="1.1">
        <Set Name="WordApi" MinVersion="1.1"/>
        </Sets>
    </Requirements>
    

    For some crazy reason the order of the elements in the manifext xml is important. Add Requirements between Hosts and DefaultSettings.