Skip to content

Commit 8c1a315

Browse files
committed
Add .NET 9.0 support and update EF Core dependencies
Expanded TargetFrameworks to include .NET 9.0 alongside .NET 8.0. Updated Product and Description metadata to reflect .NET 9.0 support. Upgraded Microsoft.EntityFrameworkCore and Microsoft.EntityFrameworkCore.Tools to version 9.0.7.
1 parent b0b8e38 commit 8c1a315

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/ClassLibrary.EFCore/ClassLibrary.EFCore.csproj

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFrameworks>net8.0</TargetFrameworks>
4+
<TargetFrameworks>net8.0;net9.0</TargetFrameworks>
55
<ImplicitUsings>enable</ImplicitUsings>
66
<Nullable>enable</Nullable>
77
<Authors>Angelo Pirola</Authors>
8-
<Product>A generic implementation of Entity Framework Core methods for .NET 8</Product>
9-
<Description>A generic implementation of entity framework core methods for .NET 8</Description>
8+
<Product>A generic implementation of Entity Framework Core methods for .NET 8 and 9</Product>
9+
<Description>A generic implementation of entity framework core methods for .NET 8 and 9</Description>
1010
<PackageLicenseExpression>MIT</PackageLicenseExpression>
1111
<PackageProjectUrl>https://github.com/AngeloDotNet/NET8-EFCore-GenericRepository</PackageProjectUrl>
1212
<PackageIcon>LibraryTools.png</PackageIcon>
@@ -19,8 +19,8 @@
1919
</PropertyGroup>
2020

2121
<ItemGroup>
22-
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="9.0.6" />
23-
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="9.0.6">
22+
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="9.0.7" />
23+
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="9.0.7">
2424
<PrivateAssets>all</PrivateAssets>
2525
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
2626
</PackageReference>

0 commit comments

Comments
 (0)