Refactor namespace and project structure

Replaced `DigitalData.MessagingService.Client.DependencyInjection`
namespace with `DigitalData.MessagingService.Client` across the
codebase to simplify and streamline the project structure.

Removed unused `Microsoft.Extensions.Logging` and `System`
dependencies from `EmailSender.cs`. Updated project references
in `DigitalData.MessagingService.Tests.csproj` to reflect the
namespace and project restructuring. Adjusted `using` directives
in test files to align with the new namespace.
This commit is contained in:
2026-07-29 12:35:57 +02:00
parent 868c447a6c
commit d7878d8ff8
7 changed files with 5 additions and 7 deletions

View File

@@ -1,4 +1,4 @@
using DigitalData.MessagingService.Client.DependencyInjection;
using DigitalData.MessagingService.Client;
using DigitalData.MessagingService.Publisher.Abstraction;
namespace DigitalData.MessagingService.Tests.Integration;

View File

@@ -1,4 +1,4 @@
using DigitalData.MessagingService.Client.DependencyInjection;
using DigitalData.MessagingService.Client;
using DigitalData.MessagingService.Publisher.Abstraction;
namespace DigitalData.MessagingService.Tests.Integration;