diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 8024ea2..faf689a 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -11,7 +11,7 @@ jobs: - name: Setup .NET uses: actions/setup-dotnet@v4 with: - dotnet-version: 8.0.x + dotnet-version: 9.0.x - name: Restore run: dotnet restore diff --git a/.github/workflows/CodeQL.yml b/.github/workflows/CodeQL.yml index aed6d07..3d014d7 100644 --- a/.github/workflows/CodeQL.yml +++ b/.github/workflows/CodeQL.yml @@ -53,7 +53,7 @@ jobs: - name: Setup .NET uses: actions/setup-dotnet@v4 with: - dotnet-version: 8.0.x + dotnet-version: 9.0.x # Autobuild attempts to build any compiled languages (C/C++, C#, or Java). # If this step fails, then you should remove it and run the build manually (see below) diff --git a/.github/workflows/Results.yml b/.github/workflows/Results.yml index 77426b5..7566a2b 100644 --- a/.github/workflows/Results.yml +++ b/.github/workflows/Results.yml @@ -13,23 +13,23 @@ jobs: - name: Setup .NET uses: actions/setup-dotnet@v4 with: - dotnet-version: 8.0.x + dotnet-version: 9.0.x - name: Build benchmarks run: dotnet publish -c Release - name: Run benchmarks run: dotnet BenchmarkMockNet.dll - working-directory: BenchmarkMockNet/bin/Release/net8.0/publish + working-directory: BenchmarkMockNet/bin/Release/net9.0/publish - name: Upload results report uses: actions/upload-artifact@v4 with: name: Results Report - path: BenchmarkMockNet/bin/Release/net8.0/publish/Results.md + path: BenchmarkMockNet/bin/Release/net9.0/publish/Results.md - name: Upload raw results uses: actions/upload-artifact@v4 with: name: Raw Results - path: BenchmarkMockNet/bin/Release/net8.0/publish/BenchmarkDotNet.Artifacts/results/*.md \ No newline at end of file + path: BenchmarkMockNet/bin/Release/net9.0/publish/BenchmarkDotNet.Artifacts/results/*.md \ No newline at end of file diff --git a/.github/workflows/Sonar.yml b/.github/workflows/Sonar.yml index 98fdbcd..25655e2 100644 --- a/.github/workflows/Sonar.yml +++ b/.github/workflows/Sonar.yml @@ -17,7 +17,7 @@ jobs: - name: Setup .NET uses: actions/setup-dotnet@v4 with: - dotnet-version: 8.0.x + dotnet-version: 9.0.x - name: Install Java uses: actions/setup-java@v4 diff --git a/BenchmarkMockNet.Tests/BenchmarkMockNet.Tests.csproj b/BenchmarkMockNet.Tests/BenchmarkMockNet.Tests.csproj index 14ea04f..f6f9e0b 100644 --- a/BenchmarkMockNet.Tests/BenchmarkMockNet.Tests.csproj +++ b/BenchmarkMockNet.Tests/BenchmarkMockNet.Tests.csproj @@ -1,12 +1,12 @@ - net8.0 + net9.0 enable enable - + diff --git a/BenchmarkMockNet/BenchmarkMockNet.csproj b/BenchmarkMockNet/BenchmarkMockNet.csproj index e000381..c9957bc 100644 --- a/BenchmarkMockNet/BenchmarkMockNet.csproj +++ b/BenchmarkMockNet/BenchmarkMockNet.csproj @@ -2,7 +2,7 @@ Exe - net8.0 + net9.0 enable enable false diff --git a/README.md b/README.md index 52c5005..5b4c60d 100644 --- a/README.md +++ b/README.md @@ -58,7 +58,7 @@ Latest official results from the GitHub Actions workflow are available on the [R ### Requirements -- .NET SDK 8 +- .NET SDK ### Installation @@ -67,6 +67,6 @@ Latest official results from the GitHub Actions workflow are available on the [R ### Usage -1. Once restored and built, run `dotnet bin/Release/net8.0/publish/BenchmarkMockNet.dll` to execute the benchmarks +1. Once restored and built, run `dotnet bin/Release/net9.0/publish/BenchmarkMockNet.dll` to execute the benchmarks 2. Benchmarks will take about 5 minutes to run 3. Results are stored in the `BenchmarkDotNet.Artifacts` directory, in both HTML and Markdown formats