Support for building appx container images for Windows Subsystem Linux (WSL). This Fixes #1235
39 lines
2.4 KiB
XML
39 lines
2.4 KiB
XML
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
|
<Package IgnorableNamespaces="uap uap2 uap3 rescap desktop" xmlns="http://schemas.microsoft.com/appx/manifest/foundation/windows10" xmlns:uap="http://schemas.microsoft.com/appx/manifest/uap/windows10" xmlns:uap2="http://schemas.microsoft.com/appx/manifest/uap/windows10/2" xmlns:uap3="http://schemas.microsoft.com/appx/manifest/uap/windows10/3" xmlns:desktop="http://schemas.microsoft.com/appx/manifest/desktop/windows10" xmlns:rescap="http://schemas.microsoft.com/appx/manifest/foundation/windows10/restrictedcapabilities" xmlns:mp="http://schemas.microsoft.com/appx/2014/phone/manifest">
|
|
<Identity Name="46932SUSE.@APPID@" Version="@VERSION@" Publisher="@PUBLISHER@" ProcessorArchitecture="@ARCH@" />
|
|
<Properties>
|
|
<DisplayName>@PRETTY_NAME@</DisplayName>
|
|
<PublisherDisplayName>@PUBLISHER_DISPLAY_NAME@</PublisherDisplayName>
|
|
<Logo>Assets\StoreLogo.png</Logo>
|
|
</Properties>
|
|
<Resources>
|
|
<Resource Language="en-us" />
|
|
</Resources>
|
|
<Dependencies>
|
|
<TargetDeviceFamily Name="Windows.Desktop" MinVersion="10.0.16215.0" MaxVersionTested="10.0.16288.1" />
|
|
</Dependencies>
|
|
<Capabilities>
|
|
<rescap:Capability Name="runFullTrust" />
|
|
</Capabilities>
|
|
<Applications>
|
|
<Application Id="@APPID@" Executable="@LAUNCHERNAME@" EntryPoint="Windows.FullTrustApplication">
|
|
<uap:VisualElements DisplayName="@PRETTY_NAME@" Description="@PRETTY_NAME@" BackgroundColor="#73ba25" Square150x150Logo="Assets\Square150x150Logo.png" Square44x44Logo="Assets\Square44x44Logo.png">
|
|
<uap:DefaultTile Wide310x150Logo="Assets\Wide310x150Logo.png" Square310x310Logo="Assets\LargeTile.png" Square71x71Logo="Assets\SmallTile.png" ShortName="@PRETTY_NAME@">
|
|
<uap:ShowNameOnTiles>
|
|
<uap:ShowOn Tile="wide310x150Logo" />
|
|
<uap:ShowOn Tile="square310x310Logo" />
|
|
</uap:ShowNameOnTiles>
|
|
</uap:DefaultTile>
|
|
</uap:VisualElements>
|
|
<Extensions>
|
|
<uap3:Extension Category="windows.appExecutionAlias" Executable="@LAUNCHERNAME@" EntryPoint="Windows.FullTrustApplication">
|
|
<uap3:AppExecutionAlias>
|
|
<desktop:ExecutionAlias Alias="@LAUNCHERNAME@" />
|
|
</uap3:AppExecutionAlias>
|
|
</uap3:Extension>
|
|
</Extensions>
|
|
</Application>
|
|
</Applications>
|
|
<mp:PhoneIdentity PhoneProductId="0e1c4fe6-69f2-4cd9-9dce-8a964fe193c3" PhonePublisherId="81795974-7f01-4069-8b81-c6350b96d357" />
|
|
</Package>
|