Skip to content

Commit

Permalink
Merge pull request #13 from csillikd/update-ef
Browse files Browse the repository at this point in the history
Update EF version
  • Loading branch information
Mafii authored Aug 26, 2024
2 parents ada9fe6 + 1e9d46a commit 33afa8d
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
efcore: ['3.1.25', '5.0.15', '6.0.3', '7.0.0']
efcore: ['3.1.25', '5.0.15', '6.0.3', '7.0.0', '8.0.8']
env:
EntityFrameworkCoreVersion: ${{matrix.efcore}}
steps:
Expand Down
4 changes: 2 additions & 2 deletions Directory.Packages.props
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
</PropertyGroup>
<ItemGroup Label="Runtime Dependencies">
<PackageVersion Include="Funcky" Version="[3.0.0, 4)" />
<PackageVersion Include="Microsoft.EntityFrameworkCore" Version="[3.1.25, 8)" />
<PackageVersion Include="Microsoft.EntityFrameworkCore" Version="[3.1.25, 9)" />
</ItemGroup>
<ItemGroup Label="Build Dependencies">
<PackageVersion Include="Funcky.Analyzers" Version="1.1.0" />
Expand All @@ -16,7 +16,7 @@
<ItemGroup Label="Test Dependencies">
<PackageVersion Include="Funcky.Xunit" Version="2.0.0" />
<PackageVersion Include="Microsoft.EntityFrameworkCore.InMemory" Version="$(EntityFrameworkCoreVersion)" />
<PackageVersion Include="Microsoft.EntityFrameworkCore.InMemory" Version="[3.1.25, 6)" Condition="'$(EntityFrameworkCoreVersion)' == ''" />
<PackageVersion Include="Microsoft.EntityFrameworkCore.InMemory" Version="[3.1.25, 9)" Condition="'$(EntityFrameworkCoreVersion)' == ''" />
<PackageVersion Include="Microsoft.NET.Test.Sdk" Version="15.9.0" />
<PackageVersion Include="xunit" Version="2.4.0" />
<PackageVersion Include="xunit.runner.visualstudio" Version="2.4.0" />
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net7.0</TargetFramework>
<TargetFramework>net8.0</TargetFramework>
<LangVersion>11.0</LangVersion>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<TargetFramework>net8.0</TargetFramework>
<LangVersion>11.0</LangVersion>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
Expand Down
2 changes: 1 addition & 1 deletion global.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"sdk": {
"version": "7.0.100",
"version": "8.0.401",
"rollForward": "latestFeature"
}
}

0 comments on commit 33afa8d

Please sign in to comment.