Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions SecurityService.BusinessLogic/ApplicationUser.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
namespace SecurityService.BusinessLogic
{
using Microsoft.AspNetCore.Identity;

public class ApplicationUser : IdentityUser
{
}
}
697 changes: 0 additions & 697 deletions SecurityService.BusinessLogic/ISecurityServiceManager.cs

Large diffs are not rendered by default.

699 changes: 699 additions & 0 deletions SecurityService.BusinessLogic/SecurityServiceManager.cs

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
namespace SecurityService.Database.DbContexts
{
using System;
using Duende.IdentityServer.EntityFramework.DbContexts;
using Duende.IdentityServer.EntityFramework.Options;
using Microsoft.AspNetCore.Identity;
using Microsoft.AspNetCore.Identity.EntityFrameworkCore;
using Microsoft.EntityFrameworkCore;
using Shared.General;

public class AuthenticationDbContext : IdentityDbContext<IdentityUser>
{
Expand Down
14 changes: 10 additions & 4 deletions SecurityService.Database/SecurityService.Database.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,19 @@
<ItemGroup>
<PackageReference Include="Duende.IdentityServer.AspNetIdentity" Version="5.2.1" />
<PackageReference Include="Duende.IdentityServer.EntityFramework" Version="5.2.1" />
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="5.0.6" />
<PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="5.0.6" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="5.0.6">
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="5.0.12" />
<PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="5.0.12" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="5.0.12">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="5.0.6" />
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="5.0.12" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="5.0.12">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Pomelo.EntityFrameworkCore.MySql" Version="5.0.3" />
<PackageReference Include="Shared" Version="1.0.16" />
</ItemGroup>
<ItemGroup>
<Folder Include="DbContexts\" />
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading