AppxManifest.xml 1.9 KB

1234567891011121314151617181920212223242526272829303132
  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 build" xmlns:build="http://schemas.microsoft.com/developer/appx/2015/build">
  3. <Identity Name="$identity_name$" Publisher="$publisher$" Version="$version_string$" ProcessorArchitecture="$architecture$" />
  4. <mp:PhoneIdentity PhoneProductId="$product_guid$" PhonePublisherId="$publisher_guid$" />
  5. <Properties>
  6. <DisplayName>$display_name$</DisplayName>
  7. <PublisherDisplayName>$publisher_display_name$</PublisherDisplayName>
  8. <Logo>Assets\StoreLogo.png</Logo>
  9. </Properties>
  10. <Dependencies>
  11. <TargetDeviceFamily Name="Windows.Universal" MinVersion="10.0.10240.0" MaxVersionTested="10.0.14393.0" />
  12. <PackageDependency Name="Microsoft.VCLibs.140.00" MinVersion="14.0.24123.0" Publisher="CN=Microsoft Corporation, O=Microsoft Corporation, L=Redmond, S=Washington, C=US" />
  13. </Dependencies>
  14. <Resources>
  15. <Resource Language="EN-US" />
  16. </Resources>
  17. <Applications>
  18. <Application Id="App" Executable="godot.uwp.exe" EntryPoint="GodotUWP.App">
  19. <uap:VisualElements DisplayName="$display_name$" Square150x150Logo="Assets\Square150x150Logo.png" Square44x44Logo="Assets\Square44x44Logo.png" Description="$app_description$" BackgroundColor="$bg_color$">
  20. <uap:DefaultTile Wide310x150Logo="Assets\Wide310x150Logo.png" Square310x310Logo="Assets\Square310x310Logo.png" Square71x71Logo="Assets\Square71x71Logo.png" ShortName="$short_name$">
  21. $name_on_tiles$
  22. </uap:DefaultTile>
  23. <uap:SplashScreen Image="Assets\SplashScreen.png" />
  24. $rotation_preference$
  25. </uap:VisualElements>
  26. </Application>
  27. </Applications>
  28. $capabilities_place$
  29. <build:Metadata>
  30. <build:Item Name="GodotEngine" Version="$godot_version$" />
  31. </build:Metadata>
  32. </Package>