AppxManifest.xml
 1  <?xml version="1.0" encoding="utf-8"?>
 2  <Package xmlns="http://schemas.microsoft.com/appx/manifest/foundation/windows10"
 3    xmlns:uap="http://schemas.microsoft.com/appx/manifest/uap/windows10"
 4    xmlns:uap2="http://schemas.microsoft.com/appx/manifest/uap/windows10/2"
 5    xmlns:uap3="http://schemas.microsoft.com/appx/manifest/uap/windows10/3"
 6    xmlns:rescap="http://schemas.microsoft.com/appx/manifest/foundation/windows10/restrictedcapabilities"
 7    xmlns:desktop="http://schemas.microsoft.com/appx/manifest/desktop/windows10"
 8    xmlns:desktop4="http://schemas.microsoft.com/appx/manifest/desktop/windows10/4"
 9    xmlns:desktop5="http://schemas.microsoft.com/appx/manifest/desktop/windows10/5"
10    xmlns:uap10="http://schemas.microsoft.com/appx/manifest/uap/windows10/10"
11    xmlns:com="http://schemas.microsoft.com/appx/manifest/com/windows10" IgnorableNamespaces="uap uap2 uap3 rescap desktop desktop4 desktop5 uap10 com">
12    <Identity Name="Microsoft.PowerToys.FileLocksmithContextMenu" ProcessorArchitecture="neutral" Publisher="CN=Microsoft Corporation, O=Microsoft Corporation, L=Redmond, S=Washington, C=US" Version="1.0.0.0" />
13    <Properties>
14      <DisplayName>PowerToys FileLocksmith Context Menu</DisplayName>
15      <PublisherDisplayName>Microsoft</PublisherDisplayName>
16      <Logo>Assets\FileLocksmith\storelogo.png</Logo>
17      <uap10:AllowExternalContent>true</uap10:AllowExternalContent>
18    </Properties>
19    <Resources>
20      <Resource Language="en-us" />
21    </Resources>
22    <Dependencies>
23      <TargetDeviceFamily Name="Windows.Desktop" MinVersion="10.0.18950.0" MaxVersionTested="10.0.19000.0" />
24    </Dependencies>
25    <Capabilities>
26      <rescap:Capability Name="runFullTrust" />
27      <rescap:Capability Name="unvirtualizedResources"/>
28    </Capabilities>
29    <Applications>
30      <Application Id="Microsoft.PowerToys.FileLocksmithContextMenu" Executable="FileLocksmithUI.exe" uap10:TrustLevel="mediumIL" uap10:RuntimeBehavior="win32App">
31        <uap:VisualElements AppListEntry="none" DisplayName="PowerToys FileLocksmith Context Menu" Description="FileLocksmithContextMenu" BackgroundColor="transparent" Square150x150Logo="Assets\FileLocksmith\Square150x150Logo.png" Square44x44Logo="Assets\FileLocksmith\Square44x44Logo.png">
32          <uap:DefaultTile Wide310x150Logo="Assets\FileLocksmith\Wide310x150Logo.png" Square310x310Logo="Assets\FileLocksmith\LargeTile.png" Square71x71Logo="Assets\FileLocksmith\SmallTile.png"></uap:DefaultTile>
33          <uap:SplashScreen Image="Assets\FileLocksmith\SplashScreen.png" />
34        </uap:VisualElements>
35        <Extensions>
36          <desktop4:Extension Category="windows.fileExplorerContextMenus">
37            <desktop4:FileExplorerContextMenus>
38              <desktop5:ItemType Type="Directory">
39                <desktop5:Verb Id="FileLocksmithCommand" Clsid="AAF1E27D-4976-49C2-8895-AAFA743C0A7E" />
40              </desktop5:ItemType>
41              <desktop5:ItemType Type="*">
42                <desktop5:Verb Id="FileLocksmithCommand" Clsid="AAF1E27D-4976-49C2-8895-AAFA743C0A7E" />
43              </desktop5:ItemType>
44            </desktop4:FileExplorerContextMenus>
45          </desktop4:Extension>
46          <com:Extension Category="windows.comServer" uap10:RuntimeBehavior="packagedClassicApp">
47            <com:ComServer>
48              <com:SurrogateServer DisplayName="Context menu verb handler">
49                <com:Class Id="AAF1E27D-4976-49C2-8895-AAFA743C0A7E" Path="PowerToys.FileLocksmithContextMenu.dll" ThreadingModel="STA"/>
50              </com:SurrogateServer>
51            </com:ComServer>
52          </com:Extension>
53        </Extensions>
54      </Application>
55    </Applications>
56  </Package>