start of proper UWP support

This commit is contained in:
moonpower
2026-02-01 06:21:02 +01:00
parent f5e5be4b6d
commit 90c186fa4d
115 changed files with 55543 additions and 3 deletions

39
uwp/AppxManifest.in Normal file
View File

@@ -0,0 +1,39 @@
<?xml version="1.0" encoding="utf-8"?>
<Package
xmlns="http://schemas.microsoft.com/appx/manifest/foundation/windows10"
xmlns:uap="http://schemas.microsoft.com/appx/manifest/uap/windows10"
IgnorableNamespaces="uap">
<Identity Name="@MINGW_UWP_PACKAGE_NAME@" Publisher="@MINGW_UWP_PUBLISHER@" Version="1.0.0.0" ProcessorArchitecture="@APPX_ARCHITECTURE@" />
<Properties>
<DisplayName>@MINGW_UWP_DISPLAY_NAME@</DisplayName>
<PublisherDisplayName>@MINGW_UWP_DISPLAY_NAME@</PublisherDisplayName>
<Logo>Images\StoreLogo.png</Logo>
</Properties>
<Dependencies>
<TargetDeviceFamily Name="Windows.Universal" MinVersion="10.0.17763.0" MaxVersionTested="10.0.22621.0" />
</Dependencies>
<Resources>
<Resource Language="en-us" />
</Resources>
<Capabilities>
</Capabilities>
<Applications>
<Application Id="@MINGW_UWP_APP_ID@" Executable="@MINGW_UWP_EXECUTABLE@" EntryPoint="@MINGW_UWP_ENTRYPOINT@">
<uap:VisualElements
DisplayName="@MINGW_UWP_DISPLAY_NAME@"
Description="@MINGW_UWP_DISPLAY_NAME@"
BackgroundColor="transparent"
Square150x150Logo="Images\Square150x150Logo.png"
Square44x44Logo="Images\Square44x44Logo.png">
<uap:DefaultTile Wide310x150Logo="Images\Wide310x150Logo.png" />
<uap:SplashScreen Image="Images\SplashScreen.png" />
</uap:VisualElements>
</Application>
</Applications>
</Package>