| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- <?xml version="1.0" encoding="utf-8"?>
- <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">
- <Identity
- Name="8738f748-7cfa-4887-b76d-d16ce5273e0e"
- Publisher="CN=gamed"
- Version="1.0.0.0" />
- <mp:PhoneIdentity PhoneProductId="8738f748-7cfa-4887-b76d-d16ce5273e0e" PhonePublisherId="00000000-0000-0000-0000-000000000000"/>
- <Properties>
- <DisplayName>XMLContentLoadingSample.WindowsUWP</DisplayName>
- <PublisherDisplayName>gamed</PublisherDisplayName>
- <Logo>Assets\StoreLogo.png</Logo>
- </Properties>
- <Dependencies>
- <TargetDeviceFamily Name="Windows.Universal" MinVersion="10.0.0.0" MaxVersionTested="10.0.0.0" />
- </Dependencies>
- <Resources>
- <Resource Language="x-generate"/>
- </Resources>
- <Applications>
- <Application Id="App"
- Executable="$targetnametoken$.exe"
- EntryPoint="XMLContentLoadingSample.WindowsUWP.App">
- <uap:VisualElements
- DisplayName="XMLContentLoadingSample.WindowsUWP"
- Square150x150Logo="Assets\Logo.png"
- Square44x44Logo="Assets\SmallLogo.png"
- Description="XMLContentLoadingSample.WindowsUWP"
- BackgroundColor="#464646">
- <uap:SplashScreen Image="Assets\SplashScreen.png" />
- </uap:VisualElements>
- </Application>
- </Applications>
- <Capabilities>
- <Capability Name="internetClient" />
- </Capabilities>
- </Package>
|