52 lines
1.9 KiB
XML
52 lines
1.9 KiB
XML
<?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"
|
|
xmlns:mp="http://schemas.microsoft.com/appx/2014/phone/manifest"
|
|
xmlns:rescap="http://schemas.microsoft.com/appx/manifest/foundation/windows10/restrictedcapabilities"
|
|
IgnorableNamespaces="uap rescap">
|
|
|
|
<Identity Name="maui-package-name-placeholder" Publisher="CN=User Name" Version="0.0.1.0" />
|
|
|
|
<mp:PhoneIdentity PhoneProductId="10836226-17FE-45AD-8C96-8DB8D4D78222" PhonePublisherId="00000000-0000-0000-0000-000000000000"/>
|
|
|
|
<Properties>
|
|
<DisplayName>$placeholder$</DisplayName>
|
|
<PublisherDisplayName>User Name</PublisherDisplayName>
|
|
<Logo>Assets\splashSplashScreen.png</Logo>
|
|
</Properties>
|
|
|
|
<Dependencies>
|
|
<TargetDeviceFamily Name="Windows.Universal" MinVersion="10.0.17763.0" MaxVersionTested="10.0.19041.0" />
|
|
<TargetDeviceFamily Name="Windows.Desktop" MinVersion="10.0.17763.0" MaxVersionTested="10.0.19041.0" />
|
|
</Dependencies>
|
|
|
|
<Resources>
|
|
<Resource Language="x-generate" />
|
|
</Resources>
|
|
|
|
<Applications>
|
|
<Application Id="App" Executable="$targetnametoken$.exe" EntryPoint="$targetentrypoint$">
|
|
<uap:VisualElements
|
|
DisplayName="$placeholder$"
|
|
Description="$placeholder$"
|
|
Square150x150Logo="Assets\splashSplashScreen.png"
|
|
Square44x44Logo="Assets\splashSplashScreen.png"
|
|
BackgroundColor="transparent">
|
|
<uap:DefaultTile Square71x71Logo="Assets\splashSplashScreen.png" Wide310x150Logo="Assets\splashSplashScreen.png" Square310x310Logo="Assets\splashSplashScreen.png" />
|
|
<uap:SplashScreen Image="Assets\splashSplashScreen.png" />
|
|
</uap:VisualElements>
|
|
</Application>
|
|
</Applications>
|
|
|
|
<Capabilities>
|
|
<rescap:Capability Name="runFullTrust" />
|
|
</Capabilities>
|
|
|
|
</Package>
|
|
|
|
|
|
|
|
|
|
|