|
1 | 1 | <Project Sdk="Microsoft.NET.Sdk"> |
2 | 2 |
|
3 | 3 | <PropertyGroup> |
4 | | - <TargetFrameworks>net8.0;net7.0;net6.0</TargetFrameworks> |
| 4 | + <TargetFramework>net8.0</TargetFramework> |
5 | 5 | <GenerateDocumentationFile>true</GenerateDocumentationFile> |
6 | 6 | </PropertyGroup> |
7 | 7 |
|
8 | | - <ItemGroup Condition=" '$(TargetFramework)' == 'net8.0'"> |
| 8 | + <ItemGroup> |
9 | 9 | <PackageReference Include="Microsoft.EntityFrameworkCore" Version="8.0.0" /> |
10 | 10 | <PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="8.0.0" /> |
11 | 11 | <PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="8.0.0" /> |
12 | 12 | <PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="8.0.0" /> |
13 | 13 | </ItemGroup> |
14 | 14 |
|
15 | | - <ItemGroup Condition=" '$(TargetFramework)' == 'net7.0'"> |
16 | | - <PackageReference Include="Microsoft.EntityFrameworkCore" Version="7.0.0" /> |
17 | | - <PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="7.0.0" /> |
18 | | - <PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="7.0.0" /> |
19 | | - <PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="7.0.0" /> |
20 | | - </ItemGroup> |
21 | | - |
22 | | - <ItemGroup Condition=" '$(TargetFramework)' == 'net6.0'"> |
23 | | - <PackageReference Include="Microsoft.EntityFrameworkCore" Version="6.0.11" /> |
24 | | - <PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="6.0.11" /> |
25 | | - <PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="6.0.11" /> |
26 | | - <PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="6.0.1" /> |
27 | | - </ItemGroup> |
28 | | - |
29 | 15 | <ItemGroup> |
30 | 16 | <PackageReference Include="GenericServices.StatusGeneric" Version="1.2.0" /> |
31 | 17 | <PackageReference Include="Microsoft.CSharp" Version="4.7.0" /> |
32 | 18 | </ItemGroup> |
33 | 19 |
|
34 | 20 | <PropertyGroup> |
35 | 21 | <PackageId>EfCore.SoftDeleteServices</PackageId> |
36 | | - <PackageVersion>4.0.0</PackageVersion> |
37 | | - <Version>4.0.0</Version> |
38 | | - <AssemblyVersion>4.0.0.0</AssemblyVersion> |
39 | | - <FileVersion>4.0.0.0</FileVersion> |
| 22 | + <PackageVersion>8.0.0</PackageVersion> |
| 23 | + <Version>8.0.0</Version> |
| 24 | + <AssemblyVersion>8.0.0.0</AssemblyVersion> |
| 25 | + <FileVersion>8.0.0.0</FileVersion> |
40 | 26 | <Authors>Jon P Smith</Authors> |
41 | 27 | <Description>Services to provide simple soft delete and cascade soft delete in EF Core.</Description> |
42 | 28 | <PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance> |
43 | 29 | <PackageReleaseNotes> |
44 | | - - Update to NET 8 - this version supports .NET 6, 7 and 8 |
| 30 | + - Simpified to one NET type. This makes it easier to update for future NET releases |
| 31 | + - Only supports .NET 8 |
45 | 32 | </PackageReleaseNotes> |
46 | 33 | <Copyright>Copyright (c) 2020 Jon P Smith. Licenced under MIT licence</Copyright> |
47 | 34 | <PackageTags>Entity Framework Core</PackageTags> |
|
0 commit comments