Это недопустимый xsi: введите DetectedEntity в надстройке Outlook

#outlook #office-js #office-addins #outlook-web-addins

#outlook #office-js #office-addins #outlook-web-addins

Вопрос:

Я пытаюсь обнаружить шаблон при чтении сообщения в почте Outlook (веб и рабочий стол), поэтому я решил добавить точку DetectedEntity расширения, но я продолжаю получать следующую ошибку в Интернете, и она также не работает на рабочем столе office 2016.

Это приложение не может быть установлено. Файл манифеста не соответствует определению схемы. Это недопустимый xsi:type ‘http://schemas.microsoft.com/office/mailappversionoverrides:DetectedEntity «… Это недопустимый xsi:type ‘http://schemas.microsoft.com/office/mailappversionoverrides:DetectedEntity «.

МАНИФЕСТ

   <!-- Message Read -->
  <ExtensionPoint xsi:type="MessageComposeCommandSurface">
    <!-- Use the default tab of the ExtensionPoint or create your own with <CustomTab id="myTab"> -->
    <OfficeTab id="TabDefault">
      <!-- Up to 6 Groups added per Tab -->
      <Group id="msgComposeCmdGroup">
        <Label resid="GroupLabel" />
        <!-- Launch the add-in : task pane button -->
        <Control xsi:type="Button" id="msgReadOpenPaneButton">
          <Label resid="TaskpaneButton.Label" />
          <Supertip>
            <Title resid="TaskpaneButton.Label" />
            <Description resid="TaskpaneButton.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>
        <!-- Go to http://aka.ms/ButtonCommands to learn how to add more Controls: ExecuteFunction and Menu -->
      </Group>
    </OfficeTab>
  </ExtensionPoint>
  <ExtensionPoint xsi:type="DetectedEntity">
    <Label resid="residLabelName"/>
    <!--If you opt to include RequestedHeight, it must be between 140px to 450px, inclusive.-->
    <!--<RequestedHeight>360</RequestedHeight>-->
    <SourceLocation resid="Taskpane.Url" />
    <Rule xsi:type="RuleCollection" Mode="And">
      <Rule xsi:type="ItemIs" ItemType="Message" />
      <Rule xsi:type="ItemHasKnownEntity" EntityType="MeetingSuggestion" Highlight="all" />
      <Rule xsi:type="ItemHasKnownEntity" EntityType="Address" Highlight="none" />
    </Rule>
  </ExtensionPoint>

  <!-- Go to http://aka.ms/ExtensionPointsCommands to learn how to add more Extension Points: MessageRead, AppointmentOrganizer, AppointmentAttendee -->
</DesktopFormFactor>
  

Как мне устранить проблему> Мне нужен способ реализовать эту функцию.

Ответ №1:

DetectedEntities поддерживается только с VersionOverrides V1_1, если вы используете V1_0, будет выдана эта ошибка.

Содержащий элемент VersionOverrides должен иметь значение атрибута xsi:type как VersionOverridesV1_1.

Комментарии:

1. О! Большое спасибо! Я полностью пропустил это. Заставил его работать, используя официальный пример git, но я рад, что увидел разницу. Спасибо.