Forum Discussion
SBMSSOL
Jun 22, 2020Copper Contributor
Package Error with MSIX File. Created my own app. Trying to install it to MS Store. Only 1 error.
Hello, Can anyone help me fix this problem? MyPackageQuad_1.0.0.0_x64__wkffetrt8aq28.msix8.3 KB Package acceptance validation error: The package MyPackageQuad_1.0.0.0_x64__wkffetrt8a...
Jun 22, 2020
The error seems to indicate an issue with the AppXManifest.xml file that you must include at the root folder. The file has "application" elements and the error seems to say that it didn't find any. These elements define entrypoints, such as the shortcuts (called visual elements in the schema). So it sounds like a syntax error.
Reference is: https://docs.microsoft.com/en-us/uwp/schemas/appxpackage/appx-package-manifest
Example is: https://docs.microsoft.com/en-us/uwp/schemas/appxpackage/how-to-create-a-basic-package-manifest
SBMSSOL
Jun 22, 2020Copper Contributor
Timothy,
I was wondering if I should name the file Package.appxmanifest, instead of appxmanifest?
- Jun 22, 2020
It must be AppxManifest.xml in the package. Possibly case doesn’t matter, but I’ve always seen it that way.
However, I can't speak to whatever tooling you could be using that expects you to provide a different name and changes it into the form the package requires.