/
githubmirror
/
PowerShell
Обзор
Документация
Войти
/
githubmirror
/
PowerShell
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
v7.4.13
assets/AppxManifest.xml
51 строка
2 KB
Steve Lee
Add `AppX` capabilities in MSIX manifest so that PS7 can call the `AppX` APIs (#17416)
24 май 2022, 00:58
Не верифицирован
24 май 2022, 00:58
da6fde0
Код
Авторство
О чём код?
<?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> </Package>