Skip to content

Commit abc8d51

Browse files
committed
Removed <Nullable>enable</Nullable>
1 parent 5e04450 commit abc8d51

6 files changed

Lines changed: 11 additions & 16 deletions

File tree

AuthPermissions.BaseCode/AuthPermissions.BaseCode.csproj

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

3-
<PropertyGroup>
4-
<TargetFramework>net6.0</TargetFramework>
5-
<ImplicitUsings>enable</ImplicitUsings>
6-
<Nullable>enable</Nullable>
7-
</PropertyGroup>
3+
<PropertyGroup>
4+
<TargetFramework>net6.0</TargetFramework>
5+
<ImplicitUsings>enable</ImplicitUsings>
6+
</PropertyGroup>
87

98
<PropertyGroup>
109
<GenerateDocumentationFile>true</GenerateDocumentationFile>
@@ -21,4 +20,4 @@
2120
<PackageReference Include="Net.RunMethodsSequentially" Version="1.3.0" />
2221
</ItemGroup>
2322

24-
</Project>
23+
</Project>

AuthPermissions.PostgreSql/AuthPermissions.PostgreSql.csproj

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
<PropertyGroup>
44
<TargetFramework>net6.0</TargetFramework>
55
<ImplicitUsings>enable</ImplicitUsings>
6-
<Nullable>enable</Nullable>
76
</PropertyGroup>
87

98
<ItemGroup>

AuthPermissions.SqlServer/AuthPermissions.SqlServer.csproj

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
<PropertyGroup>
44
<TargetFramework>net6.0</TargetFramework>
55
<ImplicitUsings>enable</ImplicitUsings>
6-
<Nullable>enable</Nullable>
76
</PropertyGroup>
87

98
<ItemGroup>

ReleaseNotes.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
## 3.1.0
44

55
- New feature: Now supports PostgreSQL database
6+
- NOTE: A lot of namespaces changed to support SqlServer and PostgreSQL
67

78
## 3.0.0
89

Test/UnitTests/TestAuthPermissionsAdmin/TestAuthUsersAdminService.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,12 @@
44
using System.Collections.Generic;
55
using System.Linq;
66
using System.Threading.Tasks;
7-
using AuthPermissions;
87
using AuthPermissions.AdminCode.Services;
98
using AuthPermissions.BaseCode;
109
using AuthPermissions.BaseCode.DataLayer.Classes;
1110
using AuthPermissions.BaseCode.DataLayer.Classes.SupportTypes;
1211
using AuthPermissions.BaseCode.DataLayer.EfCode;
1312
using AuthPermissions.BaseCode.SetupCode;
14-
using AuthPermissions.SetupCode;
1513
using Microsoft.EntityFrameworkCore;
1614
using Test.TestHelpers;
1715
using TestSupport.EfHelpers;

Test/UnitTests/TestEfCoreCodePostgres/TestAuthPermissionsDbContext.cs renamed to Test/UnitTests/TestAuthPermissionsDbContext.cs

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,19 @@
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;
54
using AuthPermissions.BaseCode.DataLayer.Classes;
65
using AuthPermissions.BaseCode.DataLayer.EfCode;
7-
using EntityFramework.Exceptions.SqlServer;
8-
using Microsoft.EntityFrameworkCore;
96
using Microsoft.EntityFrameworkCore.Infrastructure;
107
using Test.Helpers;
118
using Test.TestHelpers;
129
using TestSupport.EfHelpers;
1310
using Xunit;
14-
using Xunit.Extensions.AssertExtensions;
1511

16-
namespace Test.UnitTests.TestEfCoreCodePostgres
12+
namespace Test.UnitTests
1713
{
14+
/// <summary>
15+
/// This is a basic test that the <see cref="AuthPermissionsDbContext"/> is configured for SQL Server and Postgres side
16+
/// </summary>
1817
public class TestAuthPermissionsDbContext
1918
{
2019
[Fact]

0 commit comments

Comments
 (0)