-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPackage.appxmanifest
30 lines (30 loc) · 2 KB
/
Package.appxmanifest
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<?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" xmlns:rescap="http://schemas.microsoft.com/appx/manifest/foundation/windows10/restrictedcapabilities" IgnorableNamespaces="uap mp rescap">
<mp:PhoneIdentity PhoneProductId="871c13cc-5f83-41de-8003-e9afbb6a6533" PhonePublisherId="00000000-0000-0000-0000-000000000000" />
<Identity Name="871c13cc-5f83-41de-8003-e9afbb6a6533" Publisher="CN=jthecodebuilder" Version="1.0.0.0" />
<Properties>
<DisplayName>DolphinSampleUWP</DisplayName>
<PublisherDisplayName>jthecodebuilder, Joshua-Ashton & contrib. Originally by Xbox ATG</PublisherDisplayName>
<Logo>Assets\StoreLogo.png</Logo>
<Description>FrontPanelDolphin</Description>
</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="Game" Executable="$targetnametoken$.exe" EntryPoint="DolphinSampleUWP.App">
<uap:VisualElements DisplayName="DolphinSampleUWP" Square150x150Logo="Assets\Logo.png" Square44x44Logo="Assets\SmallLogo.png" Description="Classic Xbox XDK sample where there's dolphins (four of them) frenzily swimming around. (Unofficial) Port to UWP by jthecodebuilder, based on the Win32(Desktop) port by Joshua-Ashton, and in turn based on the public Xbox-ATG-Samples version. Originally coded by Xbox ATG/Microsoft." BackgroundColor="#000000">
<uap:DefaultTile Wide310x150Logo="Assets\WideLogo.png">
</uap:DefaultTile>
<uap:SplashScreen Image="Assets\SplashScreen.png" />
</uap:VisualElements>
</Application>
</Applications>
<Capabilities>
<!-- Ensures max performance. -->
<rescap:Capability Name="expandedResources" />
</Capabilities>
</Package>