Skip to content

Commit 4ef33c7

Browse files
authored
Merge pull request #62 from mrahhal/dotnet-8
Update to .net 8
2 parents 3d0ba28 + 1f76f88 commit 4ef33c7

File tree

7 files changed

+12
-11
lines changed

7 files changed

+12
-11
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,6 @@ jobs:
1515
main:
1616
uses: mrahhal/.github/.github/workflows/ci-dotnet-package.yml@main
1717
with:
18-
dotnet-version: 6.x.x
18+
dotnet-version: 8.x.x
1919
secrets:
2020
NUGET_TOKEN: ${{ secrets.NUGET_TOKEN }}

CHANGELOG.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,18 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](http://keepachangelog.com/)
66
and this project adheres to [Semantic Versioning](http://semver.org/).
77

8-
## 2.0.0 - Unreleased
8+
## 1.5.0 - Unreleased
9+
10+
This version targets .net 8.
911

1012
### Fixed
1113

1214
- Fix an analyzer issue ([#60](https://github.com/mrahhal/MR.EntityFrameworkCore.KeysetPagination/pull/60) by [@mrahhal](https://github.com/mrahhal))
1315

16+
### Changed
17+
18+
- Update to .net 8 ([#62](https://github.com/mrahhal/MR.EntityFrameworkCore.KeysetPagination/pull/62) by [@mrahhal](https://github.com/mrahhal))
19+
1420
[**Full diff**](https://github.com/mrahhal/MR.EntityFrameworkCore.KeysetPagination/compare/v1.4.1...v2.0.0)
1521

1622
## 1.4.1 - 2024-02-02

Directory.Build.props

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@
88
<PackageProjectUrl>$(RepositoryUrl)</PackageProjectUrl>
99
<PackageLicenseExpression>MIT</PackageLicenseExpression>
1010

11-
<TargetFramework>net6.0</TargetFramework>
11+
<TargetFramework>net8.0</TargetFramework>
1212
<ImplicitUsings>enable</ImplicitUsings>
1313
<Nullable>enable</Nullable>
1414
</PropertyGroup>
1515

1616
<PropertyGroup>
17-
<EntityFrameworkCoreVersion>6.0.0</EntityFrameworkCoreVersion>
17+
<EntityFrameworkCoreVersion>8.0.0</EntityFrameworkCoreVersion>
1818
</PropertyGroup>
1919

2020
</Project>

global.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"sdk": {
3-
"version": "6.0.100",
3+
"version": "8.0.14",
44
"rollForward": "latestMinor"
55
}
66
}

samples/Basic/AnalyzerTest.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ public class AnalyzerTest
1818

1919
private void TestingTheAnalyzer()
2020
{
21-
2221
var analyzerTestKeysetBuilderAction = (KeysetPaginationBuilder<User> b) =>
2322
{
2423
// HERE

samples/Basic/Basic.csproj

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212

1313
<!-- Only needed because we're doing a project reference. You won't need this. -->
1414
<ProjectReference Include="..\..\src\MR.EntityFrameworkCore.KeysetPagination.Analyzers\MR.EntityFrameworkCore.KeysetPagination.Analyzers.csproj"
15-
PrivateAssets="all"
1615
ReferenceOutputAssembly="false"
1716
OutputItemType="Analyzer" />
1817
</ItemGroup>

src/MR.EntityFrameworkCore.KeysetPagination/MR.EntityFrameworkCore.KeysetPagination.csproj

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,7 @@
1111
</ItemGroup>
1212

1313
<ItemGroup Label="Analyzers">
14-
<ProjectReference
15-
Include="..\$(AnalyzersAssemblyName)\$(AnalyzersAssemblyName).csproj"
16-
OutputItemType="Analyzer"
17-
ReferenceOutputAssembly="False" />
14+
<ProjectReference Include="..\$(AnalyzersAssemblyName)\$(AnalyzersAssemblyName).csproj" OutputItemType="Analyzer" />
1815
</ItemGroup>
1916

2017
</Project>

0 commit comments

Comments
 (0)