0
我試圖向我的加載項添加一個控制按鈕。我沒有改變大部分文件,所以我只包括我的清單中的選定部分。即使在第二個Control未註釋的情況下,清單也會根據validate-office-addin進行傳遞,但在嘗試上載到Office 365進行測試時,我被告知我的清單無效。幾個小時後,我一直對此感到震驚,並希望得到一些幫助。Office清單通過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>
有一個在文檔某處的警告,說外接命令不支持內容插件,但是這只是有一個任務面板,所以它不應被視爲一個。有誰知道Office如何確定您是否是內容加載項? – jwesly
發現這個問題,是一個低下來的拼寫錯誤 – jwesly