feat(packaging): use msix for msvc builds
Signed-off-by: seth <getchoo@tuta.io>
This commit is contained in:
57
program_info/AppxManifest.xml
Normal file
57
program_info/AppxManifest.xml
Normal file
@ -0,0 +1,57 @@
|
||||
<?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"
|
||||
xmlns:uap10="http://schemas.microsoft.com/appx/manifest/uap/windows10/10"
|
||||
xmlns:rescap="http://schemas.microsoft.com/appx/manifest/foundation/windows10/restrictedcapabilities"
|
||||
xmlns:virtualization="http://schemas.microsoft.com/appx/manifest/virtualization/windows10"
|
||||
xmlns:desktop6="http://schemas.microsoft.com/appx/manifest/desktop/windows10/6"
|
||||
IgnorableNamespaces="rescap virtualization desktop6">
|
||||
<Identity Name="github.PrismLauncher.PrismLauncher" Version="7.0.0.0" Publisher="CN=PrismLauncher, O=PrismLauncher, L=MyCity, S=MyState, C=MyCountry" ProcessorArchitecture="x64" />
|
||||
<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>
|
||||
<TargetDeviceFamily Name="Windows.Desktop" MinVersion="10.0.19041.0" MaxVersionTested="10.0.22621.0" />
|
||||
</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"
|
||||
uap10:RuntimeBehavior="win32App"
|
||||
uap10:TrustLevel="mediumIL"
|
||||
>
|
||||
<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>
|
BIN
program_info/prismlauncher_150x150.png
Normal file
BIN
program_info/prismlauncher_150x150.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 6.4 KiB |
BIN
program_info/prismlauncher_44x44.png
Normal file
BIN
program_info/prismlauncher_44x44.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.8 KiB |
Reference in New Issue
Block a user