Files
cursor-lang/Packaging/AppxManifest.xml
T
2026-08-11 15:00:52 +05:00

58 lines
2.2 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:desktop="http://schemas.microsoft.com/appx/manifest/desktop/windows10"
xmlns:rescap="http://schemas.microsoft.com/appx/manifest/foundation/windows10/restrictedcapabilities"
IgnorableNamespaces="uap desktop rescap">
<Identity
Name="{IdentityName}"
Publisher="{Publisher}"
Version="{Version}"
ProcessorArchitecture="{Architecture}"/>
<Properties>
<DisplayName>CursorLang</DisplayName>
<PublisherDisplayName>{PublisherDisplayName}</PublisherDisplayName>
<Logo>Assets\StoreLogo.png</Logo>
</Properties>
<Dependencies>
<TargetDeviceFamily Name="Windows.Desktop" MinVersion="10.0.17763.0" MaxVersionTested="10.0.26100.0"/>
</Dependencies>
<Resources>
<Resource Language="en-us"/>
<Resource Language="ru-ru"/>
</Resources>
<Applications>
<Application Id="App" Executable="CursorLang.exe" EntryPoint="Windows.FullTrustApplication">
<uap:VisualElements
DisplayName="CursorLang"
Description="Shows the keyboard layout at the cursor"
BackgroundColor="transparent"
Square150x150Logo="Assets\Square150x150Logo.png"
Square44x44Logo="Assets\Square44x44Logo.png">
<uap:DefaultTile
Square71x71Logo="Assets\Square71x71Logo.png"
Square310x310Logo="Assets\Square310x310Logo.png"
Wide310x150Logo="Assets\Wide310x150Logo.png"/>
</uap:VisualElements>
<Extensions>
<desktop:Extension Category="windows.startupTask" Executable="CursorLang.exe"
EntryPoint="Windows.FullTrustApplication">
<desktop:StartupTask TaskId="CursorLangStartup" Enabled="false" DisplayName="CursorLang"/>
</desktop:Extension>
</Extensions>
</Application>
</Applications>
<Capabilities>
<rescap:Capability Name="runFullTrust"/>
</Capabilities>
</Package>