mirror of
https://github.com/mitb-archive/filebot
synced 2024-11-07 18:05:04 -05:00
59 lines
2.1 KiB
XML
59 lines
2.1 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: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">
|
|
|
|
<Identity
|
|
Name="PointPlanck.FileBot"
|
|
ProcessorArchitecture="x64"
|
|
Publisher="CN=761A0D2B-9B86-4FE4-B664-18E4E0AFC3F1"
|
|
Version="@{application.version}.0"
|
|
/>
|
|
|
|
<Properties>
|
|
<DisplayName>@{application.name}</DisplayName>
|
|
<PublisherDisplayName>@{package.company}</PublisherDisplayName>
|
|
<Description>@{package.description}</Description>
|
|
<Logo>icon.png</Logo>
|
|
</Properties>
|
|
|
|
<Resources>
|
|
<Resource Language="en-us" />
|
|
</Resources>
|
|
|
|
<Dependencies>
|
|
<TargetDeviceFamily Name="Windows.Desktop" MinVersion="10.0.14393.0" MaxVersionTested="10.0.14393.0" />
|
|
</Dependencies>
|
|
|
|
<Capabilities>
|
|
<rescap:Capability Name="runFullTrust" />
|
|
</Capabilities>
|
|
|
|
<Applications>
|
|
<Application Id="@{package.name}" Executable="filebot.launcher.exe" EntryPoint="Windows.FullTrustApplication">
|
|
<uap:VisualElements
|
|
DisplayName="@{application.name}"
|
|
Description="@{package.synopsis}"
|
|
BackgroundColor="transparent"
|
|
Square44x44Logo="icon44.png"
|
|
Square150x150Logo="icon150.png"
|
|
/>
|
|
<Extensions>
|
|
<uap3:Extension Category="windows.appExecutionAlias" Executable="filebot.exe" EntryPoint="Windows.FullTrustApplication">
|
|
<uap3:AppExecutionAlias>
|
|
<desktop:ExecutionAlias Alias="filebot.exe" />
|
|
</uap3:AppExecutionAlias>
|
|
</uap3:Extension>
|
|
<uap3:Extension Category="windows.appExecutionAlias" Executable="filebot.launcher.exe" EntryPoint="Windows.FullTrustApplication">
|
|
<uap3:AppExecutionAlias>
|
|
<desktop:ExecutionAlias Alias="filebot.launcher.exe" />
|
|
</uap3:AppExecutionAlias>
|
|
</uap3:Extension>
|
|
</Extensions>
|
|
</Application>
|
|
</Applications>
|
|
|
|
</Package> |