Search code examples
uwppackagewindows-10installationappxmanifest

Why package name is using project name?


I have a uwp project, the project name is FirstMobile, in Package.appxmanifest, I click Packaging and put package name as WinTest, then I click Store--> Add to generate intall appx file, but why the generated appx is name as FirstMobileXXXXX, why it is not WinTest? After I install it, the install location is WinTestXXXXX.


Solution

  • You could view your manifest file in code:

    enter image description here

    What you have changed is the Package Display Name in VisualElements, which is how your app name is displayed on user's device. See the Attributes in Visual Elements:

    A friendly name for the app that can be displayed to users. This string is localizable;

    While the DisplayName in Properties is the name of your app that you reserve in the Store, for apps which are uploaded to the Store.