<?xml version="1.0"?>
<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"
         xmlns:uap4="http://schemas.microsoft.com/appx/manifest/uap/windows10/4"
         xmlns:uap10="http://schemas.microsoft.com/appx/manifest/uap/windows10/10"
         xmlns:rescap="http://schemas.microsoft.com/appx/manifest/foundation/windows10/restrictedcapabilities"
         xmlns:desktop="http://schemas.microsoft.com/appx/manifest/desktop/windows10"
         IgnorableNamespaces="uap3">
  <Identity Name="Microsoft.MicrosoftEdge.Stable" Version="146.0.3856.109" Publisher="CN=Microsoft Corporation, O=Microsoft Corporation, L=Redmond, S=Washington, C=US"/>
  <Dependencies>
    <TargetDeviceFamily Name="Windows.Universal" MinVersion="10.0.19041.0" MaxVersionTested="10.0.19041.0"/>
    <TargetDeviceFamily Name="Windows.Desktop" MinVersion="10.0.19041.0" MaxVersionTested="10.0.19041.0"/>
  </Dependencies>
  <Properties>
    <DisplayName>Microsoft Edge</DisplayName>
    <Description>Microsoft Edge Browser</Description>
    <Logo>Logo.png</Logo>
    <PublisherDisplayName>Microsoft Corporation</PublisherDisplayName>
    <uap10:AllowExternalContent>true</uap10:AllowExternalContent>
  </Properties>
  <Resources>
    <Resource Language="en-us"/>
  </Resources>
  <Applications>
    <Application Id="App"
        Executable="msedge_proxy.exe"
        uap10:RuntimeBehavior="win32App"
        uap10:TrustLevel="mediumIL">
      <uap:VisualElements AppListEntry="none"
                          DisplayName="Microsoft Edge"
                          Description="Microsoft Edge Browser"
                          BackgroundColor="#777777"
                          Square150x150Logo="Logo.png"
                          Square44x44Logo="SmallLogo.png">
      </uap:VisualElements>
      <Extensions>
        <desktop:Extension Category="windows.toastNotificationActivation">
          <desktop:ToastNotificationActivation ToastActivatorCLSID="628ACE20-B77A-456F-A88D-547DB6CEEDD5" />
        </desktop:Extension>
        <uap3:Extension Category="windows.appExtension">
          <uap3:AppExtension
            Name="com.microsoft.windows.ai.actions"
            Id="Microsoft.MicrosoftEdge.Stable"
            DisplayName="Web App Action Host App"
            PublicFolder="Assets">
            <uap3:Properties>
              <MinSupportedWindowsActionSchema>1</MinSupportedWindowsActionSchema>
              <MaxSupportedWindowsActionSchema>2</MaxSupportedWindowsActionSchema>
            </uap3:Properties>
          </uap3:AppExtension>
        </uap3:Extension>
      </Extensions>
    </Application>
  </Applications>
  <Extensions>
    <uap10:Extension Category="windows.hostRuntime"
                     Executable="pwahelper.exe"
                     uap10:RuntimeBehavior="win32App"
                     uap10:TrustLevel="mediumIL">
      <uap10:HostRuntime Id="PWA"/>
    </uap10:Extension>
  </Extensions>
  <Capabilities>
    <rescap:Capability Name="runFullTrust"/>
    <rescap:Capability Name="packageManagement"/>
    <rescap:Capability Name="unvirtualizedResources"/>
    
  </Capabilities>
</Package>
