2023-06-10 22:17:13 +01: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"
|
2023-06-19 03:36:20 +01:00
|
|
|
xmlns:rescap="http://schemas.microsoft.com/appx/manifest/foundation/windows10/restrictedcapabilities"
|
|
|
|
xmlns:desktop2="http://schemas.microsoft.com/appx/manifest/desktop/windows10/2"
|
|
|
|
xmlns:desktop5="http://schemas.microsoft.com/appx/manifest/desktop/windows10/5">
|
2023-06-10 23:44:32 +01:00
|
|
|
<Identity Name="github.PrismLauncher.PrismLauncher" Version="PRISM_VERSION_REPLACEME" Publisher="CN=PrismLauncher, O=PrismLauncher, L=MyCity, S=MyState, C=MyCountry" ProcessorArchitecture="PRISM_ARCH_REPLACEME" />
|
2023-06-10 22:17:13 +01:00
|
|
|
<Properties>
|
|
|
|
<DisplayName>Prism Launcher</DisplayName>
|
|
|
|
<PublisherDisplayName>Prism Launcher</PublisherDisplayName>
|
|
|
|
<Description>A custom launcher for Minecraft that allows you to easily manage multiple installations of Minecraft at once</Description>
|
|
|
|
<Logo>prismlauncher_150x150.png</Logo>
|
|
|
|
</Properties>
|
|
|
|
<Resources>
|
|
|
|
<Resource Language="en-us" />
|
|
|
|
</Resources>
|
|
|
|
<Dependencies>
|
2023-06-12 18:41:08 +01:00
|
|
|
<TargetDeviceFamily Name="Windows.Desktop" MinVersion="10.0.17763.0" MaxVersionTested="10.0.22621.0" />
|
|
|
|
<PackageDependency
|
|
|
|
Name="Microsoft.VCLibs.140.00"
|
|
|
|
Publisher="CN=Microsoft Corporation, O=Microsoft Corporation, L=Redmond, S=Washington, C=US"
|
|
|
|
MinVersion="14.0.30035.0" />
|
2023-06-10 22:17:13 +01:00
|
|
|
</Dependencies>
|
|
|
|
<Capabilities>
|
|
|
|
<Capability Name="internetClientServer"/>
|
|
|
|
<rescap:Capability Name="runFullTrust"/>
|
|
|
|
<rescap:Capability Name="unvirtualizedResources"/>
|
|
|
|
<DeviceCapability Name="humaninterfacedevice">
|
|
|
|
<!--
|
|
|
|
This allows for any
|
|
|
|
generic gaming device,
|
|
|
|
such as a controller or joystick
|
|
|
|
*and* any HID device.
|
|
|
|
-->
|
|
|
|
<Device Id="any">
|
|
|
|
<Function Type="usage:0004 *"/>
|
|
|
|
<Function Type="usage:0005 *"/>
|
|
|
|
<Function Type="usage:ffa0 0001"/>
|
|
|
|
</Device>
|
|
|
|
</DeviceCapability>
|
|
|
|
</Capabilities>
|
|
|
|
<Applications>
|
|
|
|
<Application
|
|
|
|
Id="PrismLauncher"
|
|
|
|
Executable="prismlauncher.exe"
|
2023-06-12 01:03:58 +01:00
|
|
|
EntryPoint="windows.fullTrustApplication"
|
2023-06-10 22:17:13 +01:00
|
|
|
>
|
2023-06-19 03:36:20 +01:00
|
|
|
|
|
|
|
<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>
|
|
|
|
|
2023-06-10 22:17:13 +01:00
|
|
|
<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>
|