hammer-editor/msix/AppxManifest.xml
2026-01-17 13:03:48 -08:00

51 lines
1.7 KiB
XML

<?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:rescap="http://schemas.microsoft.com/appx/manifest/foundation/windows10/restrictedcapabilities"
IgnorableNamespaces="uap rescap">
<Identity
Name="DarkRockStudios.HammerEditor"
Publisher="CN=1CB419E3-12E3-4F8B-B2CC-2C4F16D8E686"
Version="2.0.0.0" />
<Properties>
<DisplayName>Hammer Editor</DisplayName>
<PublisherDisplayName>Dark Rock Studios</PublisherDisplayName>
<Logo>Assets\StoreLogo.png</Logo>
<Description>A simple tool for building stories.</Description>
</Properties>
<Dependencies>
<TargetDeviceFamily Name="Windows.Desktop" MinVersion="10.0.17763.0" MaxVersionTested="10.0.22621.0" />
</Dependencies>
<Resources>
<Resource Language="en-US"/>
<Resource Language="de-DE"/>
<Resource Language="fr-FR"/>
<Resource Language="es-ES"/>
<Resource Language="it-IT"/>
<Resource Language="pt-BR"/>
<Resource Language="uk-UA"/>
</Resources>
<Applications>
<Application Id="Hammer" Executable="hammer.exe" EntryPoint="Windows.FullTrustApplication">
<uap:VisualElements
DisplayName="Hammer"
Description="A simple tool for building stories."
BackgroundColor="transparent"
Square150x150Logo="Assets\Square150x150Logo.png"
Square44x44Logo="Assets\Square44x44Logo.png">
<uap:DefaultTile Wide310x150Logo="Assets\Wide310x150Logo.png" />
<uap:SplashScreen Image="Assets\SplashScreen.png" />
</uap:VisualElements>
</Application>
</Applications>
<Capabilities>
<rescap:Capability Name="runFullTrust" />
</Capabilities>
</Package>