You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

46 lines
1.8 KiB

  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:mp="http://schemas.microsoft.com/appx/2014/phone/manifest"
  6. xmlns:rescap="http://schemas.microsoft.com/appx/manifest/foundation/windows10/restrictedcapabilities"
  7. IgnorableNamespaces="uap rescap">
  8. <Identity Name="maui-package-name-placeholder" Publisher="CN=User Name" Version="0.0.0.0" />
  9. <mp:PhoneIdentity PhoneProductId="06D61698-57C9-493B-B21D-DCD3A9B343DE" PhonePublisherId="00000000-0000-0000-0000-000000000000"/>
  10. <Properties>
  11. <DisplayName>$placeholder$</DisplayName>
  12. <PublisherDisplayName>User Name</PublisherDisplayName>
  13. <Logo>$placeholder$.png</Logo>
  14. </Properties>
  15. <Dependencies>
  16. <TargetDeviceFamily Name="Windows.Universal" MinVersion="10.0.17763.0" MaxVersionTested="10.0.19041.0" />
  17. <TargetDeviceFamily Name="Windows.Desktop" MinVersion="10.0.17763.0" MaxVersionTested="10.0.19041.0" />
  18. </Dependencies>
  19. <Resources>
  20. <Resource Language="x-generate" />
  21. </Resources>
  22. <Applications>
  23. <Application Id="App" Executable="$targetnametoken$.exe" EntryPoint="$targetentrypoint$">
  24. <uap:VisualElements
  25. DisplayName="$placeholder$"
  26. Description="$placeholder$"
  27. Square150x150Logo="$placeholder$.png"
  28. Square44x44Logo="$placeholder$.png"
  29. BackgroundColor="transparent">
  30. <uap:DefaultTile Square71x71Logo="$placeholder$.png" Wide310x150Logo="$placeholder$.png" Square310x310Logo="$placeholder$.png" />
  31. <uap:SplashScreen Image="$placeholder$.png" />
  32. </uap:VisualElements>
  33. </Application>
  34. </Applications>
  35. <Capabilities>
  36. <rescap:Capability Name="runFullTrust" />
  37. </Capabilities>
  38. </Package>