**Is it possible to create/display add-in in separate ribbon at the top bar in outlook? ** I tried by using "PrimaryCommandSurface" , "ContosoRibbonTab" but it gave the "Invalid xsi:type" error.
Can you please help in updating the valid manifest.xml for outlook.
<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:mailappor="http://schemas.microsoft.com/office/mailappversionoverrides/1.0" xsi:type="MailApp">
.
<!-- Existing manifest content -->
.
<ExtensionPoint xsi:type="MessageReadCommandSurface">
<CustomTab id="CustomTabId">
<Group id="CustomGroupId" label="Custom Group">
<Label resid="groupLabel" />
<Control xsi:type="Button" id="CustomButtonId">
<Label resid="buttonLabel" />
<Supertip>
<Title resid="buttonLabel" />
<Description resid="buttonDescription" />
</Supertip>
<Icon>
<bt:Image size="16" resid="icon16" />
<bt:Image size="32" resid="icon32" />
<bt:Image size="80" resid="icon80" />
</Icon>
<Action xsi:type="ExecuteFunction">
<FunctionName>customButtonAction</FunctionName>
</Action>
</Control>
</Group>
<Label resid="tabLabel" />
</CustomTab>
</ExtensionPoint>
My Enviornment-Details: - (Version 2305 Build 16.0.16501.20074) 64-bit.