Package.appxmanifest 1.6 KB

12345678910111213141516171819202122232425262728
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Package xmlns="http://schemas.microsoft.com/appx/manifest/foundation/windows10" xmlns:mp="http://schemas.microsoft.com/appx/2014/phone/manifest" xmlns:uap="http://schemas.microsoft.com/appx/manifest/uap/windows10" IgnorableNamespaces="uap mp">
  3. <Identity Name="67d7840d-5e23-4312-8484-b33ffe3d5f36" Publisher="CN=SDLPal Team" Version="2.0.0.0" />
  4. <mp:PhoneIdentity PhoneProductId="67d7840d-5e23-4312-8484-b33ffe3d5f36" PhonePublisherId="00000000-0000-0000-0000-000000000000" />
  5. <Properties>
  6. <DisplayName>SDL PAL</DisplayName>
  7. <PublisherDisplayName>ms-resource:Publisher</PublisherDisplayName>
  8. <Logo>Assets\StoreLogo.png</Logo>
  9. </Properties>
  10. <Dependencies>
  11. <TargetDeviceFamily Name="Windows.Universal" MinVersion="10.0.0.0" MaxVersionTested="10.0.0.0" />
  12. </Dependencies>
  13. <Resources>
  14. <Resource Language="x-generate" />
  15. </Resources>
  16. <Applications>
  17. <Application Id="App" Executable="$targetnametoken$.exe" EntryPoint="SDLPal.App">
  18. <uap:VisualElements DisplayName="SDLPal" Square150x150Logo="Assets\Logo.png" Square44x44Logo="Assets\SmallLogo.png" Description="ms-resource:AppDescription" BackgroundColor="transparent">
  19. <uap:DefaultTile Wide310x150Logo="Assets\WideLogo.png" Square71x71Logo="Assets\Square71x71Logo.png" Square310x310Logo="Assets\Square310x310Logo.png">
  20. <uap:ShowNameOnTiles>
  21. <uap:ShowOn Tile="square310x310Logo" />
  22. </uap:ShowNameOnTiles>
  23. </uap:DefaultTile>
  24. <uap:SplashScreen Image="Assets\SplashScreen.png" BackgroundColor="black" />
  25. </uap:VisualElements>
  26. </Application>
  27. </Applications>
  28. </Package>