-
Notifications
You must be signed in to change notification settings - Fork 154
/
Copy pathPackage.appxmanifest
44 lines (44 loc) · 2.02 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<?xml version="1.0" encoding="utf-8"?>
<Package xmlns="http://schemas.microsoft.com/appx/2010/manifest" xmlns:m2="http://schemas.microsoft.com/appx/2013/manifest">
<Identity Name="36805codefoster.CodeShowC" Publisher="CN=603A18C8-7F37-48CF-B16C-FED79B9AEA66" Version="2.0.0.6" />
<Properties>
<DisplayName>CodeShow C#</DisplayName>
<PublisherDisplayName>codefoster</PublisherDisplayName>
<Logo>Assets\square50.png</Logo>
</Properties>
<Prerequisites>
<OSMinVersion>6.3.0</OSMinVersion>
<OSMaxVersionTested>6.3.0</OSMaxVersionTested>
</Prerequisites>
<Resources>
<Resource Language="x-generate" />
</Resources>
<Applications>
<Application Id="App" Executable="$targetnametoken$.exe" EntryPoint="CodeShow.CS.Windows.App">
<m2:VisualElements DisplayName="CodeShow C#" Square150x150Logo="Assets\Square150.png" Square30x30Logo="Assets\square30.png" Description="CodeShow C#" ForegroundText="light" BackgroundColor="#5e83a2" ToastCapable="true">
<m2:LockScreen Notification="badgeAndTileText" BadgeLogo="Assets\Badge.png" />
<m2:DefaultTile Wide310x150Logo="Assets/wide.png" Square310x310Logo="Assets/square310.png" Square70x70Logo="Assets\square70.png">
<m2:ShowNameOnTiles>
<m2:ShowOn Tile="square150x150Logo" />
<m2:ShowOn Tile="wide310x150Logo" />
<m2:ShowOn Tile="square310x310Logo" />
</m2:ShowNameOnTiles>
</m2:DefaultTile>
<m2:SplashScreen Image="Assets\SplashScreen.png" BackgroundColor="white" />
</m2:VisualElements>
<Extensions>
<Extension Category="windows.search" />
<Extension Category="windows.backgroundTasks" EntryPoint="BackgroundTaskDemo.TaskDemo">
<BackgroundTasks>
<Task Type="systemEvent" />
<Task Type="timer" />
</BackgroundTasks>
</Extension>
</Extensions>
</Application>
</Applications>
<Capabilities>
<Capability Name="internetClient" />
<DeviceCapability Name="location" />
</Capabilities>
</Package>