fix(packaging): install correct vc++ package in msix

Signed-off-by: seth <getchoo@tuta.io>
This commit is contained in:
seth 2023-07-14 17:52:22 -04:00
parent aa693f86f4
commit 46ce358bb7
No known key found for this signature in database
GPG Key ID: D31BD0D494BBEE86

View File

@ -26,7 +26,7 @@
<Dependencies>
<TargetDeviceFamily Name="Windows.Desktop" MinVersion="10.0.17763.0" MaxVersionTested="10.0.22621.0" />
<PackageDependency
Name="Microsoft.VCLibs.140.00"
Name="Microsoft.VCLibs.140.00.UWPDesktop"
Publisher="CN=Microsoft Corporation, O=Microsoft Corporation, L=Redmond, S=Washington, C=US"
MinVersion="14.0.30035.0" />
</Dependencies>
@ -43,29 +43,29 @@
EntryPoint="windows.fullTrustApplication"
>
<Extensions>
<uap:Extension Category="windows.fileTypeAssociation">
<uap:FileTypeAssociation
Name="prismlauncher_fileassociations"
desktop2:AllowSilentDefaultTakeOver="true"
desktop5:ThumbnailTypeOverlay="prismlauncher_44x44.png">
<uap:DisplayName>Prism Launcher</uap:DisplayName>
<uap:InfoTip>Import into Prism Launcher</uap:InfoTip>
<uap:SupportedFileTypes>
<uap:FileType>.zip</uap:FileType>
<uap:FileType>.mrpack</uap:FileType>
</uap:SupportedFileTypes>
</uap:FileTypeAssociation>
</uap:Extension>
</Extensions>
<Extensions>
<uap:Extension Category="windows.fileTypeAssociation">
<uap:FileTypeAssociation
Name="prismlauncher_fileassociations"
desktop2:AllowSilentDefaultTakeOver="true"
desktop5:ThumbnailTypeOverlay="prismlauncher_44x44.png">
<uap:DisplayName>Prism Launcher</uap:DisplayName>
<uap:InfoTip>Import into Prism Launcher</uap:InfoTip>
<uap:SupportedFileTypes>
<uap:FileType>.zip</uap:FileType>
<uap:FileType>.mrpack</uap:FileType>
</uap:SupportedFileTypes>
</uap:FileTypeAssociation>
</uap:Extension>
</Extensions>
<uap:VisualElements
DisplayName="Prism Launcher"
Description="A custom launcher for Minecraft that allows you to easily manage multiple installations of Minecraft at once"
Square150x150Logo="prismlauncher_150x150.png"
Square44x44Logo="prismlauncher_44x44.png"
BackgroundColor="transparent"
/>
<uap:VisualElements
DisplayName="Prism Launcher"
Description="A custom launcher for Minecraft that allows you to easily manage multiple installations of Minecraft at once"
Square150x150Logo="prismlauncher_150x150.png"
Square44x44Logo="prismlauncher_44x44.png"
BackgroundColor="transparent"
/>
</Application>
</Applications>
</Package>