-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.appxmanifest
30 lines (30 loc) · 1.36 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/2010/manifest">
<Identity Name="9f73fe12-b921-4b47-b540-8ee32aa2baca" Version="1.0.0.0" Publisher="CN=NobleJS" />
<Properties>
<!-- TODO sync these up with package.json? -->
<DisplayName>WinningJS Todo</DisplayName>
<Description>Demo todo list application for Windows 8, built on the WinningJS framework</Description>
<PublisherDisplayName>NobleJS</PublisherDisplayName>
<Logo>images\store-logo.png</Logo>
</Properties>
<Prerequisites>
<OSMinVersion>6.2</OSMinVersion>
<OSMaxVersionTested>6.2</OSMaxVersionTested>
</Prerequisites>
<Resources>
<Resource Language="x-generate" />
</Resources>
<Applications>
<Application Id="App" StartPage="out\index.html">
<!-- TODO seriously there's a lot of duplication going on here. Hide this XML shit. -->
<VisualElements DisplayName="WinningJS Todo" Logo="images\logo.png" SmallLogo="images\small-logo.png" Description="Demo todo list application for Windows 8, built on the WinningJS framework." ForegroundText="light" BackgroundColor="#000000">
<DefaultTile ShowName="allLogos" />
<SplashScreen Image="images\splash-screen.png" />
</VisualElements>
</Application>
</Applications>
<Capabilities>
<Capability Name="internetClient" />
</Capabilities>
</Package>