From effc5ca5dca46282447904d808c1c85ce901b50c Mon Sep 17 00:00:00 2001 From: Greg Cook Date: Sun, 23 Mar 2025 08:40:32 -0600 Subject: [PATCH] bou-1 - updated Bounteous.Data --- .../Bounteous.Data.PostgreSQL.csproj | 10 +++++----- .../PostgresDbContextFactory.cs | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/Bounteous.Data.PostgreSQL/Bounteous.Data.PostgreSQL.csproj b/src/Bounteous.Data.PostgreSQL/Bounteous.Data.PostgreSQL.csproj index da92557..2015654 100644 --- a/src/Bounteous.Data.PostgreSQL/Bounteous.Data.PostgreSQL.csproj +++ b/src/Bounteous.Data.PostgreSQL/Bounteous.Data.PostgreSQL.csproj @@ -8,15 +8,15 @@ - + - - + + all runtime; build; native; contentfiles; analyzers; buildtransitive - - + + diff --git a/src/Bounteous.Data.PostgreSQL/PostgresDbContextFactory.cs b/src/Bounteous.Data.PostgreSQL/PostgresDbContextFactory.cs index 3d5d4d6..e3ef5f8 100644 --- a/src/Bounteous.Data.PostgreSQL/PostgresDbContextFactory.cs +++ b/src/Bounteous.Data.PostgreSQL/PostgresDbContextFactory.cs @@ -2,7 +2,7 @@ namespace Bounteous.Data.PostgreSQL; -public abstract class PostgresDbContextFactory : DbContextFactory where T : DbContext +public abstract class PostgresDbContextFactory : DbContextFactory where T : IDbContext { public PostgresDbContextFactory(IConnectionBuilder connectionBuilder, IDbContextObserver observer) : base(connectionBuilder, observer )