Skip to content

Commit

Permalink
Update target frameworks
Browse files Browse the repository at this point in the history
  • Loading branch information
GeertvanHorrik committed Dec 9, 2024
1 parent c4903b3 commit 6c20b8c
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/Orc.EntityFrameworkCore/Orc.EntityFrameworkCore.csproj
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="MSBuild.Sdk.Extras">
<PropertyGroup>
<TargetFrameworks>net6.0;net8.0</TargetFrameworks>
<TargetFrameworks>net8.0;net9.0</TargetFrameworks>
<AssemblyName>Orc.EntityFrameworkCore</AssemblyName>
<RootNamespace>Orc.EntityFrameworkCore</RootNamespace>
<DefaultLanguage>en-US</DefaultLanguage>
Expand All @@ -26,14 +26,14 @@
<PackageReference Include="Obsolete.Fody" Version="5.3.0" PrivateAssets="all" />
</ItemGroup>

<ItemGroup Condition=" $(TargetFramework.StartsWith('net6.0')) ">
<ItemGroup Condition=" $(TargetFramework.StartsWith('net8.0')) ">
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="8.0.0" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="8.0.0" />
</ItemGroup>

<ItemGroup Condition=" $(TargetFramework.StartsWith('net8.0')) ">
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="8.0.0" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="8.0.0" />
<ItemGroup Condition=" $(TargetFramework.StartsWith('net9.0')) ">
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="9.0.0" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="9.0.0" />
</ItemGroup>

<ItemGroup>
Expand Down

0 comments on commit 6c20b8c

Please sign in to comment.