| 1 | <?xml version="1.0" encoding="utf-8"?> |
| 2 | <Package xmlns="http://schemas.microsoft.com/appx/manifest/foundation/windows10" |
| 3 | xmlns:uap="http://schemas.microsoft.com/appx/manifest/uap/windows10" |
| 4 | xmlns:uap3="http://schemas.microsoft.com/appx/manifest/uap/windows10/3" |
| 5 | xmlns:uap10="http://schemas.microsoft.com/appx/manifest/uap/windows10/10" |
| 6 | xmlns:rescap="http://schemas.microsoft.com/appx/manifest/foundation/windows10/restrictedcapabilities" |
| 7 | xmlns:desktop="http://schemas.microsoft.com/appx/manifest/desktop/windows10" |
| 8 | xmlns:desktop6="http://schemas.microsoft.com/appx/manifest/desktop/windows10/6" |
| 9 | IgnorableNamespaces="uap uap3 uap10 rescap desktop desktop6"> |
| 10 | |
| 11 | <Identity Name="MicrosoftCorporationII.WindowsSubsystemForLinux" Publisher="CN=Microsoft Corporation, O=Microsoft Corporation, L=Redmond, S=Washington, C=US" Version="${PACKAGE_VERSION}" ProcessorArchitecture="${TARGET_PLATFORM}"/> |
| 12 | <Properties> |
| 13 | <DisplayName>ms-resource:AppName</DisplayName> |
| 14 | <PublisherDisplayName>Microsoft Corp.</PublisherDisplayName> |
| 15 | <Logo>Images\StoreLogo.png</Logo> |
| 16 | <desktop6:FileSystemWriteVirtualization>disabled</desktop6:FileSystemWriteVirtualization> |
| 17 | <desktop6:RegistryWriteVirtualization>disabled</desktop6:RegistryWriteVirtualization> |
| 18 | <uap10:PackageIntegrity> |
| 19 | <uap10:Content Enforcement="on"/> |
| 20 | </uap10:PackageIntegrity> |
| 21 | </Properties> |
| 22 | <Dependencies> |
| 23 | <TargetDeviceFamily Name="Windows.Desktop" MinVersion="10.0.19041.0" MaxVersionTested="10.0.26100.0"/> |
| 24 | </Dependencies> |
| 25 | <Resources> |
| 26 | ${SUPPORTED_LANGS_MANIFEST_ENTRIES} |
| 27 | <Resource uap:Scale="200"/> |
| 28 | </Resources> |
| 29 | <Applications> |
| 30 | <Application Id="wsl" |
| 31 | Executable="wsl.exe" |
| 32 | EntryPoint="Windows.FullTrustApplication" |
| 33 | uap10:Parameters="--cd ~"> |
| 34 | <uap:VisualElements |
| 35 | DisplayName="ms-resource:AppName" |
| 36 | Description="ms-resource:AppDescription" |
| 37 | BackgroundColor="transparent" |
| 38 | Square150x150Logo="Images\Square150x150Logo.png" |
| 39 | Square44x44Logo="Images\Square44x44Logo.png" |
| 40 | AppListEntry="none"> |
| 41 | <uap:DefaultTile Wide310x150Logo="Images\Wide310x150Logo.png" ShortName="ms-resource:AppShortName" Square71x71Logo="Images\SmallTile.png" Square310x310Logo="Images\LargeTile.png"/> |
| 42 | <uap:SplashScreen Image="Images\SplashScreen.png"/> |
| 43 | </uap:VisualElements> |
| 44 | <Extensions> |
| 45 | <uap3:Extension Category="windows.appExecutionAlias" Executable="wsl.exe" EntryPoint="Windows.FullTrustApplication"> |
| 46 | <uap3:AppExecutionAlias> |
| 47 | <desktop:ExecutionAlias Alias="bash.exe"/> |
| 48 | <desktop:ExecutionAlias Alias="wsl.exe"/> |
| 49 | <desktop:ExecutionAlias Alias="wslconfig.exe"/> |
| 50 | </uap3:AppExecutionAlias> |
| 51 | </uap3:Extension> |
| 52 | <uap3:Extension Category="windows.appExtension"> |
| 53 | <uap3:AppExtension Name="com.microsoft.windows.wsl" |
| 54 | Id="Wsl-EntryPoint" |
| 55 | DisplayName="WSL entry point" |
| 56 | Description="Entry point for the Windows Subsystem for Linux" |
| 57 | PublicFolder="Public"> |
| 58 | <uap3:Properties> |
| 59 | <Clsid>{a9b7a1b9-0671-405c-95f1-e0612cb4ce7e}</Clsid> |
| 60 | <EntryPoint>wsl.exe</EntryPoint> |
| 61 | </uap3:Properties> |
| 62 | </uap3:AppExtension> |
| 63 | </uap3:Extension> |
| 64 | </Extensions> |
| 65 | </Application> |
| 66 | </Applications> |
| 67 | <Capabilities> |
| 68 | <Capability Name="internetClient"/> |
| 69 | <rescap:Capability Name="runFullTrust"/> |
| 70 | <rescap:Capability Name="unvirtualizedResources"/> |
| 71 | <rescap:Capability Name="localSystemServices"/> |
| 72 | </Capabilities> |
| 73 | </Package> |