Skip to content

Commit e2086a8

Browse files
committed
It compiles!
1 parent 7315a58 commit e2086a8

File tree

12 files changed

+126
-91
lines changed

12 files changed

+126
-91
lines changed

AuthPermissions.AspNetCore/AuthPermissions.AspNetCore.csproj

Lines changed: 11 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,30 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFrameworks>net6.0;net7.0</TargetFrameworks>
4+
<TargetFrameworks>net8.0;net7.0;net6.0</TargetFrameworks>
55
<ImplicitUsings>enable</ImplicitUsings>
66
<GenerateDocumentationFile>true</GenerateDocumentationFile>
77
</PropertyGroup>
88

9-
<ItemGroup Condition=" '$(TargetFramework)' == 'net6.0'">
10-
<PackageReference Include="Microsoft.AspNetCore.Authentication.OpenIdConnect" Version="6.0.11" />
11-
<PackageReference Include="Microsoft.AspNetCore.Authorization" Version="6.0.11" />
12-
<PackageReference Include="Microsoft.AspNetCore.Http" Version="2.2.2" />
9+
<ItemGroup Condition=" '$(TargetFramework)' == 'net8.0'">
10+
<PackageReference Include="Microsoft.AspNetCore.Authentication.OpenIdConnect" Version="8.0.0" />
11+
<PackageReference Include="Microsoft.AspNetCore.Authorization" Version="8.0.0" />
1312
</ItemGroup>
1413

1514
<ItemGroup Condition=" '$(TargetFramework)' == 'net7.0'">
1615
<PackageReference Include="Microsoft.AspNetCore.Authentication.OpenIdConnect" Version="7.0.0" />
1716
<PackageReference Include="Microsoft.AspNetCore.Authorization" Version="7.0.0" />
18-
<PackageReference Include="Microsoft.AspNetCore.Http" Version="2.2.2" />
17+
</ItemGroup>
18+
19+
<ItemGroup Condition=" '$(TargetFramework)' == 'net6.0'">
20+
<PackageReference Include="Microsoft.AspNetCore.Authentication.OpenIdConnect" Version="6.0.11" />
21+
<PackageReference Include="Microsoft.AspNetCore.Authorization" Version="6.0.11" />
1922
</ItemGroup>
2023

2124
<ItemGroup>
25+
<PackageReference Include="Microsoft.AspNetCore.Http" Version="2.2.2" />
2226
<PackageReference Include="Net.DistributedFileStoreCache" Version="2.0.0" />
23-
<PackageReference Include="Net.LocalizeMessagesAndErrors" Version="1.0.0" />
27+
<PackageReference Include="Net.LocalizeMessagesAndErrors" Version="2.0.0" />
2428
</ItemGroup>
2529

2630
<ItemGroup>

AuthPermissions.BaseCode/AuthPermissions.BaseCode.csproj

Lines changed: 19 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFrameworks>net6.0;net7.0</TargetFrameworks>
4+
<TargetFrameworks>net8.0;net7.0;net6.0</TargetFrameworks>
55
<ImplicitUsings>enable</ImplicitUsings>
66
<GenerateDocumentationFile>true</GenerateDocumentationFile>
77
</PropertyGroup>
88

9-
<ItemGroup Condition=" '$(TargetFramework)' == 'net6.0'">
9+
<ItemGroup Condition=" '$(TargetFramework)' == 'net8.0'">
1010
<PackageReference Include="EntityFrameworkCore.Exceptions.PostgreSQL" Version="6.0.3" />
1111
<PackageReference Include="EntityFrameworkCore.Exceptions.Sqlite" Version="6.0.3" />
1212
<PackageReference Include="EntityFrameworkCore.Exceptions.SqlServer" Version="6.0.3.1" />
1313
<PackageReference Include="GenericServices.StatusGeneric" Version="1.2.0" />
14-
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="6.0.11" />
15-
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="6.0.11" />
16-
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="6.0.7" />
14+
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="8.0.0" />
15+
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="8.0.0" />
16+
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="8.0.0" />
1717
<PackageReference Include="Net.RunMethodsSequentially" Version="2.0.0" />
18-
<PackageReference Include="Microsoft.Extensions.Localization.Abstractions" Version="6.0.11" />
18+
<PackageReference Include="Microsoft.Extensions.Localization.Abstractions" Version="8.0.0" />
1919
</ItemGroup>
2020

2121
<ItemGroup Condition=" '$(TargetFramework)' == 'net7.0'">
@@ -30,6 +30,19 @@
3030
<PackageReference Include="Microsoft.Extensions.Localization.Abstractions" Version="7.0.0" />
3131
</ItemGroup>
3232

33+
<ItemGroup Condition=" '$(TargetFramework)' == 'net6.0'">
34+
<PackageReference Include="EntityFrameworkCore.Exceptions.PostgreSQL" Version="6.0.3" />
35+
<PackageReference Include="EntityFrameworkCore.Exceptions.Sqlite" Version="6.0.3" />
36+
<PackageReference Include="EntityFrameworkCore.Exceptions.SqlServer" Version="6.0.3.1" />
37+
<PackageReference Include="GenericServices.StatusGeneric" Version="1.2.0" />
38+
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="6.0.11" />
39+
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="6.0.11" />
40+
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="6.0.7" />
41+
<PackageReference Include="Net.RunMethodsSequentially" Version="2.0.0" />
42+
<PackageReference Include="Microsoft.Extensions.Localization.Abstractions" Version="6.0.11" />
43+
</ItemGroup>
44+
45+
3346
<ItemGroup>
3447
<PackageReference Include="Net.LocalizeMessagesAndErrors" Version="1.0.0" />
3548
</ItemGroup>

AuthPermissions.PostgreSql/AuthPermissions.PostgreSql.csproj

Lines changed: 12 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,28 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFrameworks>net6.0;net7.0</TargetFrameworks>
4+
<TargetFrameworks>net8.0;net7.0;net6.0</TargetFrameworks>
55
<ImplicitUsings>enable</ImplicitUsings>
66
<GenerateDocumentationFile>true</GenerateDocumentationFile>
77
</PropertyGroup>
88

9-
<ItemGroup Condition=" '$(TargetFramework)' == 'net6.0'">
10-
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="6.0.11" />
11-
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="6.0.7" />
12-
</ItemGroup>
9+
10+
<ItemGroup Condition=" '$(TargetFramework)' == 'net8.0'">
11+
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="8.0.0" />
12+
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="8.0.0" />
13+
</ItemGroup>
1314

1415
<ItemGroup Condition=" '$(TargetFramework)' == 'net7.0'">
1516
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="7.0.0" />
1617
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="7.0.0" />
1718
</ItemGroup>
1819

20+
<ItemGroup Condition=" '$(TargetFramework)' == 'net6.0'">
21+
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="6.0.11" />
22+
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="6.0.7" />
23+
</ItemGroup>
24+
25+
1926
<ItemGroup>
2027
<ProjectReference Include="..\AuthPermissions.BaseCode\AuthPermissions.BaseCode.csproj" />
2128
</ItemGroup>

AuthPermissions.SqlServer/AuthPermissions.SqlServer.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFrameworks>net6.0;net7.0</TargetFrameworks>
4+
<TargetFrameworks>net8.0;net7.0;net6.0</TargetFrameworks>
55
<ImplicitUsings>enable</ImplicitUsings>
66
</PropertyGroup>
77

AuthPermissions.SupportCode/AuthPermissions.SupportCode.csproj

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,13 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFrameworks>net6.0;net7.0</TargetFrameworks>
4+
<TargetFrameworks>net8.0;net7.0;net6.0</TargetFrameworks>
55
<ImplicitUsings>enable</ImplicitUsings>
66
<GenerateDocumentationFile>true</GenerateDocumentationFile>
77
</PropertyGroup>
88

99
<ItemGroup>
1010
<PackageReference Include="DistributedLock" Version="2.3.2" />
11-
<PackageReference Include="EfCore.TestSupport" Version="5.3.0" />
1211
<PackageReference Include="Microsoft.AspNetCore.Hosting" Version="2.2.7" />
1312
<PackageReference Include="Microsoft.Graph" Version="4.37.0" />
1413
<PackageReference Include="Net.DistributedFileStoreCache" Version="2.0.0" />

AuthPermissions/AuthPermissions.csproj

Lines changed: 36 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,27 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFrameworks>net6.0;net7.0</TargetFrameworks>
4+
<TargetFrameworks>net8.0;net7.0;net6.0</TargetFrameworks>
55
<ImplicitUsings>enable</ImplicitUsings>
66
<GenerateDocumentationFile>true</GenerateDocumentationFile>
77
</PropertyGroup>
8-
9-
<ItemGroup Condition=" '$(TargetFramework)' == 'net6.0'">
10-
<PackageReference Include="GenericServices.StatusGeneric" Version="1.2.0" />
11-
<PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="6.0.11" />
12-
<PackageReference Include="Microsoft.Data.Sqlite.Core" Version="6.0.11" />
13-
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="6.0.11" />
14-
<PackageReference Include="Microsoft.EntityFrameworkCore.InMemory" Version="6.0.11" />
15-
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="6.0.11" />
16-
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="6.0.11" />
17-
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="6.0.11">
18-
<PrivateAssets>all</PrivateAssets>
19-
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
20-
</PackageReference>
21-
<PackageReference Include="Microsoft.Extensions.Hosting" Version="6.0.1" />
22-
<PackageReference Include="Net.RunMethodsSequentially" Version="2.0.0" />
23-
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="6.0.7" />
24-
</ItemGroup>
8+
9+
<ItemGroup Condition=" '$(TargetFramework)' == 'net8.0'">
10+
<PackageReference Include="GenericServices.StatusGeneric" Version="1.2.0" />
11+
<PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="8.0.0" />
12+
<PackageReference Include="Microsoft.Data.Sqlite.Core" Version="8.0.0" />
13+
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="8.0.0" />
14+
<PackageReference Include="Microsoft.EntityFrameworkCore.InMemory" Version="8.0.0" />
15+
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="8.0.0" />
16+
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="8.0.0" />
17+
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="8.0.0">
18+
<PrivateAssets>all</PrivateAssets>
19+
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
20+
</PackageReference>
21+
<PackageReference Include="Microsoft.Extensions.Hosting" Version="8.0.0" />
22+
<PackageReference Include="Net.RunMethodsSequentially" Version="2.0.0" />
23+
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="8.0.0" />
24+
</ItemGroup>
2525

2626
<ItemGroup Condition=" '$(TargetFramework)' == 'net7.0'">
2727
<PackageReference Include="GenericServices.StatusGeneric" Version="1.2.0" />
@@ -40,8 +40,25 @@
4040
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="7.0.0" />
4141
</ItemGroup>
4242

43+
<ItemGroup Condition=" '$(TargetFramework)' == 'net6.0'">
44+
<PackageReference Include="GenericServices.StatusGeneric" Version="1.2.0" />
45+
<PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="6.0.11" />
46+
<PackageReference Include="Microsoft.Data.Sqlite.Core" Version="6.0.11" />
47+
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="6.0.11" />
48+
<PackageReference Include="Microsoft.EntityFrameworkCore.InMemory" Version="6.0.11" />
49+
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="6.0.11" />
50+
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="6.0.11" />
51+
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="6.0.11">
52+
<PrivateAssets>all</PrivateAssets>
53+
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
54+
</PackageReference>
55+
<PackageReference Include="Microsoft.Extensions.Hosting" Version="6.0.1" />
56+
<PackageReference Include="Net.RunMethodsSequentially" Version="2.0.0" />
57+
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="6.0.7" />
58+
</ItemGroup>
59+
4360
<ItemGroup>
44-
<PackageReference Include="Net.LocalizeMessagesAndErrors" Version="1.0.0" />
61+
<PackageReference Include="Net.LocalizeMessagesAndErrors" Version="2.0.0" />
4562
</ItemGroup>
4663

4764
<ItemGroup>

Test/Test.csproj

Lines changed: 44 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,41 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFrameworks>net6.0;net7.0</TargetFrameworks>
4+
<TargetFrameworks>net8.0;net7.0;net6.0</TargetFrameworks>
55
<ImplicitUsings>enable</ImplicitUsings>
66
<IsPackable>false</IsPackable>
77
</PropertyGroup>
88

99
<ItemGroup>
1010
<None Remove="TestData\example3-appsettings.json" />
1111
</ItemGroup>
12+
13+
<ItemGroup Condition=" '$(TargetFramework)' == 'net8.0'">
14+
<PackageReference Include="EfCore.TestSupport" Version="6.0.0" />
15+
<PackageReference Include="EntityFrameworkCore.Exceptions.SqlServer" Version="6.0.3.1" />
16+
<PackageReference Include="Microsoft.AspNetCore.Hosting" Version="2.2.7" />
17+
<PackageReference Include="Microsoft.AspNetCore.Identity" Version="2.2.0" />
18+
<PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="8.0.0" />
19+
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="8.0.0" />
20+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.0.0" />
21+
<PackageReference Include="Moq" Version="4.17.2" />
22+
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="8.0.0" />
23+
</ItemGroup>
24+
25+
<ItemGroup Condition=" '$(TargetFramework)' == 'net7.0'">
26+
<PackageReference Include="EfCore.TestSupport" Version="6.0.0" />
27+
<PackageReference Include="EntityFrameworkCore.Exceptions.SqlServer" Version="6.0.3.1" />
28+
<PackageReference Include="Microsoft.AspNetCore.Hosting" Version="2.2.7" />
29+
<PackageReference Include="Microsoft.AspNetCore.Identity" Version="2.2.0" />
30+
<PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="7.0.0" />
31+
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="7.0.0" />
32+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.0.0" />
33+
<PackageReference Include="Moq" Version="4.17.2" />
34+
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="7.0.0" />
35+
</ItemGroup>
1236

1337
<ItemGroup Condition=" '$(TargetFramework)' == 'net6.0'">
14-
<PackageReference Include="EfCore.TestSupport" Version="5.3.0" />
38+
<PackageReference Include="EfCore.TestSupport" Version="6.0.0" />
1539
<PackageReference Include="EntityFrameworkCore.Exceptions.SqlServer" Version="6.0.3.1" />
1640
<PackageReference Include="Microsoft.AspNetCore.Hosting" Version="2.2.7" />
1741
<PackageReference Include="Microsoft.AspNetCore.Identity" Version="2.2.0" />
@@ -20,42 +44,30 @@
2044
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.0.0" />
2145
<PackageReference Include="Moq" Version="4.17.2" />
2246
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="6.0.7" />
23-
<PackageReference Include="xunit" Version="2.4.2" />
24-
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.5">
25-
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
26-
<PrivateAssets>all</PrivateAssets>
27-
</PackageReference>
28-
<PackageReference Include="coverlet.collector" Version="3.2.0">
29-
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
30-
<PrivateAssets>all</PrivateAssets>
31-
</PackageReference>
3247
</ItemGroup>
3348

34-
<ItemGroup Condition=" '$(TargetFramework)' == 'net7.0'">
35-
<PackageReference Include="EfCore.TestSupport" Version="5.3.0" />
36-
<PackageReference Include="EntityFrameworkCore.Exceptions.SqlServer" Version="6.0.3.1" />
37-
<PackageReference Include="Microsoft.AspNetCore.Hosting" Version="2.2.7" />
38-
<PackageReference Include="Microsoft.AspNetCore.Identity" Version="2.2.0" />
39-
<PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="7.0.0" />
40-
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="7.0.0" />
41-
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.0.0" />
42-
<PackageReference Include="Moq" Version="4.17.2" />
43-
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="7.0.0" />
44-
<PackageReference Include="xunit" Version="2.4.2" />
45-
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.5">
46-
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
47-
<PrivateAssets>all</PrivateAssets>
48-
</PackageReference>
49-
<PackageReference Include="coverlet.collector" Version="3.2.0">
50-
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
51-
<PrivateAssets>all</PrivateAssets>
52-
</PackageReference>
53-
</ItemGroup>
5449

5550
<ItemGroup>
56-
<PackageReference Include="Net.LocalizeMessagesAndErrors" Version="1.0.0" />
51+
<PackageReference Include="Net.LocalizeMessagesAndErrors" Version="2.0.0" />
5752
<PackageReference Include="ResXResourceReader.NetStandard" Version="1.1.0" />
5853
<PackageReference Include="CsvHelper" Version="30.0.1" />
54+
<PackageReference Include="GenericServices.StatusGeneric" Version="1.2.0" />
55+
56+
<PackageReference Include="Microsoft.CodeAnalysis.Common" Version="4.5.0" />
57+
<PackageReference Include="Microsoft.CodeAnalysis.Workspaces.Common " Version="4.5.0" />
58+
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="4.5.0" />
59+
60+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.0.0" />
61+
<PackageReference Include="xunit" Version="2.5.0" />
62+
<PackageReference Include="xunit.runner.visualstudio" Version="2.5.0">
63+
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
64+
<PrivateAssets>all</PrivateAssets>
65+
</PackageReference>
66+
<PackageReference Include="coverlet.collector" Version="3.2.0">
67+
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
68+
<PrivateAssets>all</PrivateAssets>
69+
</PackageReference>
70+
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="4.2.0" />
5971
</ItemGroup>
6072

6173
<ItemGroup>

Test/UnitTests/TestAuthPermissionsDbContext.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
using AuthPermissions.BaseCode.DataLayer.Classes;
55
using AuthPermissions.BaseCode.DataLayer.EfCode;
66
using Microsoft.EntityFrameworkCore.Infrastructure;
7-
using Test.Helpers;
87
using Test.TestHelpers;
98
using TestSupport.EfHelpers;
109
using Xunit;

Test/UnitTests/TestEfCoreCodePostgres/TestAuthUserUnique.cs

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,11 @@
11
// Copyright (c) 2021 Jon P Smith, GitHub: JonPSmith, web: http://www.thereformedprogrammer.net/
22
// Licensed under MIT license. See License.txt in the project root for license information.
33

4-
using System.Collections.Generic;
5-
using AuthPermissions.BaseCode;
4+
65
using AuthPermissions.BaseCode.CommonCode;
7-
using AuthPermissions.BaseCode.DataLayer.Classes;
86
using AuthPermissions.BaseCode.DataLayer.EfCode;
97
using EntityFramework.Exceptions.PostgreSQL;
108
using Microsoft.EntityFrameworkCore.Infrastructure;
11-
using Test.Helpers;
12-
using Test.StubClasses;
139
using Test.TestHelpers;
1410
using TestSupport.EfHelpers;
1511
using Xunit;

Test/UnitTests/TestEfCoreCodePostgres/TestConcurrency.cs

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,12 @@
11
// Copyright (c) 2021 Jon P Smith, GitHub: JonPSmith, web: http://www.thereformedprogrammer.net/
22
// Licensed under MIT license. See License.txt in the project root for license information.
33

4-
using System.Linq;
5-
using AuthPermissions.BaseCode;
64
using AuthPermissions.BaseCode.DataLayer.Classes;
75
using AuthPermissions.BaseCode.DataLayer.EfCode;
86
using EntityFramework.Exceptions.SqlServer;
9-
using Microsoft.EntityFrameworkCore;
10-
using Test.Helpers;
11-
using Test.StubClasses;
127
using Test.TestHelpers;
138
using TestSupport.Attributes;
149
using TestSupport.EfHelpers;
15-
using Xunit;
1610
using Xunit.Abstractions;
1711
using Xunit.Extensions.AssertExtensions;
1812

0 commit comments

Comments
 (0)