We have an Addin that can run on Word and Excel, but I want to limit it only to specific platforms (Word 2016 or greater, Excel 2016 or greater). How can I do it using Manifest file?
Currently I am trying to limit like that:
<Requirements>
<Sets DefaultMinVersion="1.1">
<Set name="WordApi" />
<Set name="ExcelApi" />
</Sets>
</Requirements
But when I upload this manifest to Seller Dashboard, i get the following:
Please make sure that the file is an Office package manifest
What I am doing wrong? Sorry, but it's not clear from the documentation how to specify host requirements
Thanks