标题元素不适用于清单中的操作元素 XML

Title element doesn't work with Action Element in Manifest XML

我正在为 Microsoft Word 创建 add-in。

我收到 Action 元素内的 Title 元素的清单验证错误。

Microsoft Reference documentation for Action Element

Error #1:
XML Schema Violation: Your manifest does not adhere to the current set of XML schema definitions for Office Add-in manifests. (link: https://aka.ms/add-in-manifest-schema-violation)
  - Details: The element 'Action' in namespace 'http://schemas.microsoft.com/office/taskpaneappversionoverrides' has invalid child element 'Title' in namespace 'http://schemas.microsoft.com/office/taskpaneappversionoverrides'. List of possible elements expected: 'TaskpaneId, SourceLocation' in namespace 'http://schemas.microsoft.com/office/taskpaneappversionoverrides'.
  - Line: 54
  - Column: 22

示例:

    <Action xsi:type="ShowTaskpane">
       <Title resid="Contoso.Taskpane.Title" />  --> //Adding this line throws error 
       <TaskpaneId>ButtonId1</TaskpaneId>
       <SourceLocation resid="Contoso.Taskpane.Url" />
   </Action>

有人可以帮我吗?

验证器检查 XML 元素出现的顺序。

请使用以下代码:

   <Action xsi:type="ShowTaskpane">
      <TaskpaneId>ButtonId1</TaskpaneId>
      <SourceLocation resid="Contoso.Taskpane.Url" />
       <Title resid="Contoso.Taskpane.Title" />  -->  
   </Action>