如何定义清单 "Requirements" 以要求 Excel API 1.3 和 Word API 1.3(在单个清单中)
How to define manifest "Requirements" to require Excel API 1.3 and Word API 1.3 (in a single manifest)
我的加载项(Excel 1.3 和 Word 1.3 中的 运行s)被 Office 商店拒绝,因为我看不到如何在此清单中定义它 "Requirements".
我有一个 Office.js 加载项需要同时在 Excel 和 Word 中 运行(它集成了 2)。它需要 API 1.3 的 Word 和 Excel(2013 年将无法使用)。我不知道如何在清单中要求 2016 版本。
这是无效的(需要 'set' in 'sets'):
<Requirements>
<Sets DefaultMinVersion="1.3">
</Sets>
</Requirements>
我没有看到 Excel 和 Word 通用的 MinVersion="1.3" 的 'set'。
我没有看到任何与 Excel 和 Word(需要 1.3)相同的 "Methods"。例如 'Method Name="Document.getSelectedDataAsync"' 仅对 Word 有效。
这是我所做的:
在加载项 public 描述中,我明确指出它需要特定版本的 Office 2016(或更高版本)。
我使用 运行 时间检查 (isSetSupported),如果用户没有支持 API 1.3 的 Word 或 Excel,我会提供明确的通知,告诉他们他们的版本不兼容以及哪些版本是。我还禁用了所有功能(因此没有错误)。
"Validation Test Results" 报告指出我必须在清单中注明 2016 年的要求。它说:
"If you do not support 2013 SP1 because you are using an API only available in 2016/Online, you must put these apis in the requirements tag in your manifest. If you are not using an API only available in 2016/Online, then you must support 2013 SP1. "
但是我如何在清单中定义这个要求(Excel 和 Word 都是 1.3)?
如果您已提交并在测试说明中解释了问题,验证团队将通过记录的电子邮件地址与您联系,讨论如何在这种情况下进行。
我的加载项(Excel 1.3 和 Word 1.3 中的 运行s)被 Office 商店拒绝,因为我看不到如何在此清单中定义它 "Requirements". 我有一个 Office.js 加载项需要同时在 Excel 和 Word 中 运行(它集成了 2)。它需要 API 1.3 的 Word 和 Excel(2013 年将无法使用)。我不知道如何在清单中要求 2016 版本。
这是无效的(需要 'set' in 'sets'):
<Requirements>
<Sets DefaultMinVersion="1.3">
</Sets>
</Requirements>
我没有看到 Excel 和 Word 通用的 MinVersion="1.3" 的 'set'。
我没有看到任何与 Excel 和 Word(需要 1.3)相同的 "Methods"。例如 'Method Name="Document.getSelectedDataAsync"' 仅对 Word 有效。
这是我所做的: 在加载项 public 描述中,我明确指出它需要特定版本的 Office 2016(或更高版本)。 我使用 运行 时间检查 (isSetSupported),如果用户没有支持 API 1.3 的 Word 或 Excel,我会提供明确的通知,告诉他们他们的版本不兼容以及哪些版本是。我还禁用了所有功能(因此没有错误)。
"Validation Test Results" 报告指出我必须在清单中注明 2016 年的要求。它说: "If you do not support 2013 SP1 because you are using an API only available in 2016/Online, you must put these apis in the requirements tag in your manifest. If you are not using an API only available in 2016/Online, then you must support 2013 SP1. "
但是我如何在清单中定义这个要求(Excel 和 Word 都是 1.3)?
如果您已提交并在测试说明中解释了问题,验证团队将通过记录的电子邮件地址与您联系,讨论如何在这种情况下进行。