Package.appxmanifest 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Package
  3. xmlns="http://schemas.microsoft.com/appx/manifest/foundation/windows10"
  4. xmlns:uap="http://schemas.microsoft.com/appx/manifest/uap/windows10"
  5. xmlns:rescap="http://schemas.microsoft.com/appx/manifest/foundation/windows10/restrictedcapabilities"
  6. IgnorableNamespaces="uap rescap">
  7. <Identity
  8. Name="23873017-ecdc-4795-8ec4-b150a560fdfc"
  9. Publisher="CN=liuyuqi"
  10. Version="1.0.0.0" />
  11. <Properties>
  12. <DisplayName>PackagingProj</DisplayName>
  13. <PublisherDisplayName>liuyuqi</PublisherDisplayName>
  14. <Logo>Images\StoreLogo.png</Logo>
  15. </Properties>
  16. <Dependencies>
  17. <TargetDeviceFamily Name="Windows.Universal" MinVersion="10.0.0.0" MaxVersionTested="10.0.0.0" />
  18. <TargetDeviceFamily Name="Windows.Desktop" MinVersion="10.0.14393.0" MaxVersionTested="10.0.14393.0" />
  19. </Dependencies>
  20. <Resources>
  21. <Resource Language="x-generate"/>
  22. </Resources>
  23. <Applications>
  24. <Application Id="App"
  25. Executable="$targetnametoken$.exe"
  26. EntryPoint="$targetentrypoint$">
  27. <uap:VisualElements
  28. DisplayName="PackagingProj"
  29. Description="PackagingProj"
  30. BackgroundColor="transparent"
  31. Square150x150Logo="Images\Square150x150Logo.png"
  32. Square44x44Logo="Images\Square44x44Logo.png">
  33. <uap:DefaultTile Wide310x150Logo="Images\Wide310x150Logo.png" />
  34. <uap:SplashScreen Image="Images\SplashScreen.png" />
  35. </uap:VisualElements>
  36. </Application>
  37. </Applications>
  38. <Capabilities>
  39. <Capability Name="internetClient" />
  40. <rescap:Capability Name="runFullTrust" />
  41. </Capabilities>
  42. </Package>