mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-04 10:16:24 +02:00
* Add project
* Cleanup project file and add resource file
* Move common logic to FileLocksmithLib
* Cleanup interop vcxproj
* Implement handler, add assets and appx manifest
* Revert "Cleanup interop vcxproj"
This reverts commit 97bf991f2e.
* Remove package on uninstall
Install package on enable
Fix launching app
Cleanup
* Revert non-related change
* Spellcheck
* Update src/modules/FileLocksmith/FileLocksmithContextMenu/Resources.resx
* Wire Show in extended context menu setting
57 lines
3.5 KiB
XML
57 lines
3.5 KiB
XML
<?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:uap2="http://schemas.microsoft.com/appx/manifest/uap/windows10/2"
|
|
xmlns:uap3="http://schemas.microsoft.com/appx/manifest/uap/windows10/3"
|
|
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:desktop5="http://schemas.microsoft.com/appx/manifest/desktop/windows10/5"
|
|
xmlns:uap10="http://schemas.microsoft.com/appx/manifest/uap/windows10/10"
|
|
xmlns:com="http://schemas.microsoft.com/appx/manifest/com/windows10" IgnorableNamespaces="uap uap2 uap3 rescap desktop desktop4 desktop5 uap10 com">
|
|
<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" />
|
|
<Properties>
|
|
<DisplayName>PowerToys FileLocksmith Context Menu</DisplayName>
|
|
<PublisherDisplayName>Microsoft</PublisherDisplayName>
|
|
<Logo>Assets\FileLocksmith\storelogo.png</Logo>
|
|
<uap10:AllowExternalContent>true</uap10:AllowExternalContent>
|
|
</Properties>
|
|
<Resources>
|
|
<Resource Language="en-us" />
|
|
</Resources>
|
|
<Dependencies>
|
|
<TargetDeviceFamily Name="Windows.Desktop" MinVersion="10.0.18950.0" MaxVersionTested="10.0.19000.0" />
|
|
</Dependencies>
|
|
<Capabilities>
|
|
<rescap:Capability Name="runFullTrust" />
|
|
<rescap:Capability Name="unvirtualizedResources"/>
|
|
</Capabilities>
|
|
<Applications>
|
|
<Application Id="Microsoft.PowerToys.FileLocksmithContextMenu" Executable="FileLocksmithUI.exe" uap10:TrustLevel="mediumIL" uap10:RuntimeBehavior="win32App">
|
|
<uap:VisualElements AppListEntry="none" DisplayName="PowerToys FileLocksmith Context Menu" Description="FileLocksmithContextMenu" BackgroundColor="transparent" Square150x150Logo="Assets\FileLocksmith\Square150x150Logo.png" Square44x44Logo="Assets\FileLocksmith\Square44x44Logo.png">
|
|
<uap:DefaultTile Wide310x150Logo="Assets\FileLocksmith\Wide310x150Logo.png" Square310x310Logo="Assets\FileLocksmith\LargeTile.png" Square71x71Logo="Assets\FileLocksmith\SmallTile.png"></uap:DefaultTile>
|
|
<uap:SplashScreen Image="Assets\FileLocksmith\SplashScreen.png" />
|
|
</uap:VisualElements>
|
|
<Extensions>
|
|
<desktop4:Extension Category="windows.fileExplorerContextMenus">
|
|
<desktop4:FileExplorerContextMenus>
|
|
<desktop5:ItemType Type="Directory">
|
|
<desktop5:Verb Id="FileLocksmithCommand" Clsid="AAF1E27D-4976-49C2-8895-AAFA743C0A7E" />
|
|
</desktop5:ItemType>
|
|
<desktop5:ItemType Type="*">
|
|
<desktop5:Verb Id="FileLocksmithCommand" Clsid="AAF1E27D-4976-49C2-8895-AAFA743C0A7E" />
|
|
</desktop5:ItemType>
|
|
</desktop4:FileExplorerContextMenus>
|
|
</desktop4:Extension>
|
|
<com:Extension Category="windows.comServer" uap10:RuntimeBehavior="packagedClassicApp">
|
|
<com:ComServer>
|
|
<com:SurrogateServer DisplayName="Context menu verb handler">
|
|
<com:Class Id="AAF1E27D-4976-49C2-8895-AAFA743C0A7E" Path="PowerToys.FileLocksmithContextMenu.dll" ThreadingModel="STA"/>
|
|
</com:SurrogateServer>
|
|
</com:ComServer>
|
|
</com:Extension>
|
|
</Extensions>
|
|
</Application>
|
|
</Applications>
|
|
</Package>
|