From 48d2e24da834bce1c7b80c90542cfb39ef8fd3be Mon Sep 17 00:00:00 2001 From: Syndamia Date: Tue, 15 Dec 2020 21:22:25 +0200 Subject: Added a package, that prevented migrations to happen --- src/DevHive.Data/DevHive.Data.csproj | 5 +++++ src/DevHive.Data/Repositories/DevHiveContext.cs | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) (limited to 'src/DevHive.Data') diff --git a/src/DevHive.Data/DevHive.Data.csproj b/src/DevHive.Data/DevHive.Data.csproj index 0becbe2..d7d59c0 100644 --- a/src/DevHive.Data/DevHive.Data.csproj +++ b/src/DevHive.Data/DevHive.Data.csproj @@ -9,6 +9,11 @@ + + + runtime; build; native; contentfiles; analyzers; buildtransitive + all + diff --git a/src/DevHive.Data/Repositories/DevHiveContext.cs b/src/DevHive.Data/Repositories/DevHiveContext.cs index be5cc56..dad4672 100644 --- a/src/DevHive.Data/Repositories/DevHiveContext.cs +++ b/src/DevHive.Data/Repositories/DevHiveContext.cs @@ -6,7 +6,7 @@ using Microsoft.EntityFrameworkCore; namespace DevHive.Data.Repositories { - public class DevHiveContext : IdentityDbContext, Guid> + public class DevHiveContext : IdentityDbContext, Guid> { public DevHiveContext(DbContextOptions options) : base(options) { } -- cgit v1.2.3