﻿<?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:uap3="http://schemas.microsoft.com/appx/manifest/uap/windows10/3"
	IgnorableNamespaces="uap3">
	<Identity 
		Name="INSERT-YOUR-PACKAGE-IDENTITY-NAME-HERE" 
		Publisher="CN=INSERT-YOUR-PACKAGE-IDENTITY-PUBLISHER-HERE" 
		Version="{Version}" /> <!-- UPDATE IDENTITY -->

	<Properties> 
		<DisplayName>{DisplayName}</DisplayName> 
		<PublisherDisplayName>INSERT-YOUR-PACKAGE-PROPERTIES-PUBLISHERDISPLAYNAME-HERE</PublisherDisplayName> <!-- UPDATE PUBLISHER DISPLAY NAME -->
		<Logo>Assets\StoreLogo.png</Logo> 
	</Properties> 

	<Dependencies> 
		<TargetDeviceFamily Name="Windows.Desktop" MinVersion="10.0.15063.0" MaxVersionTested="10.0.15063.0" />
	</Dependencies> 

	<Resources>
		{Resources}
	</Resources> 

	<Applications> 
		<Application Id="App">
			<uap:VisualElements
				AppListEntry="none"
				DisplayName="{DisplayName}"
				Square150x150Logo="Assets\Square150x150Logo.png"
        		Square44x44Logo="Assets\Square44x44Logo.png"
				Description="{Description}"
				BackgroundColor="transparent">
			</uap:VisualElements>
			<Extensions>
				<uap3:Extension Category="windows.appExtension">
					<uap3:AppExtension
						Name="com.microsoft.edge.extension"
						Id="EdgeExtension"
						PublicFolder="Extension"
						DisplayName="{DisplayName}">
						<uap3:Properties>
							<Capabilities>
								{Capabilities}
							</Capabilities>
						</uap3:Properties>
					</uap3:AppExtension>
				</uap3:Extension>
			</Extensions>
		</Application> 
	</Applications>
</Package>