Package.appxmanifest (1816B)
1 <?xml version="1.0" encoding="utf-8"?> 2 3 <Package 4 xmlns="http://schemas.microsoft.com/appx/manifest/foundation/windows10" 5 xmlns:uap="http://schemas.microsoft.com/appx/manifest/uap/windows10" 6 xmlns:rescap="http://schemas.microsoft.com/appx/manifest/foundation/windows10/restrictedcapabilities" 7 IgnorableNamespaces="uap rescap"> 8 9 <Identity 10 Name="6c6338fe-41b7-46ca-8ba6-b5ad5312bb0e" 11 Publisher="CN=Microsoft Corporation, O=Microsoft Corporation, L=Redmond, S=Washington, C=US" 12 Version="1.0.0.0" /> 13 14 <Properties> 15 <DisplayName>AppInstallerTestMsixInstaller</DisplayName> 16 <PublisherDisplayName>AppInstallerTest</PublisherDisplayName> 17 <Logo>Images\StoreLogo.png</Logo> 18 </Properties> 19 20 <Dependencies> 21 <TargetDeviceFamily Name="Windows.Universal" MinVersion="10.0.0.0" MaxVersionTested="10.0.0.0" /> 22 <TargetDeviceFamily Name="Windows.Desktop" MinVersion="10.0.14393.0" MaxVersionTested="10.0.14393.0" /> 23 </Dependencies> 24 25 <Resources> 26 <Resource Language="x-generate"/> 27 </Resources> 28 29 <Applications> 30 <Application Id="App" 31 Executable="$targetnametoken$.exe" 32 EntryPoint="$targetentrypoint$"> 33 <uap:VisualElements 34 DisplayName="AppInstallerTestMsixInstaller" 35 Description="AppInstallerTestMsixInstaller" 36 BackgroundColor="transparent" 37 Square150x150Logo="Images\Square150x150Logo.png" 38 Square44x44Logo="Images\Square44x44Logo.png"> 39 <uap:DefaultTile Wide310x150Logo="Images\Wide310x150Logo.png" /> 40 <uap:SplashScreen Image="Images\SplashScreen.png" /> 41 </uap:VisualElements> 42 </Application> 43 </Applications> 44 45 <Capabilities> 46 <Capability Name="internetClient" /> 47 <rescap:Capability Name="runFullTrust" /> 48 </Capabilities> 49 </Package>