我已经用我的Mac创建了一个MS Word插件,并想开始将其提交到AppSource进行验证的过程。然而,这个过程需要上传一个包,而我还没有找到任何关于如何将我的项目编译成预期类型的包的文档。
您上传软件包的页面列出了以下可接受的文件类型:.msix, .msixbundle, .msixupload, .appx, .appxbundle, .appxupload, .xap。我已经下载了Visual Studio for Mac,因为有一些文档描述了使用VS将项目编译到这些类型的包中,但是我看不到任何方法来导入我现有的项目文件夹-也没有任何方法来启动一个新的Word插件项目(或任何听起来类似的项目)。
我的项目是一个使用约曼办公项目生成器(https://github.com/OfficeDev/generator-office)创建的基于React的插件,由您的标准React项目结构(package.json、webpack配置文件、src/组件)和我的manifest.xml文件组成。
编辑:
需要明确的是,在提交过程中确实有这样一个地方:
Drag your packages here (.msix, .msixbundle, .msixupload, .appx, .appxbundle, .appxupload, .xap) or browse your files.但是,当我尝试使用此接口上传manifest.xml文件时,收到以下错误:
- You must provide a package that supports each selected device family (or uncheck the box for unsupported device families). Note that targeting the Xbox device family requires a neutral or x64 package.
- You must upload at least one package. If you are using market groups, then each market group must have at least one package.
- You must fix all package validation errors before submitting.
- Package acceptance validation error: manifest.xml is an unknown package type. Please name your file with the appropriate file extension.我已经在我当前的清单上使用了清单验证工具,他们告诉我它在结构上是有效的,并且拥有所有必需的字段。这一点,以及我在下面的评论中提到的可接受的文件类型列表,让我相信我应该上传一个特定的编译包类型。
发布于 2019-02-15 03:16:14
要将要发布的Word外接程序提交到AppSource,您需要通过Seller Dashboard提交外接程序。您需要提交一个.xml manifest file.
有关如何将外接程序提交到SellerDashboard的更多信息,请访问here。
https://stackoverflow.com/questions/54694917
复制相似问题