|
1 | 1 | <Project Sdk="Microsoft.NET.Sdk"> |
2 | 2 |
|
3 | 3 | <PropertyGroup> |
4 | | - <TargetFrameworks>netstandard2.1;net6.0</TargetFrameworks> |
| 4 | + <TargetFrameworks>netstandard2.1</TargetFrameworks> |
5 | 5 | <GenerateDocumentationFile>true</GenerateDocumentationFile> |
6 | 6 | </PropertyGroup> |
7 | 7 |
|
8 | 8 |
|
9 | | - <ItemGroup Condition=" '$(TargetFramework)' == 'netstandard2.1'"> |
10 | | - <PackageReference Include="GenericServices.StatusGeneric" Version="1.1.0" /> |
| 9 | + <ItemGroup> |
| 10 | + <PackageReference Include="GenericServices.StatusGeneric" Version="1.2.0" /> |
11 | 11 | <PackageReference Include="Microsoft.CSharp" Version="4.7.0" /> |
12 | 12 | <PackageReference Include="Microsoft.EntityFrameworkCore" Version="5.0.10" /> |
13 | 13 | <PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="5.0.10" /> |
14 | 14 | <PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="5.0.2" /> |
15 | 15 | </ItemGroup> |
16 | 16 |
|
17 | | - <ItemGroup Condition=" '$(TargetFramework)' == 'net6.0'"> |
18 | | - <PackageReference Include="GenericServices.StatusGeneric" Version="1.1.0" /> |
19 | | - <PackageReference Include="Microsoft.CSharp" Version="4.7.0" /> |
20 | | - <PackageReference Include="Microsoft.EntityFrameworkCore" Version="6.0.0" /> |
21 | | - <PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="6.0.0" /> |
22 | | - <PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="6.0.0" /> |
23 | | - </ItemGroup> |
24 | 17 |
|
25 | 18 | <PropertyGroup> |
26 | 19 | <PackageId>EfCore.SoftDeleteServices</PackageId> |
27 | | - <PackageVersion>2.0.2</PackageVersion> |
28 | | - <Version>2.0.1</Version> |
29 | | - <AssemblyVersion>2.0.1.0</AssemblyVersion> |
30 | | - <FileVersion>2.0.1.0</FileVersion> |
| 20 | + <PackageVersion>3.0.0</PackageVersion> |
| 21 | + <Version>3.0.0</Version> |
| 22 | + <AssemblyVersion>3.0.0.0</AssemblyVersion> |
| 23 | + <FileVersion>3.0.0.0</FileVersion> |
31 | 24 | <Authors>Jon P Smith</Authors> |
32 | 25 | <Description>Services to provide simple soft delete and cascade soft delete in EF Core.</Description> |
33 | 26 | <PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance> |
34 | 27 | <PackageReleaseNotes> |
35 | | - Bug fix: Fixes Owned Entities causing a failure - see issue #7 |
36 | | - </PackageReleaseNotes> |
| 28 | + Changed target framework to netstandard2.1 to work with any version of .NET |
| 29 | + </PackageReleaseNotes> |
37 | 30 | <Copyright>Copyright (c) 2020 Jon P Smith. Licenced under MIT licence</Copyright> |
38 | 31 | <PackageTags>Entity Framework Core</PackageTags> |
39 | 32 | <IsPackable>true</IsPackable> |
|
0 commit comments