From 6bf5f0aba99d7f8358e6b47a8e96af133160eac1 Mon Sep 17 00:00:00 2001 From: Bruno Brito Date: Mon, 29 May 2023 01:15:17 -0300 Subject: [PATCH] fix: dependencies --- .../NetDevPack.Security.Jwt.AspNetCore.csproj | 2 +- .../NetDevPack.Security.Jwt.Core.csproj | 20 +++++++++++++++---- .../NetDevPack.Security.Jwt.Tests.csproj | 4 +++- .../Warmups/WarmupDatabaseInMemory.cs | 2 -- 4 files changed, 20 insertions(+), 8 deletions(-) diff --git a/src/NetDevPack.Security.Jwt.AspNetCore/NetDevPack.Security.Jwt.AspNetCore.csproj b/src/NetDevPack.Security.Jwt.AspNetCore/NetDevPack.Security.Jwt.AspNetCore.csproj index 39cfae5..38be550 100644 --- a/src/NetDevPack.Security.Jwt.AspNetCore/NetDevPack.Security.Jwt.AspNetCore.csproj +++ b/src/NetDevPack.Security.Jwt.AspNetCore/NetDevPack.Security.Jwt.AspNetCore.csproj @@ -18,13 +18,13 @@ - + diff --git a/src/NetDevPack.Security.Jwt.Core/NetDevPack.Security.Jwt.Core.csproj b/src/NetDevPack.Security.Jwt.Core/NetDevPack.Security.Jwt.Core.csproj index b6c0418..bc153d0 100644 --- a/src/NetDevPack.Security.Jwt.Core/NetDevPack.Security.Jwt.Core.csproj +++ b/src/NetDevPack.Security.Jwt.Core/NetDevPack.Security.Jwt.Core.csproj @@ -17,11 +17,23 @@ - - + + + + + + + + + + - - + + + + + + diff --git a/tests/NetDevPack.Security.Jwt.Tests/NetDevPack.Security.Jwt.Tests.csproj b/tests/NetDevPack.Security.Jwt.Tests/NetDevPack.Security.Jwt.Tests.csproj index b573075..d6e2e25 100644 --- a/tests/NetDevPack.Security.Jwt.Tests/NetDevPack.Security.Jwt.Tests.csproj +++ b/tests/NetDevPack.Security.Jwt.Tests/NetDevPack.Security.Jwt.Tests.csproj @@ -24,7 +24,6 @@ - @@ -38,6 +37,7 @@ + @@ -45,6 +45,7 @@ + @@ -52,5 +53,6 @@ + diff --git a/tests/NetDevPack.Security.Jwt.Tests/Warmups/WarmupDatabaseInMemory.cs b/tests/NetDevPack.Security.Jwt.Tests/Warmups/WarmupDatabaseInMemory.cs index 26b130b..3151700 100644 --- a/tests/NetDevPack.Security.Jwt.Tests/Warmups/WarmupDatabaseInMemory.cs +++ b/tests/NetDevPack.Security.Jwt.Tests/Warmups/WarmupDatabaseInMemory.cs @@ -1,10 +1,8 @@ using System.Threading.Tasks; using Microsoft.EntityFrameworkCore; using Microsoft.Extensions.DependencyInjection; -using NetDevPack.Security.Jwt.Core; using NetDevPack.Security.Jwt.Core.Interfaces; using NetDevPack.Security.Jwt.Core.Jwa; -using NetDevPack.Security.Jwt.Store.EntityFrameworkCore; namespace NetDevPack.Security.Jwt.Tests.Warmups;