Package_vc12.wp.appxmanifest.in 1.4 KB

123456789101112131415161718192021222324252627282930313233343536
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Package xmlns="http://schemas.microsoft.com/appx/2010/manifest" xmlns:m2="http://schemas.microsoft.com/appx/2013/manifest" xmlns:mp="http://schemas.microsoft.com/appx/2014/phone/manifest">
  3. <Identity Name="@PACKAGE_GUID@" Publisher="CN=mgong" Version="1.1.0.0" />
  4. <mp:PhoneIdentity PhoneProductId="@PACKAGE_GUID@" PhonePublisherId="00000000-0000-0000-0000-000000000000"/>
  5. <Properties>
  6. <DisplayName>@SHORT_NAME@</DisplayName>
  7. <PublisherDisplayName>mgong</PublisherDisplayName>
  8. <Logo>Assets/StoreLogo.png</Logo>
  9. </Properties>
  10. <Prerequisites>
  11. <OSMinVersion>6.3.1</OSMinVersion>
  12. <OSMaxVersionTested>6.3.1</OSMaxVersionTested>
  13. </Prerequisites>
  14. <Resources>
  15. <Resource Language="x-generate" />
  16. </Resources>
  17. <Applications>
  18. <Application Id="App" Executable="$targetnametoken$.exe" EntryPoint="@SHORT_NAME@.App">
  19. <m2:VisualElements
  20. DisplayName="@SHORT_NAME@"
  21. Description="@SHORT_NAME@"
  22. BackgroundColor="#336699"
  23. ForegroundText="light"
  24. Square150x150Logo="Assets/Logo.png"
  25. Square30x30Logo="Assets/SmallLogo.png">
  26. <m2:DefaultTile ShortName="@SHORT_NAME@">
  27. <m2:ShowNameOnTiles>
  28. <m2:ShowOn Tile="square150x150Logo" />
  29. </m2:ShowNameOnTiles>
  30. </m2:DefaultTile>
  31. <m2:SplashScreen Image="Assets/SplashScreen.png" />
  32. </m2:VisualElements>
  33. </Application>
  34. </Applications>
  35. </Package>