Skip to content

Commit

Permalink
Changing package versions for net8.0
Browse files Browse the repository at this point in the history
The `Gridify.EntityFramework.csproj` file has changed the version of the `Microsoft.EntityFrameworkCore` package for the `net8.0` target platform. Previously the version was specified as `[8.0.0,9.0.0)`, now it has been changed to `[8.0.0,10.0.0)`.

In the `Gridify.csproj` file, the version of the `Microsoft.Extensions.DependencyInjection.Abstractions` package for the `net8.0` target platform has been changed. Previously the version was specified as `[8.0.0,9.0.0)`, now it has been changed to `[8.0.0,10.0.0)`.

#240
  • Loading branch information
ValeriyGourov authored and alirezanet committed Dec 29, 2024
1 parent df37655 commit aa6fbed
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Gridify.EntityFramework/Gridify.EntityFramework.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="[7.0.0,8.0.0)" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'net8.0'">
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="[8.0.0,9.0.0)" />
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="[8.0.0,10.0.0)" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'net9.0'">
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="[9.0.0,10.0.0)" />
Expand Down
2 changes: 1 addition & 1 deletion src/Gridify/Gridify.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
</ItemGroup>

<ItemGroup Condition="'$(TargetFramework)' == 'net8.0'">
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="[8.0.0,9.0.0)" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="[8.0.0,10.0.0)" />
</ItemGroup>

<ItemGroup Condition="'$(TargetFramework)' == 'net7.0'">
Expand Down

0 comments on commit aa6fbed

Please sign in to comment.