WIn_RustTools/RustTools/Package.appxmanifest

90 lines
3.9 KiB
Plaintext
Raw Normal View History

2024-07-14 11:24:10 +00:00
<?xml version="1.0" encoding="utf-8"?>
<Package
xmlns="http://schemas.microsoft.com/appx/manifest/foundation/windows10"
xmlns:mp="http://schemas.microsoft.com/appx/2014/phone/manifest"
xmlns:uap="http://schemas.microsoft.com/appx/manifest/uap/windows10"
xmlns:rescap="http://schemas.microsoft.com/appx/manifest/foundation/windows10/restrictedcapabilities"
xmlns:genTemplate="http://schemas.microsoft.com/appx/developer/templatestudio"
xmlns:com="http://schemas.microsoft.com/appx/manifest/com/windows10"
xmlns:desktop="http://schemas.microsoft.com/appx/manifest/desktop/windows10"
IgnorableNamespaces="uap rescap genTemplate">
<Identity
Name="fd2b2e41-3313-4569-9ada-72a0640e6c21"
Publisher="CN=muqing"
2024-07-14 11:24:10 +00:00
Version="1.0.0.0" />
<mp:PhoneIdentity PhoneProductId="fd2b2e41-3313-4569-9ada-72a0640e6c21" PhonePublisherId="00000000-0000-0000-0000-000000000000"/>
<Properties>
<DisplayName>RustTools</DisplayName>
<PublisherDisplayName>muqing</PublisherDisplayName>
2024-07-14 11:24:10 +00:00
<Logo>Assets\res\StoreLogo.png</Logo>
</Properties>
<Dependencies>
<TargetDeviceFamily Name="Windows.Universal" MinVersion="10.0.17763.0" MaxVersionTested="10.0.19041.0" />
<TargetDeviceFamily Name="Windows.Desktop" MinVersion="10.0.17763.0" MaxVersionTested="10.0.19041.0" />
</Dependencies>
<Resources>
<Resource Language="x-generate"/>
</Resources>
<Applications>
<Application Id="App"
Executable="$targetnametoken$.exe"
EntryPoint="$targetentrypoint$">
<uap:VisualElements
DisplayName="ms-resource:AppDisplayName"
Description="ms-resource:AppDescription"
BackgroundColor="transparent"
Square150x150Logo="Assets\res\Square150x150Logo.png"
Square44x44Logo="Assets\res\Square44x44Logo.png">
<uap:DefaultTile Wide310x150Logo="Assets\res\Wide310x150Logo.png" Square71x71Logo="Assets\res\SmallTile.png" Square310x310Logo="Assets\res\LargeTile.png"/>
<uap:SplashScreen Image="Assets\res\SplashScreen.png" />
<uap:LockScreen BadgeLogo="Assets\res\BadgeLogo.png" Notification="badgeAndTileText"/>
</uap:VisualElements>
<Extensions>
<desktop:Extension Category="windows.toastNotificationActivation">
<desktop:ToastNotificationActivation ToastActivatorCLSID="cbd67608-14d1-4cde-a790-f2aa9775ffa1" />
</desktop:Extension>
<com:Extension Category="windows.comServer">
<com:ComServer>
<com:ExeServer Executable="RustTools.exe" Arguments="----AppNotificationActivated:" DisplayName="Toast activator">
<com:Class Id="cbd67608-14d1-4cde-a790-f2aa9775ffa1" DisplayName="Toast activator"/>
</com:ExeServer>
</com:ComServer>
</com:Extension>
<uap:Extension Category="windows.fileTypeAssociation">
<uap:FileTypeAssociation Name=".rwmod">
<uap:SupportedFileTypes>
<uap:FileType>.rwmod</uap:FileType>
</uap:SupportedFileTypes>
<uap:DisplayName>添加模组</uap:DisplayName>
<uap:Logo>Assets\tool.png</uap:Logo>
<uap:InfoTip>需要绑定铁锈路径</uap:InfoTip>
</uap:FileTypeAssociation>
</uap:Extension>
2024-07-14 11:24:10 +00:00
</Extensions>
</Application>
</Applications>
<Capabilities>
<rescap:Capability Name="runFullTrust" />
<Capability Name="internetClient" />
<Capability Name="privateNetworkClientServer" />
2024-07-14 11:24:10 +00:00
</Capabilities>
<genTemplate:Metadata>
<genTemplate:Item Name="generator" Value="Template Studio"/>
<genTemplate:Item Name="wizardVersion" Version="v5.5" />
<genTemplate:Item Name="projectType" Value="NavView" />
<genTemplate:Item Name="framework" Value="MVVMToolkit" />
<genTemplate:Item Name="platform" Value="WinUI" />
<genTemplate:Item Name="appmodel" Value="Desktop" />
</genTemplate:Metadata>
</Package>