Extensibility point for the app.
This element is optional.
<mx:Extension
Category = string >
</mx:Extension>
Category
The type of app extensibility point. Can be one of the following values:
| Value | Description |
|---|---|
| xbox.live | Used to declare your title’s title ID and service configuration ID. |
| xbox.media.capture | Used to specify whether GameDVR and broadcasting should be disabled. |
| windows.xbox.networking | Used to specify your title’s networking settings. See Specifying the Secure Device Association Templates for your App for more information. |
| xbox.system.resources | Used to specify the usage of the system GPU reserve and 7th processing core. |
| Parent elements | Extensions |
|---|---|
| Child elements | mx:XboxLive (Category=”xbox.live”), mx:XboxMediaCapture (Category=”xbox.media.capture”), mx:XboxNetworkingManifest (Category=”windows.xbox.networking”), mx:XboxSystemResources (Category=”xbox.system.resources”) |
<Extensions>
<mx:Extension Category="xbox.live">
<mx:XboxLive TitleId="your titleID" PrimaryServiceConfigId="your SCID" />
</mx:Extension>
<mx:Extension Category="xbox.media.capture">
<mx:XboxMediaCapture BlockGameDVR="true" BlockBroadcast="true" />
</mx:Extension>
</Extensions>