我們正在嘗試安裝一個加載項,該插件使用版本替代1.1中引入的pinnable任務窗格操作。引起加載項安裝問題的Pinnable任務窗格操作
錯誤讀取 「無法安裝這個應用程序。清單文件不符合模式定義。命名空間‘http://schemas.microsoft.com/office/mailappversionoverrides/1.1’元素‘行動’在命名空間無效子元素'SupportsPinning'http://schemas.microsoft.com/office/mailappversionoverrides/1.1 ...「
我們所在的Exchange服務器版本是Exchange 2016 CU1。
有沒有人遇到過這種情況?
下面的清單的樣本...
<VersionOverrides xmlns="http://schemas.microsoft.com/office/mailappversionoverrides" xmlns:bt="http://schemas.microsoft.com/office/officeappbasictypes/1.0"
xsi:type="VersionOverridesV1_0">
<Requirements>
<bt:Sets DefaultMinVersion="1.4">
<bt:Set Name="Mailbox" />
</bt:Sets>
</Requirements>
<Hosts>
<Host xsi:type="MailHost">
<DesktopFormFactor>
<!-- Message read -->
<ExtensionPoint xsi:type="MessageReadCommandSurface">
<OfficeTab id="TabDefault">
<Group id="msgreadTabMessage.grp1">
<Label resid="groupLabel" />
<Control xsi:type="Button" id="msgreadTabMessage.grp1.btnView">
<Label resid="buttonLabel" />
<Supertip>
<Title resid="superTipTitle" />
<Description resid="superTip" />
</Supertip>
<Icon>
<bt:Image size="16" resid="icon1_16x16" />
<bt:Image size="32" resid="icon1_32x32" />
<bt:Image size="80" resid="icon1_80x80" />
</Icon>
<Action xsi:type="ShowTaskpane">
<SourceLocation resid="taskPaneUrl" />
</Action>
</Control>
</Group>
</OfficeTab>
</ExtensionPoint>
</DesktopFormFactor>
</Host>
</Hosts>
<VersionOverrides xmlns="http://schemas.microsoft.com/office/mailappversionoverrides/1.1" xsi:type="VersionOverridesV1_1">
<Hosts>
<Host xsi:type="MailHost">
<DesktopFormFactor>
<!-- Message read -->
<ExtensionPoint xsi:type="MessageReadCommandSurface">
<OfficeTab id="TabDefault">
<Group id="msgreadTabMessage.grp1">
<Label resid="groupLabel" />
<Control xsi:type="Button" id="msgreadTabMessage.grp1.btnView">
<Label resid="buttonLabel" />
<Supertip>
<Title resid="superTipTitle" />
<Description resid="superTip" />
</Supertip>
<Icon>
<bt:Image size="16" resid="icon1_16x16" />
<bt:Image size="32" resid="icon1_32x32" />
<bt:Image size="80" resid="icon1_80x80" />
</Icon>
<Action xsi:type="ShowTaskpane">
<SourceLocation resid="taskPaneUrl" />
<SupportsPinning>true</SupportsPinning>
</Action>
</Control>
</Group>
</OfficeTab>
</ExtensionPoint>
</DesktopFormFactor>
</Host>
</Hosts>
</VersionOverrides>
</VersionOverrides>
您是指第一行的清單? 版本覆蓋1.1部分位於版本覆蓋1.0部分。 奇怪的部分是,它在我們測試CU4上的Exchange 2016服務器上的清單時起作用。 –