﻿<?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"
  IgnorableNamespaces="uap rescap">

  <!-- IMPORTANT: For Azure Trusted Signing the Publisher MUST exactly match the
       subject of the signing certificate issued by your Trusted Signing
       certificate profile (see the profile in the Azure portal after org
       validation). A mismatch makes the MSIX signature invalid and the package
       will refuse to install. Replace the placeholder below with that subject,
       e.g. "CN=Contoso, O=Contoso Ltd, L=Redmond, S=Washington, C=US".
       Keep the existing Name/Version unless you are intentionally changing the
       package identity (doing so creates a new app identity and breaks
       upgrades from previously installed copies). -->
  <Identity
    Name="4e440e29-8151-4465-b20f-fb3acb283925"
    Publisher="CN=Hugging Face, O=Hugging Face, L=Brooklyn, S=New York, C=US, PostalCode=11201"
    Version="0.9.0.0" />

  <mp:PhoneIdentity PhoneProductId="4e440e29-8151-4465-b20f-fb3acb283925" PhonePublisherId="00000000-0000-0000-0000-000000000000"/>

  <Properties>
    <DisplayName>LlamaApp</DisplayName>
    <PublisherDisplayName>Morgan Funtowicz</PublisherDisplayName>
    <Logo>Assets\StoreLogo.png</Logo>
  </Properties>

  <!-- At least one TargetDeviceFamily is required by the appx schema. This is
       a full-trust (runFullTrust) desktop app, so Windows.Desktop alone is the
       accurate declaration — Windows.Universal would redundantly claim support
       for every device family (Xbox, HoloLens, ...) the package can't run on
       anyway. MinVersion 17763 = Windows 10 1809, the floor for WinUI 3 /
       Windows App SDK; MaxVersionTested only selects compatibility quirks and
       never gates installation. -->
  <Dependencies>
    <TargetDeviceFamily Name="Windows.Desktop" MinVersion="10.0.26100.0" />
  </Dependencies>

  <Resources>
    <Resource Language="x-generate"/>
  </Resources>

  <Applications>
    <Application Id="App"
      Executable="$targetnametoken$.exe"
      EntryPoint="$targetentrypoint$">
      <uap:VisualElements
        DisplayName="LlamaApp"
        Description="LlamaApp"
        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>
