<?xml version="1.0" encoding="utf-8"?>
<!--This is a dummy manifest file only used to create our resource (PRI) file.  The information here isn't actually used.-->
<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:wincap="http://schemas.microsoft.com/appx/manifest/foundation/windows10/windowscapabilities"
         xmlns:uap5="http://schemas.microsoft.com/appx/manifest/uap/windows10/5">
  <Identity
    Name="Microsoft.Windows.DevicesFlowHost"
    Publisher="CN=Microsoft Windows, O=Microsoft Corporation, L=Redmond, S=Washington, C=US"
    Version="10.0.22621.1"
    ResourceId="neutral" />

  <mp:PhoneIdentity
    PhoneProductId="33b9ac95-3363-43ee-a251-4b529bf76c52"
    PhonePublisherId="00000000-0000-0000-0000-000000000000" />

  <Properties>
    <DisplayName>ms-resource:DisplayName</DisplayName>
    <Description>ms-resource:Description</Description>
    <Logo>images\logo.png</Logo>
    <PublisherDisplayName>ms-resource:PublisherDisplayName</PublisherDisplayName>
  </Properties>

  <Dependencies>
    <TargetDeviceFamily Name="Windows.Universal"
        MinVersion="10.0.0.0"
        MaxVersionTested="10.0.0.0"/>
  </Dependencies>

  <Resources>
    <Resource Language="en-us"/>
  </Resources>

  <Applications>
    <Application
      Id="Microsoft.Windows.DevicesFlowHost"
      Executable="DevicesFlowHost.exe"
      EntryPoint="AppObject.EntryPoint">
      <uap:VisualElements
        DisplayName="ms-resource:DisplayName"
        Description="ms-resource:Description"
        Square150x150Logo="Assets\Logo.png"
        Square44x44Logo="Assets\SmallLogo.png"
        BackgroundColor="transparent"
        AppListEntry="none">
          <uap:SplashScreen Image="Assets\SplashScreen.png" BackgroundColor="#1F1F1F" uap5:Optional="true"/>
      </uap:VisualElements>
      <Extensions>
      </Extensions>
    </Application>
  </Applications>

</Package>
