mirror of
https://github.com/pbatard/rufus.git
synced 2024-08-14 23:57:05 +00:00
ca4e009ffc
* Having two separate Visual Studio solution files, while more convenient, was a major pain in the ass and it also required us to update versioning in the .appxmanifest for each commit. * Also, this new AppStore build process enables us to use the GitHub Actions executables to further foster the complete transparency of our build process.
26 lines
840 B
XML
26 lines
840 B
XML
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
<Package
|
|
xmlns="http://schemas.microsoft.com/appx/manifest/foundation/windows10"
|
|
xmlns:uap="http://schemas.microsoft.com/appx/manifest/uap/windows10"
|
|
IgnorableNamespaces="uap">
|
|
<Identity
|
|
Name="19453.net.Rufus"
|
|
Publisher="CN=7AC86D13-3E5A-491A-ADD5-80095C212740"
|
|
Version="@VERSION@"
|
|
ResourceId="split.scale-@SCALE@"/>
|
|
<Properties>
|
|
<ResourcePackage>true</ResourcePackage>
|
|
<DisplayName>Rufus</DisplayName>
|
|
<PublisherDisplayName>Akeo Consulting</PublisherDisplayName>
|
|
<Logo>Images\StoreLogo.png</Logo>
|
|
</Properties>
|
|
<Resources>
|
|
<Resource uap:Scale="@SCALE@"/>
|
|
</Resources>
|
|
<Dependencies>
|
|
<TargetDeviceFamily
|
|
Name="Windows.Desktop"
|
|
MinVersion="10.0.14316.0"
|
|
MaxVersionTested="10.0.22000.194"/>
|
|
</Dependencies>
|
|
</Package>
|