I am working on a Windows Universal application.
In the editor for Package.appxmanifest
, on the Packaging
tab, there is a Package name
field. In the XML editor, this field is stored in the /Package/Identity@Name
attribute.
Initially, this is filled in, by Visual Studio, with an auto-generated GUID. What are the best practices for this field? What is the exact usage / meaning for this field?
Should I leave it alone? Or, should I change it to a "friendly" name? If I change it to a friendly name, are there any conventions I should honor (e.g. the com.companyname.applicationname
convention used elsewhere)?
I'll happily accept links to any authoritative guidance from MS on this topic :)
What I have tried:
I searched for information on this topic, and found many links, but the advice was contradictory.
Some recommended changing it to a "friendly" name, with little advice about appropriate values.
Others recommend leaving it alone.
I wasn't able to find any authoritative source to break the tie.