From 24c8634d6aabd7a097f7e48473a73c2dacf5739c Mon Sep 17 00:00:00 2001 From: Asriel Camora Date: Thu, 14 Mar 2024 10:31:23 -0700 Subject: [PATCH] Update CI/CD to .NET 8 --- .github/workflows/build.yml | 3 ++- Benchmark/Bench.cs | 4 ++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index e85119a..c862fe5 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -23,7 +23,7 @@ jobs: - name: Setup .NET uses: actions/setup-dotnet@v3 with: - dotnet-version: '7.0' + dotnet-version: '8.0' - name: Download Dalamud run: | @@ -93,6 +93,7 @@ jobs: dotnet-version: | 7.0 8.0 + 9.0 - name: Download Dalamud run: | diff --git a/Benchmark/Bench.cs b/Benchmark/Bench.cs index 95f7659..e675d29 100644 --- a/Benchmark/Bench.cs +++ b/Benchmark/Bench.cs @@ -6,8 +6,8 @@ using Craftimizer.Solver; namespace Craftimizer.Benchmark; -[SimpleJob(RuntimeMoniker.Net70, baseline: true)] -[SimpleJob(RuntimeMoniker.Net80)] +[SimpleJob(RuntimeMoniker.Net80, baseline: true)] +[SimpleJob(RuntimeMoniker.Net90)] [MinColumn, Q1Column, Q3Column, MaxColumn] [DotTraceDiagnoser] public class Bench