<mx:ContentPackage> Element

Indicates the application manifest is for downloadable content as a child of Properties. Contains information on the downloadable package as a child of <mx:PackageExtension Category=”xbox.contentpackage”>.

This element is required for downloadable content packages.

Syntax

<mx:ContentPackage >
</mx:ContentPackage>  

Element information

Parent elements Properties, <mx:PackageExtension Category=”xbox.contentpackage”>
Child elements mx:AllowedProduct, mx:ContentPackageVisualElements

Example

<?xml version="1.0" encoding="utf-8"?>
<Package xmlns="http://schemas.microsoft.com/appx/2010/manifest"
         xmlns:mx="http://schemas.microsoft.com/appx/2013/xbox/manifest"
         IgnorableNamespaces="mx">

  <Identity Name="MarbleMaze.DLC.Eyeball"
            Publisher="CN=Microsoft Corporation, O=Microsoft Corporation, L=Redmond, S=Washington, C=US"
            Version="1.0.0.0" />

  <Properties>
    <DisplayName>Eyeball Marble DLC</DisplayName>
    <PublisherDisplayName>Microsoft Corporation</PublisherDisplayName>
    <Logo>logo.png</Logo>
    <Description>Eyeball Marble DLC for MarbleMaze</Description>
    <mx:ContentPackage>true</mx:ContentPackage>
  </Properties>

  <Prerequisites>
    <OSMinVersion>6.2</OSMinVersion>
    <OSMaxVersionTested>6.2</OSMaxVersionTested>
    <mx:ApplicationEnvironment>title</mx:ApplicationEnvironment>
    <mx:OSName>era</mx:OSName>
  </Prerequisites>

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

  <Extensions>
    <mx:PackageExtension Category="xbox.contentpackage">
      <mx:ContentPackage>
        <mx:AllowedProduct Id="0eafd21d-2911-4be5-95fb-6dc0b50b6152" />
        <mx:ContentPackageVisualElements
            DisplayName="ATG Sample Durable DLC 1"
            Logo="Logo.png"
            SmallLogo="SmallLogo.png"
            WideLogo="WideLogo.png"
            Description="ATG Sample Durable DLC 1"
            ForegroundText="dark"
            BackgroundColor="#000040" />
      </mx:ContentPackage>
    </mx:PackageExtension>
  </Extensions>
</Package>