Skip to content

Commit 04debb3

Browse files
committed
feat: dynamicallly remove authentication provider
1 parent 2c94c69 commit 04debb3

File tree

2 files changed

+1
-6
lines changed

2 files changed

+1
-6
lines changed

src/Aguacongas.AspNetCore.Authentication.EntityFramework/DynamicProviderStore.cs

-6
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,6 @@
55

66
namespace Aguacongas.AspNetCore.Authentication.EntityFramework
77
{
8-
public class DynamicProviderStore: DynamicProviderStore<ProviderDefinition>
9-
{
10-
public DynamicProviderStore(ProviderDbContext context):base(context)
11-
{ }
12-
}
13-
148
public class DynamicProviderStore<TDefinition> : IDynamicProviderStore<TDefinition>
159
where TDefinition: ProviderDefinition, new()
1610
{

src/Aguacongas.AspNetCore.Authentication/Aguacongas.AspNetCore.Authentication.csproj

+1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
<ItemGroup>
88
<PackageReference Include="Microsoft.AspNetCore.Authentication" Version="2.2.0" />
99
<PackageReference Include="Microsoft.AspNetCore.Authentication.OAuth" Version="2.2.0" />
10+
<PackageReference Include="Microsoft.Extensions.DependencyModel" Version="2.1.0" />
1011
<PackageReference Include="Newtonsoft.Json" Version="12.0.1" />
1112
</ItemGroup>
1213

0 commit comments

Comments
 (0)