Skip to content

Commit

Permalink
Add support for .net6 and .net7. Change dependencies version to use v…
Browse files Browse the repository at this point in the history
…ersion range.
  • Loading branch information
wztech0192 committed Jul 12, 2024
1 parent 6daef51 commit 2eadc01
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<PackageId>CatConsult.PaginationHelper</PackageId>
<PackageVersion>2.0.0</PackageVersion>
<TargetFrameworks>net8.0</TargetFrameworks>
<PackageVersion>2.1.0</PackageVersion>
<TargetFrameworks>net6.0;net7.0;net8.0</TargetFrameworks>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>disable</Nullable>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
Expand All @@ -12,8 +12,8 @@
<Company>Catalyst Consulting Group</Company>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="8.0.3" />
<PackageReference Include="System.Linq.Dynamic.Core" Version="1.3.10" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="[6.0.0,)" />
<PackageReference Include="System.Linq.Dynamic.Core" Version="[1.3.0,)" />
</ItemGroup>
<ItemGroup>
<None Include="../README.md" Pack="true" PackagePath="\" />
Expand Down

0 comments on commit 2eadc01

Please sign in to comment.