1
0
mirror of https://github.com/mitb-archive/filebot synced 2024-08-13 17:03:45 -04:00

Experiment with appx build: <desktop:ExecutionAlias Alias="filebot.exe" />

This commit is contained in:
Reinhard Pointner 2016-09-20 05:15:58 +08:00
parent b6d1fe7f33
commit 6fa6bf83a3

View File

@ -2,7 +2,9 @@
<Package <Package
xmlns="http://schemas.microsoft.com/appx/manifest/foundation/windows10" xmlns="http://schemas.microsoft.com/appx/manifest/foundation/windows10"
xmlns:uap="http://schemas.microsoft.com/appx/manifest/uap/windows10" xmlns:uap="http://schemas.microsoft.com/appx/manifest/uap/windows10"
xmlns:cap="http://schemas.microsoft.com/appx/manifest/foundation/windows10/restrictedcapabilities"> 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 <Identity
Name="net.filebot.FileBot" Name="net.filebot.FileBot"
@ -17,24 +19,36 @@
<Description>FileBot is the ultimate tool for organizing and renaming Movies, TV Shows, Anime or Music. It's smart, highly customizable, and just works.</Description> <Description>FileBot is the ultimate tool for organizing and renaming Movies, TV Shows, Anime or Music. It's smart, highly customizable, and just works.</Description>
<Logo>icon.png</Logo> <Logo>icon.png</Logo>
</Properties> </Properties>
<Resources> <Resources>
<Resource Language="en-us" /> <Resource Language="en-us" />
</Resources> </Resources>
<Dependencies> <Dependencies>
<TargetDeviceFamily Name="Windows.Desktop" MinVersion="10.0.14316.0" MaxVersionTested="10.0.14316.0" /> <TargetDeviceFamily Name="Windows.Desktop" MinVersion="10.0.14316.0" MaxVersionTested="10.0.14316.0" />
</Dependencies> </Dependencies>
<Capabilities> <Capabilities>
<cap:Capability Name="runFullTrust" /> <rescap:Capability Name="runFullTrust" />
</Capabilities> </Capabilities>
<Applications> <Applications>
<Application Id="app" Executable="filebot.launcher.exe" EntryPoint="Windows.FullTrustApplication"> <Application Id="FileBot" Executable="filebot.launcher.exe" EntryPoint="Windows.FullTrustApplication">
<uap:VisualElements <uap:VisualElements
BackgroundColor="transparent"
DisplayName="FileBot" DisplayName="FileBot"
Square150x150Logo="icon150.png"
Square44x44Logo="icon44.png"
Description="FileBot is the ultimate tool for organizing and renaming Movies, TV Shows, Anime or Music." Description="FileBot is the ultimate tool for organizing and renaming Movies, TV Shows, Anime or Music."
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>
</Extensions>
</Application> </Application>
</Applications> </Applications>
</Package> </Package>