我正在尝试向我的加载项添加控制按钮。我没有更改大部分文件,因此仅包含清单的选定部分。即使第二个控件未被注释,清单也会根据 validate-office-addin 通过,但是当尝试上传到 Office 365 进行测试时,我被告知我的清单无效。几个小时以来一直在敲打我的头,并希望得到一些帮助。
<Control xsi:type="Button" id="Contoso.TaskpaneButton">
<Label resid="Contoso.TaskpaneButton.Label" />
<Supertip>
<Title resid="Contoso.TaskpaneButton.Label" />
<Description resid="Contoso.TaskpaneButton.Tooltip" />
</Supertip>
<Icon>
<bt:Image size="16" resid="Contoso.tpicon_16x16" />
<bt:Image size="32" resid="Contoso.tpicon_32x32" />
<bt:Image size="80" resid="Contoso.tpicon_80x80" />
</Icon>
<Action xsi:type="ShowTaskpane">
<TaskpaneId>ButtonId1</TaskpaneId>
<SourceLocation resid="Contoso.Taskpane.Url" />
</Action>
</Control>
<Control xsi:type="Button" id="Contoso.RefreshButton">
<Label resid="Contoso.RefreshButton.Label" />
<Supertip>
<Title resid="Contoso.RefreshButton.Label" />
<Description resid="Contoso.RefreshButton.Tooltip" />
</Supertip>
<Icon>
<bt:Image size="16" resid="Contoso.tpicon_16x16" />
<bt:Image size="32" resid="Contoso.tpicon_32x32" />
<bt:Image size="80" resid="Contoso.tpicon_80x80" />
</Icon>
<Action xsi:type="ExecuteFunction">
<FunctionName>refreshAllReports</FunctionName>
</Action>
</Control>
原来是清单中较低的拼写错误