在清单文件中指定 "Excel Only"
Specify "Excel Only" in the manifest file
几天前我提交了一个 Excel 加载项。今天收到一个改签需求:
1.2 Your app or add-in must work according to your description, and must not be in an unfinished state.`
Your add-in claims to work in the Word, PowerPoint and Project clients however it does not appear to be fully functional as there appears to be no interaction between your add-in and the mentioned clients, except for the Excel client. Please ensure your add-in works in all declared applications.
If you do not intent to support the Word, PowerPoint and Project clients, please make the relevant changes in your add-in manifest.
我不知道在哪里(在清单文件中)指定此加载项仅用于 Excel。有人可以帮忙吗?
在您的清单中,会有如下部分:
<Hosts>
<Host Name="Workbook" />
<Host Name="Presentation" />
<Host Name="Project" />
<Host Name="Document" />
</Hosts>
删除所有 <Host ... />
行,但包含 "Workbook" 的行除外,您就大功告成了。
有关详细信息,请参阅 https://dev.office.com/docs/add-ins/overview/add-in-manifests。
几天前我提交了一个 Excel 加载项。今天收到一个改签需求:
1.2 Your app or add-in must work according to your description, and must not be in an unfinished state.`
Your add-in claims to work in the Word, PowerPoint and Project clients however it does not appear to be fully functional as there appears to be no interaction between your add-in and the mentioned clients, except for the Excel client. Please ensure your add-in works in all declared applications. If you do not intent to support the Word, PowerPoint and Project clients, please make the relevant changes in your add-in manifest.
我不知道在哪里(在清单文件中)指定此加载项仅用于 Excel。有人可以帮忙吗?
在您的清单中,会有如下部分:
<Hosts>
<Host Name="Workbook" />
<Host Name="Presentation" />
<Host Name="Project" />
<Host Name="Document" />
</Hosts>
删除所有 <Host ... />
行,但包含 "Workbook" 的行除外,您就大功告成了。
有关详细信息,请参阅 https://dev.office.com/docs/add-ins/overview/add-in-manifests。