Skip to content

Commit c5eff6c

Browse files
committed
Drop support for .NET and EF Core 6.0
1 parent a5cab23 commit c5eff6c

File tree

5 files changed

+3
-15
lines changed

5 files changed

+3
-15
lines changed

Directory.Build.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project>
22
<PropertyGroup>
3-
<TargetFrameworks>net6.0;net8.0</TargetFrameworks>
3+
<TargetFrameworks>net8.0</TargetFrameworks>
44
</PropertyGroup>
55

66
<PropertyGroup Label="Configure assembly names and namespaces">

EntityFramework.Exceptions.Common/Common.csproj

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ This is a base package for database specific packages. Install one of the specif
88
</PropertyGroup>
99

1010
<ItemGroup>
11-
<PackageReference Include="Microsoft.EntityFrameworkCore.Relational " Version="7.0.14" Condition="'$(TargetFramework)' == 'net6.0'" />
1211
<PackageReference Include="Microsoft.EntityFrameworkCore.Relational " Version="8.0.0" Condition="'$(TargetFramework)' == 'net8.0'" />
1312
</ItemGroup>
1413

EntityFramework.Exceptions.PostgreSQL/PostgreSQL.csproj

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
</PropertyGroup>
77

88
<ItemGroup>
9-
<PackageReference Include="Npgsql" Version="7.0.7" Condition="'$(TargetFramework)' == 'net6.0'" />
109
<PackageReference Include="Npgsql" Version="8.0.3" Condition="'$(TargetFramework)' == 'net8.0'" />
1110
</ItemGroup>
1211
</Project>

EntityFramework.Exceptions.Tests/Tests.csproj

Lines changed: 1 addition & 11 deletions
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;net8.0</TargetFrameworks>
4+
<TargetFrameworks>net8.0</TargetFrameworks>
55
</PropertyGroup>
66

77
<ItemGroup>
@@ -29,16 +29,6 @@
2929
</PackageReference>
3030
</ItemGroup>
3131

32-
<ItemGroup Condition="'$(TargetFramework)' == 'net6.0'">
33-
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="7.0.14" />
34-
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="7.0.14" />
35-
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="7.0.14" />
36-
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="7.0.11" />
37-
<PackageReference Include="MySql.EntityFrameworkCore" Version="7.0.0" />
38-
<PackageReference Include="Oracle.EntityFrameworkCore" Version="7.21.12" />
39-
<PackageReference Include="Pomelo.EntityFrameworkCore.MySql" Version="7.0.0" />
40-
</ItemGroup>
41-
4232
<ItemGroup Condition="'$(TargetFramework)' == 'net8.0'">
4333
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="8.0.5" />
4434
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="8.0.5" />

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
Handle database errors easily when working with Entity Framework Core. Supports SQLServer, PostgreSQL, SQLite, Oracle and MySql
55

66
[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg?style=flat-square&logo=Apache)](License.md)
7-
[![Target](https://img.shields.io/static/v1?label=target&message=net6.0;net8.0&color=512bd4&logo=.net&style=flat-square)](https://dotnet.microsoft.com/en-us/)
7+
[![Target](https://img.shields.io/static/v1?label=target&message=net8.0&color=512bd4&logo=.net&style=flat-square)](https://dotnet.microsoft.com/en-us/)
88
![GitHub Actions Workflow Status](https://img.shields.io/github/actions/workflow/status/Giorgi/EntityFramework.Exceptions/dotnet.yml)
99
[![Coverage Status](https://img.shields.io/coveralls/github/Giorgi/EntityFramework.Exceptions?logo=coveralls&style=flat-square)](https://coveralls.io/github/Giorgi/EntityFramework.Exceptions)
1010
[![Ko-Fi](https://img.shields.io/static/v1?style=flat-square&message=Support%20the%20Project&color=success&style=plastic&logo=ko-fi&label=$$)](https://ko-fi.com/U6U81LHU8)

0 commit comments

Comments
 (0)