<?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"
  xmlns:wincap="http://schemas.microsoft.com/appx/manifest/foundation/windows10/windowscapabilities"
  IgnorableNamespaces="uap">

  <Identity
    Name="DesktopView"
    Publisher="CN=Microsoft Windows, O=Microsoft Corporation, L=Redmond, S=Washington, C=US"
    Version="10.0.22621.1" 
    ResourceId="neutral" />

  <Properties>
    <DisplayName>ms-resource:DisplayName</DisplayName>
    <Description>ms-resource:Description</Description>
    <Logo>Assets\Images\StoreLogo.png</Logo>
    <PublisherDisplayName>ms-resource:PublisherDisplayName</PublisherDisplayName>
  </Properties>

  <Resources>
    <Resource Language="en-us" />
  </Resources>
  
  <Dependencies>
    <TargetDeviceFamily Name="Windows.Desktop" MinVersion="10.0.0.0" MaxVersionTested="10.0.0.0" />
  </Dependencies>

  <Applications>
    <Application Id="DesktopView" Executable="DesktopView.exe" EntryPoint="DesktopView.App">
      <uap:VisualElements 
        DisplayName="ms-resource:DisplayName" 
        Description="ms-resource:Description" 
        Square150x150Logo="Assets\Images\Square150x150Logo.scale-200.png"
        Square44x44Logo="Assets\Images\Square44x44Logo.scale-200.png"
        BackgroundColor="transparent"
        AppListEntry="none">
          <uap:DefaultTile>
            <uap:ShowNameOnTiles>
              <uap:ShowOn Tile="square150x150Logo" />
            </uap:ShowNameOnTiles>
          </uap:DefaultTile>
          <uap:SplashScreen Image="Assets\Images\SplashScreen.png" />
      </uap:VisualElements>

      <Extensions>
        <uap:Extension Category="windows.protocol">
          <uap:Protocol Name="ms-duplicate-desktop">
            <uap:DisplayName>Desktop View URI Scheme</uap:DisplayName>
          </uap:Protocol>
        </uap:Extension>
      </Extensions>
    </Application>
  </Applications>
  <Capabilities>
    <rescap:Capability Name="screenDuplication" />
    <wincap:Capability Name="shellExperience"/>
  </Capabilities>
</Package>