Skip to content

Commit

Permalink
fix: fix LastChangedList.Microsoft
Browse files Browse the repository at this point in the history
  • Loading branch information
lvermeulen committed Jan 1, 2023
1 parent f43bc37 commit 56eb606
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@

<ItemGroup>
<ProjectReference Include="..\Be.Vlaanderen.Basisregisters.ProjectionHandling.Connector\Be.Vlaanderen.Basisregisters.ProjectionHandling.Connector.csproj" />
<ProjectReference Include="..\Be.Vlaanderen.Basisregisters.ProjectionHandling.Runner\Be.Vlaanderen.Basisregisters.ProjectionHandling.Runner.csproj" />
<ProjectReference Include="..\Be.Vlaanderen.Basisregisters.ProjectionHandling.SqlStreamStore.Autofac\Be.Vlaanderen.Basisregisters.ProjectionHandling.SqlStreamStore.Autofac.csproj" />
<ProjectReference Include="..\Be.Vlaanderen.Basisregisters.ProjectionHandling.Runner.Microsoft\Be.Vlaanderen.Basisregisters.ProjectionHandling.Runner.Microsoft.csproj" />
<ProjectReference Include="..\Be.Vlaanderen.Basisregisters.ProjectionHandling.SqlStreamStore.Microsoft\Be.Vlaanderen.Basisregisters.ProjectionHandling.SqlStreamStore.Microsoft.csproj" />
<ProjectReference Include="..\Be.Vlaanderen.Basisregisters.ProjectionHandling.SqlStreamStore\Be.Vlaanderen.Basisregisters.ProjectionHandling.SqlStreamStore.csproj" />
</ItemGroup>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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<LastChangedListContext>
{
Expand Down
Original file line number Diff line number Diff line change
@@ -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<LastChangedListContext> {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
{
Expand Down
Original file line number Diff line number Diff line change
@@ -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<LastChangedListContext>
Expand Down

0 comments on commit 56eb606

Please sign in to comment.