/
githubmirror
/
PowerShell
Обзор
Документация
Войти
/
githubmirror
/
PowerShell
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
assets/AppxManifest.xml
66 строк
3 KB
Dongbo Wang
Fix min-size package and ship localized resources only for MSIX packages (#27725)
29 июл 2026, 21:54
Не верифицирован
29 июл 2026, 21:54
b7cbb7a
Код
Авторство
О чём код?
<?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"/> <Resource Language="cs"/> <Resource Language="de"/> <Resource Language="es"/> <Resource Language="fr"/> <Resource Language="it"/> <Resource Language="ja"/> <Resource Language="ko"/> <Resource Language="pl"/> <Resource Language="pt-BR"/> <Resource Language="ru"/> <Resource Language="tr"/> <Resource Language="zh-Hans"/> <Resource Language="zh-Hant"/> </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="appLicensing" /> <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>