﻿<?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:uap10="http://schemas.microsoft.com/appx/manifest/uap/windows10/10"
  xmlns:uap12="http://schemas.microsoft.com/appx/manifest/uap/windows10/12"
  xmlns:printsupport="http://schemas.microsoft.com/appx/manifest/printsupport/windows10"
  xmlns:printsupport2="http://schemas.microsoft.com/appx/manifest/printsupport/windows10/2"
  IgnorableNamespaces="uap uap12 mp printsupport printsupport2">

  <Identity
    Name="dd5de805-d9bb-4785-88e9-399cbff2130e"
    Publisher="CN=wangwf"
    Version="1.0.0.0" />

  <mp:PhoneIdentity PhoneProductId="dd5de805-d9bb-4785-88e9-399cbff2130e" PhonePublisherId="00000000-0000-0000-0000-000000000000"/>

  <Properties>
    <DisplayName>PrintSupportApp</DisplayName>
    <PublisherDisplayName>Microsoft</PublisherDisplayName>
    <Logo>Assets\StoreLogo.png</Logo>
  </Properties>

  <Dependencies>
    <TargetDeviceFamily Name="Windows.Universal" MinVersion="10.0.0.0" MaxVersionTested="10.0.0.0" />
  </Dependencies>

  <Resources>
    <Resource Language="x-generate"/>
  </Resources>

  <Applications>
    <Application Id="App"
      Executable="$targetnametoken$.exe"
      EntryPoint="PrintSupportApp.App"
      uap10:SupportsMultipleInstances="true">
      <uap:VisualElements
        DisplayName="PrintSupportApp"
        Square150x150Logo="Assets\Square150x150Logo.png"
        Square44x44Logo="Assets\Square44x44Logo.png"
        Description="PrintSupportApp"
        BackgroundColor="transparent">
        <uap:DefaultTile Wide310x150Logo="Assets\Wide310x150Logo.png"/>
        <uap:SplashScreen Image="Assets\SplashScreen.png" />
      </uap:VisualElements>
      <Extensions>
		<printsupport2:Extension Category="windows.printSupportVirtualPrinterWorkflow" EntryPoint="Tasks.PrintSupportWorkflowBackgroundTask">
			<printsupport2:PrintSupportVirtualPrinter DisplayName="PRINTER_NAME1" PreferredInputFormat="application/postscript" OutputFileTypes="ps;pdf" PdcFile="PRINTER_PDC1.xml">
				<printsupport2:SupportedFormats>
					<printsupport2:SupportedFormat Type="application/postscript" />
					<printsupport2:SupportedFormat Type="application/pdf" MaxVersion="1.7" />
				</printsupport2:SupportedFormats>
			</printsupport2:PrintSupportVirtualPrinter>
		</printsupport2:Extension>
		<printsupport2:Extension Category="windows.printSupportVirtualPrinterWorkflow" EntryPoint="Tasks.PrintSupportWorkflowBackgroundTask">
			<printsupport2:PrintSupportVirtualPrinter DisplayName="PRINTER_NAME2" PreferredInputFormat="application/oxps" OutputFileTypes="pwgr;pdf" PdcFile="PRINTER_PDC2.xml">
				<printsupport2:SupportedFormats>
					<printsupport2:SupportedFormat Type="application/pdf" MaxVersion="1.7" />
				</printsupport2:SupportedFormats>
			</printsupport2:PrintSupportVirtualPrinter>
		</printsupport2:Extension>
        <printsupport:Extension Category="windows.printSupportExtension" EntryPoint="Tasks.PrintSupportExtensionBackGroundTask"/>
        <printsupport:Extension Category="windows.printSupportWorkflow" EntryPoint="Tasks.PrintSupportWorkflowBackgroundTask"/>
        <printsupport:Extension Category="windows.printSupportSettingsUI" EntryPoint="PrintSupportApp.App"/>
        <printsupport:Extension Category="windows.printSupportJobUI" EntryPoint="PrintSupportApp.App"/>
      </Extensions>
    </Application>
  </Applications>

  <Capabilities>
    <Capability Name="privateNetworkClientServer"/>
    <Capability Name="internetClient"/>
    <uap:Capability Name="userAccountInformation"/>
  </Capabilities>
</Package>
