From 56eb6060931f5b9d36ad03c3e2d9a2a7ba425803 Mon Sep 17 00:00:00 2001 From: Luk Vermeulen Date: Sun, 1 Jan 2023 10:03:59 +0100 Subject: [PATCH] fix: fix LastChangedList.Microsoft --- ...ters.ProjectionHandling.LastChangedList.Microsoft.csproj | 4 ++-- .../LastChangedListContext.cs | 1 + .../LastChangedListContextMigrationFactory.cs | 2 +- .../LastChangedListModule.cs | 2 +- .../LastChangedListRunner.cs | 6 +++--- 5 files changed, 8 insertions(+), 7 deletions(-) diff --git a/src/Be.Vlaanderen.Basisregisters.ProjectionHandling.LastChangedList.Microsoft/Be.Vlaanderen.Basisregisters.ProjectionHandling.LastChangedList.Microsoft.csproj b/src/Be.Vlaanderen.Basisregisters.ProjectionHandling.LastChangedList.Microsoft/Be.Vlaanderen.Basisregisters.ProjectionHandling.LastChangedList.Microsoft.csproj index 9280388..2a9403d 100644 --- a/src/Be.Vlaanderen.Basisregisters.ProjectionHandling.LastChangedList.Microsoft/Be.Vlaanderen.Basisregisters.ProjectionHandling.LastChangedList.Microsoft.csproj +++ b/src/Be.Vlaanderen.Basisregisters.ProjectionHandling.LastChangedList.Microsoft/Be.Vlaanderen.Basisregisters.ProjectionHandling.LastChangedList.Microsoft.csproj @@ -7,8 +7,8 @@ - - + + diff --git a/src/Be.Vlaanderen.Basisregisters.ProjectionHandling.LastChangedList.Microsoft/LastChangedListContext.cs b/src/Be.Vlaanderen.Basisregisters.ProjectionHandling.LastChangedList.Microsoft/LastChangedListContext.cs index cc8b30e..8005118 100644 --- a/src/Be.Vlaanderen.Basisregisters.ProjectionHandling.LastChangedList.Microsoft/LastChangedListContext.cs +++ b/src/Be.Vlaanderen.Basisregisters.ProjectionHandling.LastChangedList.Microsoft/LastChangedListContext.cs @@ -4,6 +4,7 @@ namespace Be.Vlaanderen.Basisregisters.ProjectionHandling.LastChangedList.Micros using global::Microsoft.EntityFrameworkCore; using global::Microsoft.EntityFrameworkCore.Design; using Model; + using Runner.Microsoft; public class LastChangedListContext : RunnerDbContext { diff --git a/src/Be.Vlaanderen.Basisregisters.ProjectionHandling.LastChangedList.Microsoft/LastChangedListContextMigrationFactory.cs b/src/Be.Vlaanderen.Basisregisters.ProjectionHandling.LastChangedList.Microsoft/LastChangedListContextMigrationFactory.cs index a98a1fd..7c41733 100644 --- a/src/Be.Vlaanderen.Basisregisters.ProjectionHandling.LastChangedList.Microsoft/LastChangedListContextMigrationFactory.cs +++ b/src/Be.Vlaanderen.Basisregisters.ProjectionHandling.LastChangedList.Microsoft/LastChangedListContextMigrationFactory.cs @@ -1,7 +1,7 @@ namespace Be.Vlaanderen.Basisregisters.ProjectionHandling.LastChangedList.Microsoft { - using Be.Vlaanderen.Basisregisters.ProjectionHandling.Runner; using global::Microsoft.EntityFrameworkCore; + using Runner.Microsoft; public class LastChangedListContextMigrationFactory : RunnerDbContextMigrationFactory { diff --git a/src/Be.Vlaanderen.Basisregisters.ProjectionHandling.LastChangedList.Microsoft/LastChangedListModule.cs b/src/Be.Vlaanderen.Basisregisters.ProjectionHandling.LastChangedList.Microsoft/LastChangedListModule.cs index 2690d40..8d95ed6 100644 --- a/src/Be.Vlaanderen.Basisregisters.ProjectionHandling.LastChangedList.Microsoft/LastChangedListModule.cs +++ b/src/Be.Vlaanderen.Basisregisters.ProjectionHandling.LastChangedList.Microsoft/LastChangedListModule.cs @@ -2,12 +2,12 @@ namespace Be.Vlaanderen.Basisregisters.ProjectionHandling.LastChangedList.Micros { using System; using Be.Vlaanderen.Basisregisters.DataDog.Tracing.Sql.EntityFrameworkCore; - using Runner.MigrationExtensions; using DependencyInjection; using global::Microsoft.Data.SqlClient; using global::Microsoft.EntityFrameworkCore; using global::Microsoft.Extensions.DependencyInjection; using global::Microsoft.Extensions.Logging; + using Runner.Microsoft.MigrationExtensions; public class LastChangedListModule : IServiceCollectionModule { diff --git a/src/Be.Vlaanderen.Basisregisters.ProjectionHandling.LastChangedList.Microsoft/LastChangedListRunner.cs b/src/Be.Vlaanderen.Basisregisters.ProjectionHandling.LastChangedList.Microsoft/LastChangedListRunner.cs index 2caadea..2ca63c7 100644 --- a/src/Be.Vlaanderen.Basisregisters.ProjectionHandling.LastChangedList.Microsoft/LastChangedListRunner.cs +++ b/src/Be.Vlaanderen.Basisregisters.ProjectionHandling.LastChangedList.Microsoft/LastChangedListRunner.cs @@ -1,8 +1,8 @@ namespace Be.Vlaanderen.Basisregisters.ProjectionHandling.LastChangedList.Microsoft { - using Be.Vlaanderen.Basisregisters.ProjectionHandling.Connector; - using Be.Vlaanderen.Basisregisters.ProjectionHandling.Runner; - using Be.Vlaanderen.Basisregisters.ProjectionHandling.SqlStreamStore; + using Connector; + using Runner.Microsoft; + using SqlStreamStore; using global::Microsoft.Extensions.Logging; public class LastChangedListRunner : Runner