<mx:RelatedProduct> Element

Product related to a downloadable content package.

Syntax

<mx:RelatedProduct
  Id = string />  

Attributes

Id
The ID of the related product.

Element information

Parent elements mx:RelatedProducts

Remarks

Each product you want to be related to the downloadable content package needs a separate mx:RelatedProduct element. The sample below would make Marble Maze and the Visual Studio F5 default app deployment (all zeros) related products. The ERA using these nodes in its AppxManifest.xml would then be able to enumerate packages that belong to either product.

Example

<Extensions>
  <mx:PackageExtension Category="xbox.store">
    <mx:XboxStore>
      <mx:RelatedProducts>
        <mx:RelatedProduct Id="0eafd21d-2911-4be5-95fb-6dc0b50b6152" />
        <mx:RelatedProduct Id="00000000-0000-0000-0000-000000000000" />
      </mx:RelatedProducts>
    </mx:XboxStore>
  </mx:PackageExtension>
</Extensions>