I have been working on an excel add-in. I have deployed it to azure, and I am now working to sideload it to verify functionality. I cannot get it to sideload. It briefly flashes the custom ribbon menu that I created, but then it disappears and the following error shows up below. "One or more add-ins failed to download a required resource." This addin does load in office online. This issue is only on the desktop excel when sideloading. It works when I debug from visual studio code. I noticed another user posted the same issue here.
Deploy, host and sideload Excel Office Addin - Error loading add-ins
I have not been able to find a solution. Any help or recommendations on support is much appreciated. Thank you.
Update - Here is my manifest. Apologies if I did not post this correctly. I am new to posting here. Thank you.
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<OfficeApp xmlns="http://schemas.microsoft.com/office/appforoffice/1.1" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:bt="http://schemas.microsoft.com/office/officeappbasictypes/1.0" xmlns:ov="http://schemas.microsoft.com/office/taskpaneappversionoverrides" xsi:type="TaskPaneApp">
<!-- <OfficeApp xmlns="http://schemas.microsoft.com/office/appforoffice/1.1" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:bt="http://schemas.microsoft.com/office/officeappbasictypes/1.1" xmlns:ov="http://schemas.microsoft.com/office/contentappversionoverrides" xsi:type="ContentApp"> -->
<Id>xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx</Id>
<Version>1.0.0.0</Version>
<ProviderName>Contoso</ProviderName>
<DefaultLocale>en-US</DefaultLocale>
<DisplayName DefaultValue="MYADDIN"/>
<Description DefaultValue="Write your own Excel functions in TypeScript."/>
<IconUrl DefaultValue="https://azure_website.windows.net/assets/icon-32.png"/>
<SupportUrl DefaultValue="https://www.contoso.com/help"/>
<HighResolutionIconUrl DefaultValue="https://azure_website.windows.net/assets/icon-64.png"/>
<AppDomains>
<AppDomain>https://azure_website.windows.net</AppDomain>
</AppDomains>
<Hosts>
<Host Name="Workbook"/>
</Hosts>
<Requirements>
<Sets DefaultMinVersion="1.1">
<!-- <Set Name="CustomFunctionsRuntime" MinVersion="1.1"/> -->
<Set Name="SharedRuntime" MinVersion="1.1"/>
</Sets>
</Requirements>
<DefaultSettings>
<SourceLocation DefaultValue="https://azure_website.windows.net"/>
</DefaultSettings>
<Permissions>ReadWriteDocument</Permissions>
<VersionOverrides xmlns="http://schemas.microsoft.com/office/taskpaneappversionoverrides" xsi:type="VersionOverridesV1_1">
<!-- <Hosts> -->
<HostsOverrides>
<Host xsi:type="Workbook">
<Runtimes>
<Runtime resid="Taskpane.Url" lifetime="long" />
</Runtimes>
<AllFormFactors>
<ExtensionPoint xsi:type="CustomFunctions">
<Script>
<SourceLocation resid="Functions.Script.Url"/>
</Script>
<Page>
<!-- <SourceLocation resid="Functions.Page.Url"/> -->
<SourceLocation resid="Taskpane.Url"/>
</Page>
<Metadata>
<SourceLocation resid="Functions.Metadata.Url"/>
</Metadata>
<Namespace resid="Functions.Namespace"/>
</ExtensionPoint>
</AllFormFactors>
<DesktopFormFactor>
<GetStarted>
<Title resid="GetStarted.Title"/>
<Description resid="GetStarted.Description"/>
<LearnMoreUrl resid="GetStarted.LearnMoreUrl"/>
</GetStarted>
<!-- <FunctionFile resid="Commands.Url"/> -->
<FunctionFile resid="Taskpane.Url"/>
<ExtensionPoint xsi:type="PrimaryCommandSurface">
<CustomTab id="tabSchedule">
<Label resid="tabSchedule.Label"/>
<!-- <OfficeTab id="tabSchedule"> -->
<Group id="grpSetupNewChart">
<Label resid="grpSetupNewChart.Label"/>
<Icon>
<bt:Image size="16" resid="Icon.16x16"/>
<bt:Image size="32" resid="Icon.32x32"/>
<bt:Image size="80" resid="Icon.80x80"/>
</Icon>
<Control xsi:type="Button" id="btnCreateNewChart">
<Label resid="btnCreateNewChart.Label"/>
<Supertip>
<Title resid="btnCreateNewChart.Label"/>
<Description resid="btnCreateNewChart.Tooltip"/>
</Supertip>
<Icon>
<bt:Image size="16" resid="Icon.16x16"/>
<bt:Image size="32" resid="Icon.32x32"/>
<bt:Image size="80" resid="Icon.80x80"/>
</Icon>
<Action xsi:type="ExecuteFunction">
<FunctionName>createNewChart</FunctionName>
</Action>
</Control>
<Control xsi:type="Button" id="btnPlotNewChart">
<Label resid="btnPlotNewChart.Label"/>
<Supertip>
<Title resid="btnPlotNewChart.Label"/>
<Description resid="btnPlotNewChart.Tooltip"/>
</Supertip>
<Icon>
<bt:Image size="16" resid="Icon.16x16"/>
<bt:Image size="32" resid="Icon.32x32"/>
<bt:Image size="80" resid="Icon.80x80"/>
</Icon>
<Action xsi:type="ExecuteFunction">
<FunctionName>plotNewChart</FunctionName>
</Action>
</Control>
<Control xsi:type="Button" id="btnPlotNewChartSVG">
<Label resid="btnPlotNewChartSVG.Label"/>
<Supertip>
<Title resid="btnPlotNewChartSVG.Label"/>
<Description resid="btnPlotNewChart.Tooltip"/>
</Supertip>
<Icon>
<bt:Image size="16" resid="Icon.16x16"/>
<bt:Image size="32" resid="Icon.32x32"/>
<bt:Image size="80" resid="Icon.80x80"/>
</Icon>
<Action xsi:type="ExecuteFunction">
<FunctionName>plotNewChartSVG</FunctionName>
</Action>
</Control>
<Control xsi:type="Button" id="btnResetFormulas">
<Label resid="btnResetFormulas.Label"/>
<Supertip>
<Title resid="btnResetFormulas.Label"/>
<Description resid="btnResetFormulas.Tooltip"/>
</Supertip>
<Icon>
<bt:Image size="16" resid="Icon.16x16"/>
<bt:Image size="32" resid="Icon.32x32"/>
<bt:Image size="80" resid="Icon.80x80"/>
</Icon>
<Action xsi:type="ExecuteFunction">
<FunctionName>setDefaultFormulas</FunctionName>
</Action>
</Control>
<Control xsi:type="Button" id="btnWriteText">
<Label resid="btnWriteText.Label"/>
<Supertip>
<Title resid="btnWriteText.Label"/>
<Description resid="btnCreateNewChart.Tooltip"/>
</Supertip>
<Icon>
<bt:Image size="16" resid="Icon.16x16"/>
<bt:Image size="32" resid="Icon.32x32"/>
<bt:Image size="80" resid="Icon.80x80"/>
</Icon>
<Action xsi:type="ExecuteFunction">
<FunctionName>writeText</FunctionName>
</Action>
</Control>
</Group>
<Group id="grpFormatNewChart">
<Label resid="grpFormatNewChart.Label"/>
<Icon>
<bt:Image size="16" resid="Icon.16x16"/>
<bt:Image size="32" resid="Icon.32x32"/>
<bt:Image size="80" resid="Icon.80x80"/>
</Icon>
<Control xsi:type="Menu" id="TestMenu2">
<Label resid="mnuPrintViews.Label" />
<Supertip>
<Title resid="mnuPrintViews.Label" />
<Description resid="mnuPrintViews.Tooltip" />
</Supertip>
<Icon>
<bt:Image size="16" resid="Icon.32x32" />
<bt:Image size="32" resid="Icon.32x32" />
<bt:Image size="80" resid="Icon.32x32" />
</Icon>
<Items>
<Item id="btnPrintView_All">
<Label resid="btnPrintViewAll.Label"/>
<Supertip>
<Title resid="btnPrintViewAll.Label" />
<Description resid="mnuPrintViews.Tooltip" />
</Supertip>
<Icon>
<bt:Image size="16" resid="Icon.32x32" />
<bt:Image size="32" resid="Icon.32x32" />
<bt:Image size="80" resid="Icon.32x32" />
</Icon>
<Action xsi:type="ExecuteFunction">
<FunctionName>loadPrintView</FunctionName>
</Action>
</Item>
<Item id="btnPrintView_Simple">
<Label resid="btnPrintViewSimple.Label"/>
<Supertip>
<Title resid="btnPrintViewSimple.Label" />
<Description resid="mnuPrintViews.Tooltip" />
</Supertip>
<Icon>
<bt:Image size="16" resid="Icon.32x32" />
<bt:Image size="32" resid="Icon.32x32" />
<bt:Image size="80" resid="Icon.32x32" />
</Icon>
<Action xsi:type="ExecuteFunction">
<FunctionName>loadPrintView</FunctionName>
</Action>
</Item>
<Item id="btnPrintView_ProductionDetail">
<Label resid="btnPrintViewProdDtl.Label"/>
<Supertip>
<Title resid="btnPrintViewProdDtl.Label" />
<Description resid="mnuPrintViews.Tooltip" />
</Supertip>
<Icon>
<bt:Image size="16" resid="Icon.32x32" />
<bt:Image size="32" resid="Icon.32x32" />
<bt:Image size="80" resid="Icon.32x32" />
</Icon>
<Action xsi:type="ExecuteFunction">
<FunctionName>loadPrintView</FunctionName>
</Action>
</Item>
<Item id="btnPrintView_ProductionSummary">
<Label resid="btnPrintViewProdSumm.Label"/>
<Supertip>
<Title resid="btnPrintViewProdSumm.Label" />
<Description resid="mnuPrintViews.Tooltip" />
</Supertip>
<Icon>
<bt:Image size="16" resid="Icon.32x32" />
<bt:Image size="32" resid="Icon.32x32" />
<bt:Image size="80" resid="Icon.32x32" />
</Icon>
<Action xsi:type="ExecuteFunction">
<FunctionName>loadPrintView</FunctionName>
</Action>
</Item>
<Item id="btnPrintView_Tags">
<Label resid="btnPrintViewTags.Label"/>
<Supertip>
<Title resid="btnPrintViewTags.Label" />
<Description resid="mnuPrintViews.Tooltip" />
</Supertip>
<Icon>
<bt:Image size="16" resid="Icon.32x32" />
<bt:Image size="32" resid="Icon.32x32" />
<bt:Image size="80" resid="Icon.32x32" />
</Icon>
<Action xsi:type="ExecuteFunction">
<FunctionName>loadPrintView</FunctionName>
</Action>
</Item>
<Item id="btnPrintView_Calendar">
<Label resid="btnPrintViewCalendar.Label"/>
<Supertip>
<Title resid="btnPrintViewCalendar.Label" />
<Description resid="mnuPrintViews.Tooltip" />
</Supertip>
<Icon>
<bt:Image size="16" resid="Icon.32x32" />
<bt:Image size="32" resid="Icon.32x32" />
<bt:Image size="80" resid="Icon.32x32" />
</Icon>
<Action xsi:type="ExecuteFunction">
<FunctionName>loadPrintView</FunctionName>
</Action>
</Item>
<Item id="btnPrintView_Indirects">
<Label resid="btnPrintViewIndirects.Label"/>
<Supertip>
<Title resid="btnPrintViewIndirects.Label" />
<Description resid="mnuPrintViews.Tooltip" />
</Supertip>
<Icon>
<bt:Image size="16" resid="Icon.32x32" />
<bt:Image size="32" resid="Icon.32x32" />
<bt:Image size="80" resid="Icon.32x32" />
</Icon>
<Action xsi:type="ExecuteFunction">
<FunctionName>loadPrintView</FunctionName>
</Action>
</Item>
<Item id="btnPrintView_Linear">
<Label resid="btnPrintViewLinear.Label"/>
<Supertip>
<Title resid="btnPrintViewLinear.Label" />
<Description resid="mnuPrintViews.Tooltip" />
</Supertip>
<Icon>
<bt:Image size="16" resid="Icon.32x32" />
<bt:Image size="32" resid="Icon.32x32" />
<bt:Image size="80" resid="Icon.32x32" />
</Icon>
<Action xsi:type="ExecuteFunction">
<FunctionName>loadPrintView</FunctionName>
</Action>
</Item>
</Items>
</Control>
<Control xsi:type="Menu" id="Control_ChartResolution">
<Label resid="mnuChartResolution.Label" />
<Supertip>
<Title resid="mnuChartResolution.Label" />
<Description resid="mnuPrintViews.Tooltip" />
</Supertip>
<Icon>
<bt:Image size="16" resid="Icon.32x32" />
<bt:Image size="32" resid="Icon.32x32" />
<bt:Image size="80" resid="Icon.32x32" />
</Icon>
<Items>
<Item id="btnAdjRes_year_quarter">
<Label resid="btnYearQuarter.Label"/>
<Supertip>
<Title resid="btnYearQuarter.Label" />
<Description resid="mnuChartResolution.Tooltip" />
</Supertip>
<Icon>
<bt:Image size="16" resid="Icon.32x32" />
<bt:Image size="32" resid="Icon.32x32" />
<bt:Image size="80" resid="Icon.32x32" />
</Icon>
<Action xsi:type="ExecuteFunction">
<FunctionName>adjustChartResolution</FunctionName>
</Action>
</Item>
<Item id="btnAdjRes_year_month">
<Label resid="btnYearMonth.Label"/>
<Supertip>
<Title resid="btnYearMonth.Label" />
<Description resid="mnuChartResolution.Tooltip" />
</Supertip>
<Icon>
<bt:Image size="16" resid="Icon.32x32" />
<bt:Image size="32" resid="Icon.32x32" />
<bt:Image size="80" resid="Icon.32x32" />
</Icon>
<Action xsi:type="ExecuteFunction">
<FunctionName>adjustChartResolution</FunctionName>
</Action>
</Item>
<Item id="btnAdjRes_quarter_month">
<Label resid="btnQuarterMonth.Label"/>
<Supertip>
<Title resid="btnQuarterMonth.Label" />
<Description resid="mnuChartResolution.Tooltip" />
</Supertip>
<Icon>
<bt:Image size="16" resid="Icon.32x32" />
<bt:Image size="32" resid="Icon.32x32" />
<bt:Image size="80" resid="Icon.32x32" />
</Icon>
<Action xsi:type="ExecuteFunction">
<FunctionName>adjustChartResolution</FunctionName>
</Action>
</Item>
<Item id="btnAdjRes_month_week">
<Label resid="btnMonthWeek.Label"/>
<Supertip>
<Title resid="btnMonthWeek.Label" />
<Description resid="mnuChartResolution.Tooltip" />
</Supertip>
<Icon>
<bt:Image size="16" resid="Icon.32x32" />
<bt:Image size="32" resid="Icon.32x32" />
<bt:Image size="80" resid="Icon.32x32" />
</Icon>
<Action xsi:type="ExecuteFunction">
<FunctionName>adjustChartResolution</FunctionName>
</Action>
</Item>
<Item id="btnAdjRes_week_day">
<Label resid="btnWeekDay.Label"/>
<Supertip>
<Title resid="btnWeekDay.Label" />
<Description resid="mnuChartResolution.Tooltip" />
</Supertip>
<Icon>
<bt:Image size="16" resid="Icon.32x32" />
<bt:Image size="32" resid="Icon.32x32" />
<bt:Image size="80" resid="Icon.32x32" />
</Icon>
<Action xsi:type="ExecuteFunction">
<FunctionName>adjustChartResolution</FunctionName>
</Action>
</Item>
<Item id="btnAdjRes_day_hour">
<Label resid="btnDayHour.Label"/>
<Supertip>
<Title resid="btnDayHour.Label" />
<Description resid="mnuChartResolution.Tooltip" />
</Supertip>
<Icon>
<bt:Image size="16" resid="Icon.32x32" />
<bt:Image size="32" resid="Icon.32x32" />
<bt:Image size="80" resid="Icon.32x32" />
</Icon>
<Action xsi:type="ExecuteFunction">
<FunctionName>adjustChartResolution</FunctionName>
</Action>
</Item>
</Items>
</Control>
</Group>
<Group id="grpStatus">
<Label resid="grpStatus.Label"/>
<Icon>
<bt:Image size="16" resid="Icon.16x16"/>
<bt:Image size="32" resid="Icon.32x32"/>
<bt:Image size="80" resid="Icon.80x80"/>
</Icon>
<Control xsi:type="Button" id="btnShowTaskPane">
<Label resid="btnShowTaskPane.Label" />
<Supertip>
<Title resid="btnShowTaskPane.Label" />
<Description resid="btnShowTaskPane.Tooltip" />
</Supertip>
<Icon>
<bt:Image size="16" resid="Icon.16x16" />
<bt:Image size="32" resid="Icon.32x32" />
<bt:Image size="80" resid="Icon.80x80" />
</Icon>
<Action xsi:type="ShowTaskpane">
<SourceLocation resid="Taskpane.Url" />
</Action>
</Control>
</Group>
<!-- <Label resid="tabSchedule.Label"/> -->
</CustomTab>
<!-- </OfficeTab> -->
</ExtensionPoint>
</DesktopFormFactor>
</Host>
<!-- </Hosts> -->
</HostsOverrides>
<Resources>
<bt:Images>
<!-- <bt:Image id="Icon.16x16" DefaultValue="https://localhost:3000/assets/icon-16.png"/>
<bt:Image id="Icon.32x32" DefaultValue="https://localhost:3000/assets/icon-32.png"/>
<bt:Image id="Icon.80x80" DefaultValue="https://localhost:3000/assets/icon-80.png"/> -->
<bt:Image id="Icon.16x16" DefaultValue="https://azure_website.windows.net/assets/icon-16.png"/>
<bt:Image id="Icon.32x32" DefaultValue="https://azure_website.windows.net/assets/icon-32.png"/>
<bt:Image id="Icon.80x80" DefaultValue="https://azure_website.windows.net/assets/icon-80.png"/>
</bt:Images>
<bt:Urls>
<!-- <bt:Url id="Functions.Script.Url" DefaultValue="https://localhost:3000/public/functions.js"/>
<bt:Url id="Functions.Metadata.Url" DefaultValue="https://localhost:3000/public/functions.json"/>
<bt:Url id="Functions.Page.Url" DefaultValue="https://localhost:3000/public/functions.html"/>
<bt:Url id="GetStarted.LearnMoreUrl" DefaultValue="https://go.microsoft.com/fwlink/?LinkId=276812"/>
<bt:Url id="Commands.Url" DefaultValue="https://localhost:3000/commands.html"/>
<bt:Url id="Taskpane.Url" DefaultValue="https://localhost:3000/taskpane.html"/> -->
<bt:Url id="Functions.Script.Url" DefaultValue="https://azure_website.windows.net/public/functions.js"/>
<bt:Url id="Functions.Metadata.Url" DefaultValue="https://azure_website.windows.net/public/functions.json"/>
<bt:Url id="Functions.Page.Url" DefaultValue="https://azure_website.windows.net/public/functions.html"/>
<bt:Url id="GetStarted.LearnMoreUrl" DefaultValue="https://go.microsoft.com/fwlink/?LinkId=276812"/>
<bt:Url id="Commands.Url" DefaultValue="https://azure_website.windows.net/commands.html"/>
<bt:Url id="Taskpane.Url" DefaultValue="https://azure_website.windows.net/taskpane.html"/>
</bt:Urls>
<bt:ShortStrings>
<bt:String id="Functions.Namespace" DefaultValue="CONTOSO"/>
<bt:String id="GetStarted.Title" DefaultValue="Get started with the CHART ADDIN"/>
<bt:String id="CommandsGroup.Label" DefaultValue="Commands Group"/>
<bt:String id="tabSchedule.Label" DefaultValue="CHARTADDIN"/>
<bt:String id="grpSetupNewChart.Label" DefaultValue="Setup New"/>
<bt:String id="grpStatus.Label" DefaultValue="Status"/>
<bt:String id="TaskpaneButton.Label" DefaultValue="Show Taskpane"/>
<bt:String id="btnCreateNewChart.Label" DefaultValue="Create New"/>
<bt:String id="btnPlotNewChart.Label" DefaultValue="Plot New"/>
<bt:String id="btnPlotNewChartSVG.Label" DefaultValue="Plot New (SVG)"/>
<bt:String id="btnTestFunction.Label" DefaultValue="Test Function"/>
<bt:String id="btnShowTaskPane.Label" DefaultValue="Show Taskpane"/>
<bt:String id="btnResetFormulas.Label" DefaultValue="Reset Formulas"/>
<bt:String id="btnWriteText.Label" DefaultValue="Write Text"/>
<bt:String id="grpFormatNewChart.Label" DefaultValue="Format New"/>
<bt:String id="mnuPrintViews.Label" DefaultValue="Print Views"/>
<bt:String id="mnuChartResolution.Label" DefaultValue="Schedule Resolution"/>
<bt:String id="btnPrintViewAll.Label" DefaultValue="Print View - All"/>
<bt:String id="btnPrintViewSimple.Label" DefaultValue="Print View - Simple"/>
<bt:String id="btnPrintViewProdDtl.Label" DefaultValue="Print View - Production Detail"/>
<bt:String id="btnPrintViewProdSumm.Label" DefaultValue="Print View - Production Summary"/>
<bt:String id="btnPrintViewTags.Label" DefaultValue="Print View - Tags"/>
<bt:String id="btnPrintViewCalendar.Label" DefaultValue="Print View - Calendar"/>
<bt:String id="btnPrintViewIndirects.Label" DefaultValue="Print View - Indirects"/>
<bt:String id="btnPrintViewLinear.Label" DefaultValue="Print View - Linear"/>
<bt:String id="btnYearMonth.Label" DefaultValue="Year / Month"/>
<bt:String id="btnYearQuarter.Label" DefaultValue="Year / Quarter"/>
<bt:String id="btnQuarterMonth.Label" DefaultValue="Quarter / Month"/>
<bt:String id="btnMonthWeek.Label" DefaultValue="Month / Week"/>
<bt:String id="btnWeekDay.Label" DefaultValue="Week / Day"/>
<bt:String id="btnDayHour.Label" DefaultValue="Day / Hour"/>
</bt:ShortStrings>
<bt:LongStrings>
<bt:String id="GetStarted.Description" DefaultValue="ADDIN loaded succesfully."/>
<bt:String id="TaskpaneButton.Tooltip" DefaultValue="Click to Show a Taskpane"/>
<bt:String id="btnCreateNewChart.Tooltip" DefaultValue="Click to Create a New Chart"/>
<bt:String id="btnResetFormulas.Tooltip" DefaultValue="Click to reset New chart formulas."/>
<bt:String id="btnPlotNewChart.Tooltip" DefaultValue="Click to Plot your New Chart"/>
<bt:String id="btnTestFunction.Tooltip" DefaultValue="test function"/>
<bt:String id="mnuPrintViews.Tooltip" DefaultValue="Adjust the print views"/>
<bt:String id="mnuChartResolution.Tooltip" DefaultValue="Adjust the chart resolution"/>
<bt:String id="btnShowTaskPane.Tooltip" DefaultValue="Show the taskpane"/>
</bt:LongStrings>
</Resources>
</VersionOverrides>
</OfficeApp>