0
0
mirror of https://github.com/alex289/CleanArchitecture.git synced 2025-06-30 02:31:08 +00:00

More cleanup

This commit is contained in:
Alexander Konietzko 2023-07-01 16:47:39 +02:00
parent 53e0966f51
commit c305529871
No known key found for this signature in database
GPG Key ID: BA6905F37AEC2B5B
4 changed files with 6 additions and 4 deletions

View File

@ -1,6 +1,6 @@
using CleanArchitecture.Domain.DomainEvents;
using Microsoft.EntityFrameworkCore.Metadata.Builders;
using Microsoft.EntityFrameworkCore;
using Microsoft.EntityFrameworkCore.Metadata.Builders;
namespace CleanArchitecture.Infrastructure.Configurations.EventSourcing;

View File

@ -1,6 +1,6 @@
using Microsoft.EntityFrameworkCore.Metadata.Builders;
using CleanArchitecture.Domain.DomainNotifications;
using Microsoft.EntityFrameworkCore;
using CleanArchitecture.Domain.DomainNotifications;
using Microsoft.EntityFrameworkCore.Metadata.Builders;
namespace CleanArchitecture.Infrastructure.Configurations.EventSourcing;

View File

@ -1,6 +1,6 @@
using System.Threading.Tasks;
using CleanArchitecture.Domain.DomainEvents;
using CleanArchitecture.Domain.DomainNotifications;
using System.Threading.Tasks;
using CleanArchitecture.Domain.Notifications;
using CleanArchitecture.Infrastructure.Database;
using Newtonsoft.Json;

View File

@ -6,3 +6,5 @@
using System.Diagnostics.CodeAnalysis;
[assembly: SuppressMessage("Style", "IDE0161:Convert to file-scoped namespace", Justification = "<Pending>", Scope = "namespace", Target = "~N:CleanArchitecture.Infrastructure.Migrations")]
[assembly: SuppressMessage("Style", "IDE0161:Convert to file-scoped namespace", Justification = "<Pending>", Scope = "namespace", Target = "~N:CleanArchitecture.Infrastructure.Migrations.EventStoreDb")]
[assembly: SuppressMessage("Style", "IDE0161:Convert to file-scoped namespace", Justification = "<Pending>", Scope = "namespace", Target = "~N:CleanArchitecture.Infrastructure.Migrations.DomainNotificationStoreDb")]