<Package> Element

The root element of an app package manifest. The manifest describes the structure and capabilities of the software to the system.

This element is required.

Syntax

<Package
  xmlns = string
  xmlns:mx = string
  IgnorableNamespaces = string >
</Package>  

Attributes

xmlns
Points to the application manifest schema. Must be http://schemas.microsoft.com/appx/2010/manifest

xmlns:mx
Points to the Xbox One application manifest schema extensions. Must be http://schemas.microsoft.com/appx/2013/xbox/manifest

IgnorableNamespaces
Declares namespaces used in the manifest that should be ignored. Must be mx.

Element information

Child elements Identity, Properties, Prerequisites, Resources, Applications, Capabilities, Extensions

Example

<Package xmlns="http://schemas.microsoft.com/appx/2010/manifest"
         xmlns:mx="http://schemas.microsoft.com/appx/2013/xbox/manifest"
         IgnorableNamespaces="mx">

  <Identity Name="3701ae0d-33dc-4648-99d5-3811acff6de2"
            Publisher="CN=Publisher"
            Version="1.0.0.0" />

  <Properties>
    <DisplayName>Direct3DGame2</DisplayName>
    <PublisherDisplayName>PublisherDisplayName</PublisherDisplayName>
    <Logo>StoreLogo.png</Logo>
    <Description>Direct3DGame2</Description>
  </Properties>

  <Prerequisites>
    <OSMinVersion>6.2</OSMinVersion>
    <OSMaxVersionTested>6.2</OSMaxVersionTested>
  </Prerequisites>

  <Resources>
    <Resource Language="en-us"/>
  </Resources>

  <Applications>
    <Application Id="App"
      Executable="$targetnametoken$.exe"
      EntryPoint="Direct3DGame2.App">
      <VisualElements
        DisplayName="Direct3DGame2"
        Logo="Logo.png"
        SmallLogo="SmallLogo.png"
        Description="Direct3DGame2"
        ForegroundText="light"
        BackgroundColor="#464646">
        <SplashScreen Image="SplashScreen.png" />
      </VisualElements>
    </Application>
  </Applications>
  
  <Capabilities>
    <Capability Name="internetClientServer" />
  </Capabilities>
  
</Package>