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.Nightly"
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 Nightly</DisplayName>
22    <PublisherDisplayName>Zed Industries</PublisherDisplayName>
23    <!-- TODO: Use actual icon here. -->
24    <Logo>resources\logo_150x150.png</Logo>
25    <uap10:AllowExternalContent>true</uap10:AllowExternalContent>
26    <desktop6:RegistryWriteVirtualization>disabled</desktop6:RegistryWriteVirtualization>
27    <desktop6:FileSystemWriteVirtualization>disabled</desktop6:FileSystemWriteVirtualization>
28  </Properties>
29  <Resources>
30    <Resource Language="en-us" />
31    <Resource Language="zh-cn" />
32  </Resources>
33  <Dependencies>
34    <TargetDeviceFamily Name="Windows.Desktop" MinVersion="10.0.19000.0" MaxVersionTested="10.0.22000.0" />
35  </Dependencies>
36  <Capabilities>
37    <rescap:Capability Name="runFullTrust" />
38    <rescap:Capability Name="unvirtualizedResources"/>
39  </Capabilities>
40  <Applications>
41    <Application Id="ZedNightly"
42      Executable="Zed.exe"
43      uap10:TrustLevel="mediumIL"
44      uap10:RuntimeBehavior="win32App">
45    <!-- TODO: Use actual icon here. -->
46      <uap:VisualElements
47        AppListEntry="none"
48        DisplayName="Zed Nightly"
49        Description="Zed Nightly explorer command injector"
50        BackgroundColor="transparent"
51        Square150x150Logo="resources\logo_150x150.png"
52        Square44x44Logo="resources\logo_70x70.png">
53      </uap:VisualElements>
54      <Extensions>
55        <desktop4:Extension Category="windows.fileExplorerContextMenus">
56          <desktop4:FileExplorerContextMenus>
57            <desktop5:ItemType Type="Directory">
58              <desktop5:Verb Id="OpenWithZedNightly" Clsid="266f2cfe-1653-42af-b55c-fe3590c83871" />
59            </desktop5:ItemType>
60            <desktop5:ItemType Type="Directory\Background">
61              <desktop5:Verb Id="OpenWithZedNightly" Clsid="266f2cfe-1653-42af-b55c-fe3590c83871" />
62            </desktop5:ItemType>
63            <desktop5:ItemType Type="*">
64              <desktop5:Verb Id="OpenWithZedNightly" Clsid="266f2cfe-1653-42af-b55c-fe3590c83871" />
65            </desktop5:ItemType>
66          </desktop4:FileExplorerContextMenus>
67        </desktop4:Extension>
68        <com:Extension Category="windows.comServer">
69          <com:ComServer>
70            <com:SurrogateServer DisplayName="Zed Nightly">
71              <com:Class Id="266f2cfe-1653-42af-b55c-fe3590c83871" Path="zed_explorer_command_injector.dll" ThreadingModel="STA"/>
72            </com:SurrogateServer>
73          </com:ComServer>
74        </com:Extension>
75      </Extensions>
76    </Application>
77  </Applications>
78</Package>