SPIncludeVersions Simple Type (DeploymentExportSettings)

Applies to: SharePoint 2016 | SharePoint Foundation 2013 | SharePoint Online | SharePoint Server 2013

Provides values for the IncludeVersions attribute on the ExportSettings Element (DeploymentExportSettings).

Definition

<xs:simpleType name="SPIncludeVersions">
        <xs:restriction base="xs:string">
                <xs:enumeration value="LastMajor" />
                <xs:enumeration value="CurrentVersion" />
                <xs:enumeration value="LastMajorAndMinor" />
                <xs:enumeration value="All" />
        </xs:restriction>
</xs:simpleType>

Enumeration values

Value Description
LastMajor
Specifies the last major version of the export object.
CurrentVersion
Specifies the current version of the export object.
LastMajorAndMinor
Specifies the version of the export object using both major and minor version numbers.
All
Specifies that all available versions of the export object will be included.

Remarks

The value of the SPIncludeVersions simple type specifies which export object version to include in the content migration package.

See also