Reputation: 41
I have developed a UWP application using Visual Studio 2019 and Microsoft.NET.Native.Framework.2.2 and Microsoft.NET.Native.Runtime.2.2. After creating the app packages for Windows Store, the folder contains the below files:
The app has also undergone Windows App Certification Kit Test and has passed all the test cases. When I try submitting the app packages(either the .msixbundle file or the way mentioned here, I get the following error:
Package acceptance validation error: You cannot submit pre-compiled .NET Native packages. Please upload the Microsoft Store appxupload file and try again.
I also tried the way explained here and here but failed utterly.
Any help will be appreciated. Thank you.
Upvotes: 0
Views: 1565
Reputation: 7727
If you plan to create a package submitted to the Microsoft Store, you need to do the following steps:
Publish
-> Associate App with the Store...
)
.appxupload
(or .msixupload
) file will be generated and you can upload it
Best regards.
Upvotes: 0
Reputation: 11104
You need to create application package that contain .appxupload
file
you can find more information from :https://learn.microsoft.com/en-us/windows/msix/package/packaging-uwp-apps
Upvotes: 1