Skip to content

Commit

Permalink
Support EF 7 with dotnet7
Browse files Browse the repository at this point in the history
  • Loading branch information
jsmith-vensure committed Oct 12, 2024
1 parent 650339b commit 6d1b06b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/X.PagedList.EF/X.PagedList.EF.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<Description>EF extensions for X.PagedList library</Description>

<LangVersion>default</LangVersion>
<TargetFrameworks>net6.0;net8.0</TargetFrameworks>
<TargetFrameworks>net6.0;net7.0;net8.0</TargetFrameworks>

<PackageTags>paging pagedlist paged list entity framework ef</PackageTags>
</PropertyGroup>
Expand All @@ -18,7 +18,7 @@
<None Include="../../LICENSE.md" Pack="true" PackagePath=""/>
</ItemGroup>

<ItemGroup Condition="'$(TargetFramework)' == 'net6.0'">
<ItemGroup Condition="'$(TargetFramework)' == 'net6.0' Or '$(TargetFramework)' == 'net7.0'">
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="[7.0.20,8)"/>
</ItemGroup>

Expand Down

0 comments on commit 6d1b06b

Please sign in to comment.