-
Notifications
You must be signed in to change notification settings - Fork 2
/
AppxManifest.zed.xml
41 lines (41 loc) · 1.76 KB
/
AppxManifest.zed.xml
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
<?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="Zed" Version="__VERSION__" Publisher="CN=ZedIndustries" />
<Properties>
<DisplayName>Zed</DisplayName>
<PublisherDisplayName>Zed Industries</PublisherDisplayName>
<Logo>assets\StoreLogo.png</Logo>
<Framework>false</Framework>
</Properties>
<Resources>
<Resource Language="en-us" />
</Resources>
<Dependencies>
<TargetDeviceFamily Name="Windows.Desktop" MinVersion="10.0.14393.0" MaxVersionTested="10.0.19041.0" />
</Dependencies>
<Capabilities>
<rescap:Capability Name="runFullTrust" />
</Capabilities>
<Applications>
<Application Id="Zed" Executable="Zed-windows-amd64-__LATEST_TAG__.exe" EntryPoint="Windows.FullTrustApplication">
<uap:VisualElements
DisplayName="Zed"
Description="Zed Editor"
BackgroundColor="transparent"
Square150x150Logo="assets\Square150x150Logo.png"
Square44x44Logo="assets\Square44x44Logo.png">
<uap:DefaultTile Wide310x150Logo="assets\LargeTile.png" Square71x71Logo="assets\SmallTile.png" Square310x310Logo="assets\LargeTile.png">
<uap:ShowNameOnTiles>
<uap:ShowOn Tile="square44x44Logo" />
<uap:ShowOn Tile="square150x150Logo" />
<uap:ShowOn Tile="wide310x150Logo" />
<uap:ShowOn Tile="square310x310Logo" />
</uap:ShowNameOnTiles>
</uap:DefaultTile>
</uap:VisualElements>
</Application>
</Applications>
</Package>