Skip to content

Commit 3caf96b

Browse files
jnyrupdennisdoomen
authored andcommitted
Use .NET9 SDK
1 parent ac64047 commit 3caf96b

File tree

4 files changed

+9
-11
lines changed

4 files changed

+9
-11
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,9 @@ jobs:
1919
uses: actions/setup-dotnet@v5
2020
with:
2121
dotnet-version: |
22-
2.1.x
23-
3.1.x
2422
6.0.x
2523
8.0.x
24+
9.0.x
2625
2726
- name: Run NUKE
2827
run: ./build.ps1
@@ -63,10 +62,9 @@ jobs:
6362
uses: actions/setup-dotnet@v5
6463
with:
6564
dotnet-version: |
66-
2.1.x
67-
3.1.x
6865
6.0.x
6966
8.0.x
67+
9.0.x
7068
7169
- name: Run NUKE
7270
run: ./build.sh UnitTests

Build/Build.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ class Build : NukeBuild
4747
[Solution(GenerateProjects = true)]
4848
readonly Solution Solution;
4949

50-
[GitVersion(Framework = "net6.0", NoCache = true, NoFetch = true)]
50+
[GitVersion(Framework = "net9.0", NoCache = true, NoFetch = true)]
5151
readonly GitVersion GitVersion;
5252

5353
AbsolutePath ArtifactsDirectory => RootDirectory / "Artifacts";
@@ -217,7 +217,7 @@ void ReportTestOutcome(params string[] globFilters)
217217
.Executes(() =>
218218
{
219219
ReportGenerator(s => s
220-
.SetProcessToolPath(NuGetToolPathResolver.GetPackageExecutable("ReportGenerator", "ReportGenerator.dll", framework: "net6.0"))
220+
.SetProcessToolPath(NuGetToolPathResolver.GetPackageExecutable("ReportGenerator", "ReportGenerator.dll", framework: "net9.0"))
221221
.SetTargetDirectory(TestResultsDirectory / "reports")
222222
.AddReports(TestResultsDirectory / "**/coverage.cobertura.xml")
223223
.AddReportTypes(

Build/_build.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
33
<OutputType>Exe</OutputType>
4-
<TargetFramework>net8.0</TargetFramework>
4+
<TargetFramework>net9.0</TargetFramework>
55
<RootNamespace></RootNamespace>
66
<NoWarn>CS0649;CS0169</NoWarn>
77
<NukeRootDirectory>..\</NukeRootDirectory>

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Extends https://www.fluentassertions.com with specialized assertions for dealing
1818
> This set of extensions was extracted from Fluent Assertions 8 and is in maintenance mode. Pull Requests will still be accepted, but we will not actively work on improvements or bugs.
1919
2020
# Information
21-
* Uses [Semantic Versioning](https://semver.org/lang/nl/)
21+
* Uses [Semantic Versioning](https://semver.org/)
2222
* Uses Githubflow, so pull requests usually result in a new release
2323
* The contribution guidelines are described [here](CONTRIBUTING.md).
2424

@@ -32,10 +32,10 @@ This package is shipped as a [NuGet package](https://www.nuget.org/packages/Flue
3232

3333
## Prerequisites
3434

35-
* Visual Studio 2022 or JetBrains Rider 2021.3
36-
* Build Tools 2022 (including the Universal Windows Platform build tools).
35+
* Visual Studio 2022 17.14.+ or JetBrains Rider 2024.3
36+
* Build Tools 2022.
3737
* .NET Framework 4.7 SDK
38-
* .NET 8.0 SDK installed. Check the `global.json`` for the current minimum required version.
38+
* .NET 9.0 SDK installed. Check the `global.json`` for the current minimum required version.
3939

4040
## Building
4141

0 commit comments

Comments
 (0)