-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPackage.appxmanifest
More file actions
48 lines (41 loc) · 1.49 KB
/
Package.appxmanifest
File metadata and controls
48 lines (41 loc) · 1.49 KB
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
45
46
47
<?xml version="1.0" encoding="utf-8"?>
<Package
xmlns="http://schemas.microsoft.com/appx/manifest/foundation/windows10"
xmlns:uap="http://schemas.microsoft.com/appx/manifest/uap/windows10"
xmlns:rescap="http://schemas.microsoft.com/appx/manifest/foundation/windows10/restrictedcapabilities"
IgnorableNamespaces="uap rescap">
<Identity
Name="PrettyScreenSHOT"
Publisher="CN=YourName"
Version="1.0.0.0" />
<Properties>
<DisplayName>PrettyScreenSHOT</DisplayName>
<PublisherDisplayName>Your Name</PublisherDisplayName>
<Logo>Assets\Icons\app.ico</Logo>
</Properties>
<Dependencies>
<TargetDeviceFamily Name="Windows.Desktop" MinVersion="10.0.17763.0" MaxVersionTested="10.0.19045.0" />
</Dependencies>
<Resources>
<Resource Language="x-generate" />
</Resources>
<Applications>
<Application Id="App"
Executable="PrettyScreenSHOT.exe"
EntryPoint="Windows.FullTrustApplication">
<uap:VisualElements
DisplayName="PrettyScreenSHOT"
Description="Advanced screenshot capture and editing tool"
Square150x150Logo="Assets\Icons\app.ico"
Square44x44Logo="Assets\Icons\app.ico"
BackgroundColor="transparent">
<uap:DefaultTile Wide310x150Logo="Assets\Icons\app.ico" />
</uap:VisualElements>
</Application>
</Applications>
<Capabilities>
<rescap:Capability Name="runFullTrust" />
<Capability Name="internetClient" />
<Capability Name="picturesLibrary" />
</Capabilities>
</Package>