> ## Documentation Index
> Fetch the complete documentation index at: https://devdocs.xbox.com/llms.txt
> Use this file to discover all available pages before exploring further.

# <Package> element

> <Package> element

Specifies a *package*, which is a collection of chunks that make up a complete installation of a title.

<a id="syntaxSection" />

## Syntax

```xml theme={null}
<Package >
</Package>  
```

<a id="remarks" />

## Remarks

The source paths that are specified in the `FileGroup` element aren't recursive. Every directory to be included must be specified in its own `FileGroup` element.

<a id="ID4E5" />

## Information on elements

| Relationship   | Element name                                                                       |
| -------------- | ---------------------------------------------------------------------------------- |
| Parent element | None                                                                               |
| Child element  | [Chunk](/build/core-features/common/packaging/deployment/deployment-element-chunk) |

<a id="ID4EKB" />

## Example

```xml theme={null}
<Package>
  <Chunk Id="1000" Marker="Launch">
    <FileGroup DestinationPath="\" SourcePath="X:\bin" Include="*.*"/>
  </Chunk>
  <Chunk Id="1001">
    <FileGroup DestinationPath="\Data\Maps" SourcePath="Y:\Maps\Level1" Include="*.map"/>
    <FileGroup DestinationPath="\Data\Maps" SourcePath="Y:\Maps\Level2" Include="*.map"/>
    <FileGroup DestinationPath="\Data\Maps" SourcePath="Y:\Maps\Level3" Include="*.map"/>
    <FileGroup DestinationPath="\Data\Maps" SourcePath="W:\ExtraMaps" Include="*.map"/>
    <FileGroup DestinationPath="\Data\Textures" SourcePath="M:\MapTextures" Include="*.png"/>
    <FileGroup DestinationPath="\Data\Textures" SourcePath="W:\ExtraMapTextures" Include="*.png"/>
  </Chunk>
</Package>  
```

## See also

[Deployment package schema](/build/core-features/common/packaging/deployment/atoc-deployment-schema)


## Related topics

- [Deployment package schema and streaming install tools](/build/core-features/common/packaging/deployment/index.md)
- [MicrosoftGame.config Element - MainPackageDependency](/reference/system/microsoftgameconfig/elements/microsoftgameconfig-element-mainpackagedependency.md)
- [MicrosoftGame.config Element - EnableWritesToPackageRoot (DEPRECATED)](/reference/system/microsoftgameconfig/elements/microsoftgameconfig-element-enablewritestopackageroot.md)
- [<Chunk> element](/build/core-features/common/packaging/deployment/deployment-element-chunk.md)
- [<FileGroup> element](/build/core-features/common/packaging/deployment/deployment-element-filegroup.md)
