Skip to content

Commit 37ab97d

Browse files
authored
Apply suggestions to 14
1 parent 049bcbd commit 37ab97d

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

14/umbraco-deploy/deployment-workflow/import-export-v7.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@ description: How to export content and schema from Umbraco 7 and import into a n
55

66
### Migrating from Umbraco 7
77

8-
The import and export features are available for Umbraco Deploy supporting Umbraco 8 and above. It's not been ported back to Umbraco 7, hence you cannot trigger an export from the backoffice or using the service.
8+
The import and export features are available for Umbraco Deploy supporting Umbraco 8 and above. It's not been ported back to Umbraco 7, hence you cannot trigger an export from the backoffice or use the service.
99

10-
However, we can still use this feature to help migrate from Umbraco 7 to a supported major version. This requires additional logic to be added to your Umbraco 7 project to create an export ZIP archive similar to newer versions.
10+
However, you can still use this feature to help migrate from Umbraco 7 to a supported major version. This requires adding additional logic to your Umbraco 7 project to create an export ZIP archive similar to newer versions.
1111

1212
#### Exporting Umbraco 7 content and schema
1313

14-
We can generate an export archive in the same format as used by the import/export feature. This is done by adding the [`Umbraco.Deploy.Contrib.Export` assembly](https://github.com/umbraco/Umbraco.Deploy.Contrib/releases/tag/release-2.0.0-export) to your Umbraco 7 project (that already has Deploy and Deploy Contrib installed, see below). This archive can then be imported into a newer Umbraco version by configuring the legacy import migrators. You can also apply additional migrators to update obsolete data types and property data into newer equivalents.
14+
You can generate an export archive in the same format as the import/export feature. This is done by adding the [`Umbraco.Deploy.Contrib.Export` assembly](https://github.com/umbraco/Umbraco.Deploy.Contrib/releases/tag/release-2.0.0-export) to your Umbraco 7 project (that already has Deploy and Deploy Contrib installed, see below). This archive can be imported into a newer Umbraco version by configuring the legacy import migrators. You can also apply additional migrators to update obsolete data types and property data into newer equivalents.
1515

1616
This is possible via code, by temporarily applying a composer to an Umbraco 7 project to generate the export archive on start-up:
1717

@@ -152,7 +152,7 @@ internal class LegacyImportComposer : IComposer
152152
.Append<ElementTypeArtifactMigrator>();
153153

154154
builder.DeployPropertyTypeMigrators()
155-
.AddLegacyMigrators(); // Available since Deploy Contrib 13.3.0 and 14.2.0+
155+
.AddLegacyMigrators(); // Available from Deploy Contrib 13.3.0 and 14.2.0+
156156
}
157157

158158
private class ElementTypeArtifactMigrator : ElementTypeArtifactMigratorBase
@@ -176,7 +176,7 @@ Umbraco Deploy for Umbraco 7 is no longer supported and was only available on Um
176176

177177
As such if you are looking to migrate from an Umbraco Cloud project running on Umbraco 7, you already have Umbraco Deploy installed.
178178

179-
If you have an Umbraco 7 on-premises website, you can use this guide to migrate from on-premises to Umbraco Cloud. Or to upgrade to a newer Deploy On-premises version. You will need to obtain and install Umbraco Deploy for Umbraco 7 into your project, solely to use the export feature.
179+
If you have an Umbraco 7 on-premises website, you can use this guide to migrate from on-premises to Umbraco Cloud. Or to upgrade to a newer Deploy On-premises version. You need to obtain and install Umbraco Deploy for Umbraco 7 into your project, solely to use the export feature.
180180

181181
The export feature can be used without a license.
182182

@@ -229,4 +229,4 @@ Use this guide to migrate from on-premises to Umbraco Cloud or to upgrade to a n
229229

230230
4. Export Content.
231231

232-
- **Export** your content, schema, and files to zip.
232+
- **Export** your content, schema, and files to zip.

0 commit comments

Comments
 (0)