I've created an office add in using Visual Studio 2015. The add in works perfectly with MSProject in debug mode.
I've published the add in following the instructions here. So far so good.
Now I'd like to release it to the Microsoft Windows Store. I've logged into the Seller Dashboard and I pretty much fall at the first hurdle.
It asks for the app package manifest file. TBH I'm not sure which file it wants exactly, so I tried
- xxx.OfficeAddin.vsto file in the root of the "publish" directory
- xxx.OfficeAddin.dll.manifest in the publish/Application Files/xxx.OfficeAddin_1_0_0_2 directory
- xxx.OfficeAddin.vsto also within the publish/Application Files/xxx.OfficeAddin_1_0_0_2 directory
I assume it wants No2 but it didn't work so I tried them all. None of them work and all result in the same error:
Your manifest does not reference any supported Office Add-in namespace. The most recent version is http://schemas.microsoft.com/office/appforoffice/1.1.Learn More
Googling this error in quotes returns nothing, without quote - a load of unrelated results.
I'm completely stumped now - has anyone managed to do this?
OfficeAddin.vsto
, which indicates a desktop-based add-in with access to the full MS Project object model. This MSDN article on Office and SharePoint Development in VS goes into great detail, but the gist is that VSTO add-ins cannot be deployed via the Office Store. They must be installed on the desktop. My answer below addresses Project Centennial, which may provide OP with a viable option. – joeschwa