2016-09-18 18:16:29 -04:00
<?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"
2016-09-19 17:15:58 -04:00
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">
2016-09-18 18:16:29 -04:00
<Identity
2016-11-16 17:45:16 -05:00
Name="@{microsoft.application.name}"
2016-09-18 18:16:29 -04:00
ProcessorArchitecture="x64"
2016-11-16 17:45:16 -05:00
Publisher="@{microsoft.application.publisher}"
2016-11-04 16:19:30 -04:00
Version="@{application.version}.0"
2016-09-18 18:16:29 -04:00
/>
<Properties >
2016-11-04 16:19:30 -04:00
<DisplayName > @{application.name}</DisplayName>
<PublisherDisplayName > @{package.company}</PublisherDisplayName>
<Description > @{package.description}</Description>
2016-11-16 17:45:16 -05:00
<Logo > Assets\StoreLogo.png</Logo>
2016-09-18 18:16:29 -04:00
</Properties>
2016-09-19 17:15:58 -04:00
2016-09-18 18:16:29 -04:00
<Resources >
2016-11-16 17:45:16 -05:00
<Resource Language= "en-US" />
2016-09-18 18:16:29 -04:00
</Resources>
2016-09-19 17:15:58 -04:00
2016-09-18 18:16:29 -04:00
<Dependencies >
2016-11-05 18:09:47 -04:00
<TargetDeviceFamily Name= "Windows.Desktop" MinVersion= "10.0.14393.0" MaxVersionTested= "10.0.14393.0" />
2016-09-18 18:16:29 -04:00
</Dependencies>
2016-09-19 17:15:58 -04:00
2016-09-18 18:16:29 -04:00
<Capabilities >
2016-09-19 17:15:58 -04:00
<rescap:Capability Name= "runFullTrust" />
2016-09-18 18:16:29 -04:00
</Capabilities>
2016-09-19 17:15:58 -04:00
2016-09-18 18:16:29 -04:00
<Applications >
2016-11-16 17:45:16 -05:00
<Application Id= "@{package.identifier}" Executable= "filebot.launcher.exe" EntryPoint= "Windows.FullTrustApplication" >
<uap:VisualElements DisplayName= "@{application.name}" Description= "@{package.synopsis}" BackgroundColor= "transparent" Square150x150Logo= "Assets\Square150x150Logo.png" Square44x44Logo= "Assets\Square44x44Logo.png" >
<uap:DefaultTile ShortName= "@{application.name}" Wide310x150Logo= "Assets\Wide310x150Logo.png" Square310x310Logo= "Assets\Square310x310Logo.png" Square71x71Logo= "Assets\Square71x71Logo.png" >
<uap:ShowNameOnTiles >
<uap:ShowOn Tile= "square150x150Logo" />
<uap:ShowOn Tile= "wide310x150Logo" />
<uap:ShowOn Tile= "square310x310Logo" />
</uap:ShowNameOnTiles>
</uap:DefaultTile>
</uap:VisualElements>
2016-09-19 17:15:58 -04:00
<Extensions >
2016-11-16 17:45:16 -05:00
<uap3:Extension Category= "windows.appExecutionAlias" Executable= "filebot.launcher.exe" EntryPoint= "Windows.FullTrustApplication" >
2016-09-19 17:15:58 -04:00
<uap3:AppExecutionAlias >
2016-11-16 17:45:16 -05:00
<desktop:ExecutionAlias Alias= "filebot.launcher.exe" />
2016-09-19 17:15:58 -04:00
</uap3:AppExecutionAlias>
</uap3:Extension>
2016-11-16 17:45:16 -05:00
</Extensions>
</Application>
<Application Id= "@{package.identifier}.Command" Executable= "filebot.exe" EntryPoint= "Windows.FullTrustApplication" >
<uap:VisualElements DisplayName= "@{application.name} (console)" Description= "Run @{application.name} with Console" AppListEntry= "none" BackgroundColor= "black" Square150x150Logo= "Assets\Square150x150Logo.png" Square44x44Logo= "Assets\Square44x44Logo.png" >
<uap:DefaultTile ShortName= "@{application.name} (console)" Wide310x150Logo= "Assets\Wide310x150Logo.png" Square310x310Logo= "Assets\Square310x310Logo.png" Square71x71Logo= "Assets\Square71x71Logo.png" >
<uap:ShowNameOnTiles >
<uap:ShowOn Tile= "square150x150Logo" />
<uap:ShowOn Tile= "wide310x150Logo" />
<uap:ShowOn Tile= "square310x310Logo" />
</uap:ShowNameOnTiles>
</uap:DefaultTile>
</uap:VisualElements>
<Extensions >
<uap3:Extension Category= "windows.appExecutionAlias" Executable= "filebot.exe" EntryPoint= "Windows.FullTrustApplication" >
2016-11-10 11:22:37 -05:00
<uap3:AppExecutionAlias >
2016-11-16 17:45:16 -05:00
<desktop:ExecutionAlias Alias= "filebot.exe" />
2016-11-10 11:22:37 -05:00
</uap3:AppExecutionAlias>
</uap3:Extension>
2016-09-19 17:15:58 -04:00
</Extensions>
2016-09-18 18:16:29 -04:00
</Application>
</Applications>
2016-09-19 17:15:58 -04:00
2016-09-18 18:16:29 -04:00
</Package>