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.

43 lines
1.6 KiB

1 year ago
  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 Name="maui-package-name-placeholder" Publisher="CN=User Name" Version="0.0.0.0" />
  8. <Properties>
  9. <DisplayName>$placeholder$</DisplayName>
  10. <PublisherDisplayName>User Name</PublisherDisplayName>
  11. <Logo>$placeholder$.png</Logo>
  12. </Properties>
  13. <Dependencies>
  14. <TargetDeviceFamily Name="Windows.Universal" MinVersion="10.0.17763.0" MaxVersionTested="10.0.19041.0" />
  15. <TargetDeviceFamily Name="Windows.Desktop" MinVersion="10.0.17763.0" MaxVersionTested="10.0.19041.0" />
  16. </Dependencies>
  17. <Resources>
  18. <Resource Language="x-generate" />
  19. </Resources>
  20. <Applications>
  21. <Application Id="App" Executable="$targetnametoken$.exe" EntryPoint="$targetentrypoint$">
  22. <uap:VisualElements
  23. DisplayName="$placeholder$"
  24. Description="$placeholder$"
  25. Square150x150Logo="$placeholder$.png"
  26. Square44x44Logo="$placeholder$.png"
  27. BackgroundColor="transparent">
  28. <uap:DefaultTile Square71x71Logo="$placeholder$.png" Wide310x150Logo="$placeholder$.png" Square310x310Logo="$placeholder$.png" />
  29. <uap:SplashScreen Image="$placeholder$.png" />
  30. </uap:VisualElements>
  31. </Application>
  32. </Applications>
  33. <Capabilities>
  34. <rescap:Capability Name="runFullTrust" />
  35. </Capabilities>
  36. </Package>