Reputation: 5510
I put all the source files (xml manifest, JS files, etc.) of an Excel add-in to a folder \\Mac\Home\
. In Excel for Desktop
, the manifest file appears in SHARED FOLDER
.
To learn how to implement Add-in Commands
, I create another Excel add-in project by Visual Studio, it generates many files including an xml file. I make SourceLocation
pointed to the right html file (i.e., \\Mac\Home\Home.html
). Then I am able to debug the project from Visual Studio, which opens a workbook in Excel. And there is indeed an add-in command.
So I copy the xml file which enables add-in command to the folder \\Mac\Home
and replace my initial manifest. However, this time, Excel for Windows could not find the manifest in SHARED FOLDER
.
Does anyone know what's wrong there?
Edit 1: As I write in the comment, if I remove the part VersionOverrides
, the manifest appears in SHARED FOLDER
. So the problem comes from the content of
VersionOverrides
.
I copied Button16x16.png
, Button32x32.png
and Button80x80.png
to \\Mac\Home\Images\
, and the folder Functions
to \\Mac\Home\Functions\
. Then I replaced everywhere ~remoteAppUrl
by \\Mac\Home
to generate this new xml file. It still does not work.
Upvotes: 2
Views: 2429
Reputation: 2668
Troubleshooting manifest issues:
Upvotes: 2