UNPKG

1.67 kBXMLView Raw
1<?xml version="1.0" encoding="utf-8"?>
2<!--suppress XmlUnusedNamespaceDeclaration -->
3<Package
4 xmlns="http://schemas.microsoft.com/appx/manifest/foundation/windows10"
5 xmlns:uap="http://schemas.microsoft.com/appx/manifest/uap/windows10"
6 xmlns:desktop="http://schemas.microsoft.com/appx/manifest/desktop/windows10"
7 xmlns:rescap="http://schemas.microsoft.com/appx/manifest/foundation/windows10/restrictedcapabilities">
8 <!-- use single quotes to avoid double quotes escaping in the publisher value -->
9 <Identity Name="${identityName}"
10 ProcessorArchitecture="${arch}"
11 Publisher='${publisher}'
12 Version="${version}" />
13 <Properties>
14 <DisplayName>${displayName}</DisplayName>
15 <PublisherDisplayName>${publisherDisplayName}</PublisherDisplayName>
16 <Description>${description}</Description>
17 <Logo>${logo}</Logo>
18 </Properties>
19 <Resources>
20 ${resourceLanguages}
21 </Resources>
22 <Dependencies>
23 <TargetDeviceFamily Name="Windows.Desktop" MinVersion="10.0.14316.0" MaxVersionTested="10.0.14316.0" />
24 </Dependencies>
25 <Capabilities>
26 <rescap:Capability Name="runFullTrust"/>
27 </Capabilities>
28 <Applications>
29 <Application Id="${applicationId}" Executable="${executable}" EntryPoint="Windows.FullTrustApplication">
30 <uap:VisualElements
31 BackgroundColor="${backgroundColor}"
32 DisplayName="${displayName}"
33 Square150x150Logo="${square150x150Logo}"
34 Square44x44Logo="${square44x44Logo}"
35 Description="${description}">
36 ${lockScreen}
37 ${defaultTile}
38 ${splashScreen}
39 </uap:VisualElements>
40 ${extensions}
41 </Application>
42 </Applications>
43</Package>