| <?xml version="1.0" encoding="utf-8"?> |
|
|
| <Package IgnorableNamespaces="uap mp rescap desktop6" |
| 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:uap3="http://schemas.microsoft.com/appx/manifest/uap/windows10/3" |
| xmlns:desktop="http://schemas.microsoft.com/appx/manifest/desktop/windows10" |
| xmlns:desktop6="http://schemas.microsoft.com/appx/manifest/desktop/windows10/6" |
| xmlns:rescap="http://schemas.microsoft.com/appx/manifest/foundation/windows10/restrictedcapabilities"> |
|
|
| <Identity Name="Microsoft.$PRODUCTNAME$" ProcessorArchitecture="$ARCH$" Publisher="$PUBLISHER$" Version="$VERSION$" /> |
|
|
| <Properties> |
| <DisplayName>$DISPLAYNAME$</DisplayName> |
| <PublisherDisplayName>Microsoft Corporation</PublisherDisplayName> |
| <Logo>assets\StoreLogo.png</Logo> |
| <desktop6:RegistryWriteVirtualization>disabled</desktop6:RegistryWriteVirtualization> |
| <desktop6:FileSystemWriteVirtualization>disabled</desktop6:FileSystemWriteVirtualization> |
| </Properties> |
|
|
| <Dependencies> |
| <TargetDeviceFamily Name="Windows.Universal" MinVersion="10.0.17763.0" MaxVersionTested="10.0.18362.0" /> |
| </Dependencies> |
|
|
| <Resources> |
| <Resource Language="en-us"/> |
| </Resources> |
|
|
| <Applications> |
| <Application Id="App" Executable="pwsh.exe" EntryPoint="Windows.FullTrustApplication"> |
| <Extensions> |
| <uap3:Extension Category="windows.appExecutionAlias" EntryPoint="Windows.FullTrustApplication" Executable="pwsh.exe"> |
| <uap3:AppExecutionAlias> |
| <desktop:ExecutionAlias Alias="pwsh.exe" /> |
| </uap3:AppExecutionAlias> |
| </uap3:Extension> |
| </Extensions> |
| <uap:VisualElements DisplayName="$DISPLAYNAME$" Description="PowerShell is an automation and configuration management platform. It consists of a cross-platform (Windows, Linux, and macOS) command-line shell and associated scripting language." BackgroundColor="transparent" Square150x150Logo="assets\Square150x150Logo.png" Square44x44Logo="assets\Square44x44Logo.png"> |
| </uap:VisualElements> |
| </Application> |
| </Applications> |
|
|
| <Capabilities> |
| <Capability Name="internetClient" /> |
| <rescap:Capability Name="runFullTrust" /> |
| <rescap:Capability Name="unvirtualizedResources" /> |
| <rescap:Capability Name="packageManagement" /> |
| <rescap:Capability Name="packageQuery" /> |
| </Capabilities> |
| <mp:PhoneIdentity PhoneProductId="$PHONEPRODUCTID$" PhonePublisherId="95d94207-0c7c-47ed-82db-d75c81153c35" /> |
| </Package> |
|
|