68 lines
2.8 KiB
XML
68 lines
2.8 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:mp="http://schemas.microsoft.com/appx/2014/phone/manifest"
|
|
xmlns:rescap="http://schemas.microsoft.com/appx/manifest/foundation/windows10/restrictedcapabilities"
|
|
xmlns:com="http://schemas.microsoft.com/appx/manifest/com/windows10"
|
|
xmlns:desktop="http://schemas.microsoft.com/appx/manifest/desktop/windows10"
|
|
IgnorableNamespaces="uap rescap com desktop">
|
|
|
|
<Identity Name="maui-package-name-placeholder" Publisher="CN=User Name" Version="0.0.0.0" />
|
|
|
|
<mp:PhoneIdentity PhoneProductId="E2EA5E43-4A1E-4AC2-9529-A64902CCF624" PhonePublisherId="00000000-0000-0000-0000-000000000000"/>
|
|
|
|
<Properties>
|
|
<DisplayName>$placeholder$</DisplayName>
|
|
<PublisherDisplayName>User Name</PublisherDisplayName>
|
|
<Logo>$placeholder$.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="$placeholder$"
|
|
Description="$placeholder$"
|
|
Square150x150Logo="$placeholder$.png"
|
|
Square44x44Logo="$placeholder$.png"
|
|
BackgroundColor="transparent">
|
|
<uap:DefaultTile Square71x71Logo="$placeholder$.png" Wide310x150Logo="$placeholder$.png" Square310x310Logo="$placeholder$.png" />
|
|
<uap:SplashScreen Image="$placeholder$.png" />
|
|
</uap:VisualElements>
|
|
|
|
<Extensions>
|
|
|
|
<!-- Specify which CLSID to activate when notification is clicked -->
|
|
<desktop:Extension Category="windows.toastNotificationActivation">
|
|
<desktop:ToastNotificationActivation ToastActivatorCLSID="6e919706-2634-4d97-a93c-2213b2acc334" />
|
|
</desktop:Extension>
|
|
|
|
<!-- Register COM CLSID -->
|
|
<com:Extension Category="windows.comServer">
|
|
<com:ComServer>
|
|
<com:ExeServer Executable="Neighbourhood.omg.lol\Neighbourhood.omg.lol.exe" DisplayName="$targetnametoken$" Arguments="----AppNotificationActivated:">
|
|
<!-- Example path to executable: CommunityToolkit.Maui.Sample\CommunityToolkit.Maui.Sample.exe -->
|
|
<com:Class Id="6e919706-2634-4d97-a93c-2213b2acc334" />
|
|
</com:ExeServer>
|
|
</com:ComServer>
|
|
</com:Extension>
|
|
|
|
</Extensions>
|
|
|
|
</Application>
|
|
</Applications>
|
|
|
|
<Capabilities>
|
|
<rescap:Capability Name="runFullTrust" />
|
|
</Capabilities>
|
|
|
|
</Package>
|