I use the latest makeappx
to create an APPX
container for the Microsoft Store. I added all necessary files but I am wondering why makeappx complains about this:
MakeAppx : error: Manifest validation error: Line 37, Column 134,
Reason: The file name "assets\StoreLogo.png" declared for element "*
[local-name()='Applications']/*[local-name()='Application']/*[local-
name()='VisualElements']/*[local-name()='DefaultTile']" doesn't exist
in the package.
Indeed, there is no such file but that's what Visual Studio gave me. Instead I got files like StoreLogo.scale-100.png
, App_Logo.scale-400.png
, etc.
Does anyone know why the generation fails?
P.S. I opened the container of an installed store app to check how they do it. There it's exactly the same (let's call them Spoti). They don't have the StoreLogo.png file in the assets but a StoreLogo.scale-100.png
, etc.
Any ideas?