I need to set the name of the app that will appear in the Microsoft Store. Which element or attribute should I define in package.appxmanifest?
<?xml version="1.0" encoding="utf-8"?>
<Package xmlns="http://schemas.microsoft.com/appx/2010/manifest">
<Identity Name=""
Version=""
Publisher="" />
<Properties>
<DisplayName>The Name of the app in the Store</DisplayName>
<PublisherDisplayName></PublisherDisplayName>
<Logo></Logo>
</Properties>
<Applications>
<Application Id="" StartPage="">
<VisualElements DisplayName="The Name of the app in the Store" Description=""
Logo="" SmallLogo=""
ForegroundText="" BackgroundColor="">
<SplashScreen Image="" />
</VisualElements>
</Application>
</Applications>
</Package>
Is it Properties -> DisplayName element or Applications -> Application -> VisualElements -> DisplayName attribute ?
Because on msdn in the description of the package.appxmanifest is wrote, that the first one and the second one are like the friendly names for users.