-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAppxManifest.xml
More file actions
62 lines (56 loc) · 2.64 KB
/
AppxManifest.xml
File metadata and controls
62 lines (56 loc) · 2.64 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<?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"
xmlns:desktop="http://schemas.microsoft.com/appx/manifest/desktop/windows10"
xmlns:desktop4="http://schemas.microsoft.com/appx/manifest/desktop/windows10/4"
xmlns:com="http://schemas.microsoft.com/appx/manifest/com/windows10"
IgnorableNamespaces="uap rescap desktop desktop4 com">
<Identity
Name="ExplorerSelector.Package"
Publisher="CN=ExplorerSelectorDev"
Version="1.0.0.0" />
<Properties>
<DisplayName>ExplorerSelector</DisplayName>
<PublisherDisplayName>ExplorerSelectorDev</PublisherDisplayName>
<Logo>Assets\StoreLogo.png</Logo>
</Properties>
<Dependencies>
<TargetDeviceFamily Name="Windows.Desktop" MinVersion="10.0.19041.0" MaxVersionTested="10.0.22000.0" />
</Dependencies>
<Capabilities>
<rescap:Capability Name="runFullTrust" />
<rescap:Capability Name="allowElevation" />
</Capabilities>
<Applications>
<Application Id="ExplorerSelectorApp" Executable="ExplorerSelector\x64\Debug\ExplorerSelector.exe" EntryPoint="Windows.FullTrustApplication">
<uap:VisualElements
DisplayName="ExplorerSelector"
Description="Fast File Selection"
BackgroundColor="transparent"
Square150x150Logo="Assets\Square150x150Logo.png"
Square44x44Logo="Assets\Square44x44Logo.png">
</uap:VisualElements>
<Extensions>
<!-- Register the Context Menu Extension for Windows 11 -->
<desktop4:Extension Category="windows.fileExplorerContextMenus">
<desktop4:FileExplorerContextMenus>
<desktop4:ItemType Type="*">
<!-- This CLSID matches the one in SelectorExplorerPlugin -->
<desktop4:Verb Id="ExplorerSelectorVerb" Clsid="3289050C-926F-4C10-8531-9F31E63C2C90" />
</desktop4:ItemType>
</desktop4:FileExplorerContextMenus>
</desktop4:Extension>
<!-- Register the COM Server (The DLL) so the Package knows about it -->
<com:Extension Category="windows.comServer">
<com:ComServer>
<com:SurrogateServer DisplayName="ExplorerSelector Context Menu">
<com:Class Id="3289050C-926F-4C10-8531-9F31E63C2C90" Path="SelectorExplorerPlugin\x64\Debug\SelectorExplorerPlugin.dll" ThreadingModel="STA"/>
</com:SurrogateServer>
</com:ComServer>
</com:Extension>
</Extensions>
</Application>
</Applications>
</Package>