Merge branch 'netcore/feature/align-namespaces' into netcore/feature/align-infrastructure-namespaces

This commit is contained in:
Mole
2021-02-15 15:48:09 +01:00
11 changed files with 23 additions and 38 deletions

View File

@@ -22,10 +22,10 @@ namespace Umbraco.Cms.Infrastructure.Search
// populators are not a collection: one cannot remove ours, and can only add more
// the container can inject IEnumerable<IIndexPopulator> and get them all
builder.Services.AddSingleton<MemberIndexPopulator>();
builder.Services.AddSingleton<ContentIndexPopulator>();
builder.Services.AddSingleton<PublishedContentIndexPopulator>();
builder.Services.AddSingleton<MediaIndexPopulator>();
builder.Services.AddSingleton<IIndexPopulator, MemberIndexPopulator>();
builder.Services.AddSingleton<IIndexPopulator, ContentIndexPopulator>();
builder.Services.AddSingleton<IIndexPopulator, PublishedContentIndexPopulator>();
builder.Services.AddSingleton<IIndexPopulator, MediaIndexPopulator>();
builder.Services.AddSingleton<IndexRebuilder>();
builder.Services.AddUnique<IUmbracoIndexConfig, UmbracoIndexConfig>();