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