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

Force DesktopAppMigration to make sure that users that have purchased FileBot from the Store, but also have an older legacy version installed, are actually using the Windows Store version, and not inadvertanly running an old version (and then complaining that it doesn't work, ask for donations, etc).

This commit is contained in:
Reinhard Pointner 2018-11-17 14:26:16 +07:00
parent 7ae04f7fcf
commit 22257235f5

View File

@ -5,6 +5,7 @@
xmlns:uap2="http://schemas.microsoft.com/appx/manifest/uap/windows10/2"
xmlns:uap3="http://schemas.microsoft.com/appx/manifest/uap/windows10/3"
xmlns:rescap="http://schemas.microsoft.com/appx/manifest/foundation/windows10/restrictedcapabilities"
xmlns:rescap3="http://schemas.microsoft.com/appx/manifest/foundation/windows10/restrictedcapabilities/3"
xmlns:desktop="http://schemas.microsoft.com/appx/manifest/desktop/windows10">
<Identity
@ -83,6 +84,15 @@
</uap2:SupportedVerbs>
</uap3:FileTypeAssociation>
</uap3:Extension>
<rescap3:Extension Category="windows.desktopAppMigration">
<rescap3:DesktopAppMigration>
<rescap3:DesktopApp AumId="@{application.name}" />
<rescap3:DesktopApp AumId="@{package.identifier}" />
<rescap3:DesktopApp ShortcutPath="%USERPROFILE%\Desktop\@{application.name}.lnk" />
<rescap3:DesktopApp ShortcutPath="%APPDATA%\Microsoft\Windows\Start Menu\Programs\@{application.name}.lnk" />
<rescap3:DesktopApp ShortcutPath="%APPDATA%\Microsoft\Windows\SendTo\@{application.name}.lnk"/>
</rescap3:DesktopAppMigration>
</rescap3:Extension>
</Extensions>
</Application>
</Applications>