With this option selected, you can upload an xml file that defines which content types and other custom export features you wish to export with your site, allowing you a repeatable process, and avoiding manual mistakes.
Here is an example of such a file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<Root> | |
<BuildRecipe> | |
<Steps> | |
<Content SchemaContentTypes="" DataContentTypes="PagewithPromotion,Page" VersionHistoryOptions="Published"/> | |
<Feature ExportEnabledFeatures="true" ExportDisabledFeatures="false"/> | |
<Alias /> | |
<CurrentTheme /> | |
<Roles /> | |
<Settings/> | |
<HomeAlias/> | |
</Steps> | |
</BuildRecipe> | |
</Root> |
Note that "PagewithPromotion" is a custom content type that has been added to the site in this example. Unfortunately currently, there is only "inclusive" syntax it appears for listing which content types to export. I'm going to raise an issue for adding "exclude" syntax so that it is easier to say "all content types except bob".
I've constructed this template by looking through the source code. The example works, but there are probably also options I've not spotted, so feel free to explore the code further!