I've built an office add-in for excel using office.js, angular2, and a manifest file on a share drive. It adds a new ribbon to excel, with custom icons that when clicked either perform various functions or open a taskpane which loads a web app in excel. I'm wondering if there's a clean, viable way I can distribute it to a few people internally who are also running Excel 2016.
This site lists options for deploying and publishing these add-ins, but it seems geared towards big projects/large organizations. It lists 5 options:
- Sideloading - this is what I currently use for development and feel like it may be my only option for distributing it internally, but this also seems problematic because it seems that when I edit or update my manifest file, each user has to know about it and then manually re-load the add-in to get the most up to date and working version.
- Centralized deployment - I think this is for Office 365 which I don't have. I also do not have Office 2016 ProPlus.
- Office Store - This tool is to be strictly internal so this option will not work.
- SharePoint catalog - This option does not support add-in commands so I can't do this either.
- Exchange server - Not sure about this, assuming this is for Outlook add-ins?
So, I guess I'm wondering:
- Is sideloading my only option?
- And, if so, is there a clean way I can distribute an excel add-in internally using sideloading while being able to maintain it, extend it, and push updates to it regularly?
Thanks.