简体   繁体   English

如何修复1300应用提交错误?

[英]How to fix app submission error of 1300?

My application submission failed and I received a mail from the Store that says it failed with error code 1300 but not much more information. 我的应用程序提交失败,我从商店收到了一封邮件,说失败,错误代码为1300,但没有更多信息。 I noticed that it failed in the preprocessing. 我注意到它在预处理中失败了。

Build/Run/Packaging/WACK all pass on my local machine. Build / Run / Packaging / WACK都在我的本地计算机上传递。

(I work on the .NET Native runtime and compiler team) (我在.NET Native运行时和编译器团队中工作)

We've identified an issue with the way some of our targets behave when you have configuration values that aren't "DEBUG" or "RELEASE". 我们发现当您的配置值不是“ DEBUG”或“ RELEASE”时,某些目标的行为方式存在问题。 For example, most Unity apps use a config named "Master" and it causes us to not properly wire up one of our dependency packages (Microsoft.NET.Native.Framework-xxx). 例如,大多数Unity应用程序使用名为“ Master”的配置,这会导致我们无法正确连接我们的依赖包之一(Microsoft.NET.Native.Framework-xxx)。 As you've noticed, this causes a great deal of headache for the Store ingestion pipeline as your package now looks somewhat malformed. 正如您所注意到的,由于您的包裹现在看起来有些畸形,这给商店的接收管道带来了很多麻烦。

The fix is currently out for review and we'll get it published as with 5.3.3 of Microsoft.NETCore.UniversalWindowsPlatform. 该修补程序目前正在审核中,我们将与Microsoft.NETCore.UniversalWindowsPlatform的5.3.3一起发布。 It will take a bit to make it through review but you should see that update available shortly. 通过审核可能需要一些时间,但是您应该很快就会看到该更新。

Workaround In the interim, there are two ways we recommend to avoid this issue. 解决方法在此期间,我们建议您采用两种方法来避免此问题。 First, downgrade Microsoft.NETCore.UniversalWindowsPlatform to version 5.2.3. 首先,将Microsoft.NETCore.UniversalWindowsPlatform降级到版本5.2.3。 The bug only exists in 5.3+ so you'll be safe on that version. 该错误仅存在于5.3+中,因此您可以安全使用该版本。 Alternately, If there are fixes you need in 5.3+, you can also avoid the issue by adding this property to the UWP proj: 或者,如果在5.3+中需要修复,您还可以通过将此属性添加到UWP proj中来避免该问题:

<UseDotNetNativeSharedAssemblyFrameworkPackage>false</UseDotNetNativeSharedAssemblyFrameworkPackage>

EDIT: the fix for this issue is now live and available as version 5.3.3 of Microsoft.NETCore.UniversalWindowsPlatform 编辑:此问题的修复程序现已发布,并且可以作为Microsoft.NETCore.UniversalWindowsPlatform的5.3.3版本获得。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM