1<?xml version="1.0" encoding="utf-8"?>
 2<Package
 3  xmlns="http://schemas.microsoft.com/appx/manifest/foundation/windows10"
 4  xmlns:uap="http://schemas.microsoft.com/appx/manifest/uap/windows10"
 5  xmlns:uap2="http://schemas.microsoft.com/appx/manifest/uap/windows10/2"
 6  xmlns:uap3="http://schemas.microsoft.com/appx/manifest/uap/windows10/3"
 7  xmlns:rescap="http://schemas.microsoft.com/appx/manifest/foundation/windows10/restrictedcapabilities"
 8  xmlns:desktop="http://schemas.microsoft.com/appx/manifest/desktop/windows10"
 9  xmlns:desktop4="http://schemas.microsoft.com/appx/manifest/desktop/windows10/4"
10  xmlns:desktop5="http://schemas.microsoft.com/appx/manifest/desktop/windows10/5"
11  xmlns:desktop6="http://schemas.microsoft.com/appx/manifest/desktop/windows10/6"
12  xmlns:uap10="http://schemas.microsoft.com/appx/manifest/uap/windows10/10"
13  xmlns:com="http://schemas.microsoft.com/appx/manifest/com/windows10"
14  IgnorableNamespaces="uap uap2 uap3 rescap desktop desktop4 desktop5 desktop6 uap10 com">
15  <!-- TODO: Use Zed's signature here. -->
16  <Identity
17    Name="ZedIndustries.Zed"
18    Publisher="CN=Zed Industries Inc, O=Zed Industries Inc, L=Denver, S=Colorado, C=US"
19    Version="1.0.0.0" />
20  <Properties>
21    <DisplayName>Zed</DisplayName>
22
23    <PublisherDisplayName>Zed Industries</PublisherDisplayName>
24    <!-- TODO: Use actual icon here. -->
25    <Logo>resources\logo_150x150.png</Logo>
26    <uap10:AllowExternalContent>true</uap10:AllowExternalContent>
27    <desktop6:RegistryWriteVirtualization>disabled</desktop6:RegistryWriteVirtualization>
28    <desktop6:FileSystemWriteVirtualization>disabled</desktop6:FileSystemWriteVirtualization>
29  </Properties>
30  <Resources>
31    <Resource Language="en-us" />
32    <Resource Language="zh-cn" />
33  </Resources>
34  <Dependencies>
35    <TargetDeviceFamily Name="Windows.Desktop" MinVersion="10.0.19000.0" MaxVersionTested="10.0.22000.0" />
36  </Dependencies>
37  <Capabilities>
38    <rescap:Capability Name="runFullTrust" />
39    <rescap:Capability Name="unvirtualizedResources"/>
40  </Capabilities>
41  <Applications>
42    <Application Id="Zed"
43      Executable="Zed.exe"
44      uap10:TrustLevel="mediumIL"
45      uap10:RuntimeBehavior="win32App">
46    <!-- TODO: Use actual icon here. -->
47      <uap:VisualElements
48        AppListEntry="none"
49        DisplayName="Zed"
50        Description="Zed explorer command injector"
51        BackgroundColor="transparent"
52        Square150x150Logo="resources\logo_150x150.png"
53        Square44x44Logo="resources\logo_70x70.png">
54      </uap:VisualElements>
55      <Extensions>
56        <desktop4:Extension Category="windows.fileExplorerContextMenus">
57          <desktop4:FileExplorerContextMenus>
58            <desktop5:ItemType Type="Directory">
59              <desktop5:Verb Id="OpenWithZed" Clsid="6a1f6b13-3b82-48a1-9e06-7bb0a6d0bffd" />
60            </desktop5:ItemType>
61            <desktop5:ItemType Type="Directory\Background">
62              <desktop5:Verb Id="OpenWithZed" Clsid="6a1f6b13-3b82-48a1-9e06-7bb0a6d0bffd" />
63            </desktop5:ItemType>
64            <desktop5:ItemType Type="*">
65              <desktop5:Verb Id="OpenWithZed" Clsid="6a1f6b13-3b82-48a1-9e06-7bb0a6d0bffd" />
66            </desktop5:ItemType>
67          </desktop4:FileExplorerContextMenus>
68        </desktop4:Extension>
69        <com:Extension Category="windows.comServer">
70          <com:ComServer>
71            <com:SurrogateServer DisplayName="Zed">
72              <com:Class Id="6a1f6b13-3b82-48a1-9e06-7bb0a6d0bffd" Path="zed_explorer_command_injector.dll" ThreadingModel="STA"/>
73            </com:SurrogateServer>
74          </com:ComServer>
75        </com:Extension>
76      </Extensions>
77    </Application>
78  </Applications>
79</Package>