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"
|
2023-07-16 03:26:55 +01:00
|
|
|
xmlns:desktop5="http://schemas.microsoft.com/appx/manifest/desktop/windows10/5"
|
|
|
|
xmlns:desktop6="http://schemas.microsoft.com/appx/manifest/desktop/windows10/6">
|
2023-06-19 03:50:02 +01:00
|
|
|
|
|
|
|
<Identity
|
2023-06-19 09:21:24 +01:00
|
|
|
Name="org.prismlauncher.PrismLauncher"
|
2023-06-19 03:50:02 +01:00
|
|
|
Version="PRISM_VERSION_REPLACEME"
|
|
|
|
Publisher="CN=Sefa Eyeoglu, O=Sefa Eyeoglu, S=Nordrhein-Westfalen, C=DE"
|
|
|
|
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>
|
2023-07-16 03:26:55 +01:00
|
|
|
<desktop6:FileSystemWriteVirtualization>disabled</desktop6:FileSystemWriteVirtualization>
|
|
|
|
<desktop6:RegistryWriteVirtualization>disabled</desktop6:RegistryWriteVirtualization>
|
2023-06-10 22:17:13 +01:00
|
|
|
</Properties>
|
2023-06-19 03:50:02 +01:00
|
|
|
|
2023-06-10 22:17:13 +01:00
|
|
|
<Resources>
|
|
|
|
<Resource Language="en-us" />
|
|
|
|
</Resources>
|
2023-06-19 03:50:02 +01:00
|
|
|
|
2023-06-10 22:17:13 +01:00
|
|
|
<Dependencies>
|
2023-06-12 18:41:08 +01:00
|
|
|
<TargetDeviceFamily Name="Windows.Desktop" MinVersion="10.0.17763.0" MaxVersionTested="10.0.22621.0" />
|
|
|
|
<PackageDependency
|
2023-07-14 22:52:22 +01:00
|
|
|
Name="Microsoft.VCLibs.140.00.UWPDesktop"
|
2023-06-12 18:41:08 +01: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>
|
2023-06-19 03:50:02 +01:00
|
|
|
|
2023-06-10 22:17:13 +01:00
|
|
|
<Capabilities>
|
|
|
|
<rescap:Capability Name="runFullTrust"/>
|
|
|
|
<rescap:Capability Name="unvirtualizedResources"/>
|
|
|
|
</Capabilities>
|
2023-06-19 03:50:02 +01:00
|
|
|
|
2023-06-10 22:17:13 +01:00
|
|
|
<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
|
|
|
|
2023-07-14 22:52:22 +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-19 03:36:20 +01:00
|
|
|
|
2023-07-14 22:52:22 +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"
|
|
|
|
/>
|
2023-06-10 22:17:13 +01:00
|
|
|
</Application>
|
|
|
|
</Applications>
|
|
|
|
</Package>
|