From 9f012200dc2e95978fe4459536c00fc199e814ad Mon Sep 17 00:00:00 2001 From: Mole Date: Mon, 15 Feb 2021 12:54:13 +0100 Subject: [PATCH] Align namespaces in Sync to Umbraco.Cms.Infrastructure --- .../DependencyInjection/UmbracoBuilder.DistributedCache.cs | 2 +- .../Sync/BatchedDatabaseServerMessenger.cs | 2 +- src/Umbraco.Infrastructure/Sync/DatabaseServerMessenger.cs | 2 +- src/Umbraco.Infrastructure/Sync/RefreshInstruction.cs | 2 +- src/Umbraco.Infrastructure/Sync/RefreshInstructionEnvelope.cs | 2 +- src/Umbraco.Infrastructure/Sync/ServerMessengerBase.cs | 2 +- .../Umbraco.Infrastructure/Scoping/ScopedRepositoryTests.cs | 2 +- .../Umbraco.Infrastructure/Services/ContentEventsTests.cs | 2 +- src/Umbraco.Tests/Scoping/ScopedXmlTests.cs | 2 +- 9 files changed, 9 insertions(+), 9 deletions(-) diff --git a/src/Umbraco.Infrastructure/DependencyInjection/UmbracoBuilder.DistributedCache.cs b/src/Umbraco.Infrastructure/DependencyInjection/UmbracoBuilder.DistributedCache.cs index 5a8c0fe7d8..eb0be3e164 100644 --- a/src/Umbraco.Infrastructure/DependencyInjection/UmbracoBuilder.DistributedCache.cs +++ b/src/Umbraco.Infrastructure/DependencyInjection/UmbracoBuilder.DistributedCache.cs @@ -7,7 +7,7 @@ using Umbraco.Cms.Core.PublishedCache; using Umbraco.Cms.Core.Services.Changes; using Umbraco.Cms.Core.Sync; using Umbraco.Cms.Infrastructure.Search; -using Umbraco.Core.Sync; +using Umbraco.Cms.Infrastructure.Sync; using Umbraco.Extensions; namespace Umbraco.Cms.Infrastructure.DependencyInjection diff --git a/src/Umbraco.Infrastructure/Sync/BatchedDatabaseServerMessenger.cs b/src/Umbraco.Infrastructure/Sync/BatchedDatabaseServerMessenger.cs index 56d2fcb1f0..96bdeea82d 100644 --- a/src/Umbraco.Infrastructure/Sync/BatchedDatabaseServerMessenger.cs +++ b/src/Umbraco.Infrastructure/Sync/BatchedDatabaseServerMessenger.cs @@ -15,7 +15,7 @@ using Umbraco.Cms.Core.Web; using Umbraco.Cms.Infrastructure.Persistence.Dtos; using Umbraco.Extensions; -namespace Umbraco.Core.Sync +namespace Umbraco.Cms.Infrastructure.Sync { /// /// An implementation that works by storing messages in the database. diff --git a/src/Umbraco.Infrastructure/Sync/DatabaseServerMessenger.cs b/src/Umbraco.Infrastructure/Sync/DatabaseServerMessenger.cs index 9e6c85e2f2..92bd732246 100644 --- a/src/Umbraco.Infrastructure/Sync/DatabaseServerMessenger.cs +++ b/src/Umbraco.Infrastructure/Sync/DatabaseServerMessenger.cs @@ -22,7 +22,7 @@ using Umbraco.Cms.Infrastructure.Persistence; using Umbraco.Cms.Infrastructure.Persistence.Dtos; using Umbraco.Extensions; -namespace Umbraco.Core.Sync +namespace Umbraco.Cms.Infrastructure.Sync { /// /// An that works by storing messages in the database. diff --git a/src/Umbraco.Infrastructure/Sync/RefreshInstruction.cs b/src/Umbraco.Infrastructure/Sync/RefreshInstruction.cs index 6cc5aeb188..ec6ffd0ed8 100644 --- a/src/Umbraco.Infrastructure/Sync/RefreshInstruction.cs +++ b/src/Umbraco.Infrastructure/Sync/RefreshInstruction.cs @@ -5,7 +5,7 @@ using Newtonsoft.Json; using Umbraco.Cms.Core.Cache; using Umbraco.Cms.Core.Sync; -namespace Umbraco.Core.Sync +namespace Umbraco.Cms.Infrastructure.Sync { [Serializable] public class RefreshInstruction diff --git a/src/Umbraco.Infrastructure/Sync/RefreshInstructionEnvelope.cs b/src/Umbraco.Infrastructure/Sync/RefreshInstructionEnvelope.cs index 3e1d6eb9dd..6dc6fea279 100644 --- a/src/Umbraco.Infrastructure/Sync/RefreshInstructionEnvelope.cs +++ b/src/Umbraco.Infrastructure/Sync/RefreshInstructionEnvelope.cs @@ -2,7 +2,7 @@ using Umbraco.Cms.Core.Cache; using Umbraco.Cms.Core.Sync; -namespace Umbraco.Core.Sync +namespace Umbraco.Cms.Infrastructure.Sync { /// /// Used for any 'Batched' instances which specifies a set of targeting a collection of diff --git a/src/Umbraco.Infrastructure/Sync/ServerMessengerBase.cs b/src/Umbraco.Infrastructure/Sync/ServerMessengerBase.cs index 5a43da18d9..536d1d9aa0 100644 --- a/src/Umbraco.Infrastructure/Sync/ServerMessengerBase.cs +++ b/src/Umbraco.Infrastructure/Sync/ServerMessengerBase.cs @@ -7,7 +7,7 @@ using Umbraco.Cms.Core; using Umbraco.Cms.Core.Cache; using Umbraco.Cms.Core.Sync; -namespace Umbraco.Core.Sync +namespace Umbraco.Cms.Infrastructure.Sync { /// /// Provides a base class for all implementations. diff --git a/src/Umbraco.Tests.Integration/Umbraco.Infrastructure/Scoping/ScopedRepositoryTests.cs b/src/Umbraco.Tests.Integration/Umbraco.Infrastructure/Scoping/ScopedRepositoryTests.cs index 72aee8f9be..f039046675 100644 --- a/src/Umbraco.Tests.Integration/Umbraco.Infrastructure/Scoping/ScopedRepositoryTests.cs +++ b/src/Umbraco.Tests.Integration/Umbraco.Infrastructure/Scoping/ScopedRepositoryTests.cs @@ -14,9 +14,9 @@ using Umbraco.Cms.Core.Services; using Umbraco.Cms.Core.Sync; using Umbraco.Cms.Core.Web; using Umbraco.Cms.Infrastructure.Services.Implement; +using Umbraco.Cms.Infrastructure.Sync; using Umbraco.Cms.Tests.Common.Testing; using Umbraco.Cms.Tests.Integration.Testing; -using Umbraco.Core.Sync; namespace Umbraco.Cms.Tests.Integration.Umbraco.Infrastructure.Scoping { diff --git a/src/Umbraco.Tests.Integration/Umbraco.Infrastructure/Services/ContentEventsTests.cs b/src/Umbraco.Tests.Integration/Umbraco.Infrastructure/Services/ContentEventsTests.cs index 46344b2827..c26d2e0e7b 100644 --- a/src/Umbraco.Tests.Integration/Umbraco.Infrastructure/Services/ContentEventsTests.cs +++ b/src/Umbraco.Tests.Integration/Umbraco.Infrastructure/Services/ContentEventsTests.cs @@ -13,10 +13,10 @@ using Umbraco.Cms.Core.Models; using Umbraco.Cms.Core.Sync; using Umbraco.Cms.Core.Web; using Umbraco.Cms.Infrastructure.Persistence.Repositories.Implement; +using Umbraco.Cms.Infrastructure.Sync; using Umbraco.Cms.Tests.Common.Builders; using Umbraco.Cms.Tests.Common.Testing; using Umbraco.Cms.Tests.Integration.Testing; -using Umbraco.Core.Sync; using Umbraco.Extensions; using Constants = Umbraco.Cms.Core.Constants; diff --git a/src/Umbraco.Tests/Scoping/ScopedXmlTests.cs b/src/Umbraco.Tests/Scoping/ScopedXmlTests.cs index 2622e1a55f..adcfc4cd1c 100644 --- a/src/Umbraco.Tests/Scoping/ScopedXmlTests.cs +++ b/src/Umbraco.Tests/Scoping/ScopedXmlTests.cs @@ -14,8 +14,8 @@ using Umbraco.Cms.Core.Services; using Umbraco.Cms.Core.Sync; using Umbraco.Cms.Core.Web; using Umbraco.Cms.Infrastructure.Services.Implement; +using Umbraco.Cms.Infrastructure.Sync; using Umbraco.Cms.Tests.Common.Testing; -using Umbraco.Core.Sync; using Umbraco.Extensions; using Umbraco.Tests.LegacyXmlPublishedCache; using Umbraco.Tests.TestHelpers;