Migrate content to Umbraco 15
This article will help you migrate content to Umbraco 15, and outline options to skip this content migration
Parallelizing the content migration
using Umbraco.Cms.Core.Composing;
using Umbraco.Cms.Infrastructure.Migrations.Upgrade.V_15_0_0;
namespace UmbracoDocs.Samples;
public class DisableBlockEditorMigrationComposer : IComposer
{
[Obsolete]
public void Compose(IUmbracoBuilder builder)
=> builder.Services.Configure<ConvertBlockEditorPropertiesOptions>(options =>
{
// setting this to true will parallelize the migration of all Block Editors
options.ParallelizeMigration = true;
});
}Opting out of the content migration
PreviousUpgrade from Umbraco 8 to the latest versionNextMigrate custom Property Editors to Umbraco version 14 and later
Last updated
Was this helpful?