UNIXworkcode

1 <?xml version="1.0" encoding="utf-8"?> 2 3 <Package 4 xmlns="http://schemas.microsoft.com/appx/manifest/foundation/windows10" 5 xmlns:mp="http://schemas.microsoft.com/appx/2014/phone/manifest" 6 xmlns:uap="http://schemas.microsoft.com/appx/manifest/uap/windows10" 7 xmlns:rescap="http://schemas.microsoft.com/appx/manifest/foundation/windows10/restrictedcapabilities" 8 IgnorableNamespaces="uap rescap"> 9 10 <Identity 11 Name="e3554f39-079b-4a0b-aa08-4ce5c4306644" 12 Publisher="CN=Olaf" 13 Version="1.0.0.0" /> 14 15 <mp:PhoneIdentity PhoneProductId="e3554f39-079b-4a0b-aa08-4ce5c4306644" PhonePublisherId="00000000-0000-0000-0000-000000000000"/> 16 17 <Properties> 18 <DisplayName>winui</DisplayName> 19 <PublisherDisplayName>Olaf</PublisherDisplayName> 20 <Logo>Assets\StoreLogo.png</Logo> 21 </Properties> 22 23 <Dependencies> 24 <TargetDeviceFamily Name="Windows.Universal" MinVersion="10.0.17763.0" MaxVersionTested="10.0.19041.0" /> 25 <TargetDeviceFamily Name="Windows.Desktop" MinVersion="10.0.17763.0" MaxVersionTested="10.0.19041.0" /> 26 </Dependencies> 27 28 <Resources> 29 <Resource Language="x-generate"/> 30 </Resources> 31 32 <Applications> 33 <Application Id="App" 34 Executable="$targetnametoken$.exe" 35 EntryPoint="$targetentrypoint$"> 36 <uap:VisualElements 37 DisplayName="winui" 38 Description="winui" 39 BackgroundColor="transparent" 40 Square150x150Logo="Assets\Square150x150Logo.png" 41 Square44x44Logo="Assets\Square44x44Logo.png"> 42 <uap:DefaultTile Wide310x150Logo="Assets\Wide310x150Logo.png" /> 43 <uap:SplashScreen Image="Assets\SplashScreen.png" /> 44 </uap:VisualElements> 45 </Application> 46 </Applications> 47 48 <Capabilities> 49 <rescap:Capability Name="runFullTrust" /> 50 </Capabilities> 51 </Package> 52