From 355277512a6f49ca09b1973ce34e077e0cd0f7d1 Mon Sep 17 00:00:00 2001 From: Kevin Bost Date: Thu, 4 Jun 2026 22:48:24 -0700 Subject: [PATCH] ci: Drop .NET 9.0 support from CI pipeline Removes the .NET 9.0 SDK setup and test step from the continuous integration workflow. This change streamlines the pipeline by focusing solely on .NET 10.0, which is the current primary target framework. --- .github/workflows/dotnet-core.yml | 11 ++--------- Directory.Packages.props | 1 + 2 files changed, 3 insertions(+), 9 deletions(-) diff --git a/.github/workflows/dotnet-core.yml b/.github/workflows/dotnet-core.yml index 078c0a4..5acb726 100644 --- a/.github/workflows/dotnet-core.yml +++ b/.github/workflows/dotnet-core.yml @@ -49,11 +49,7 @@ jobs: - name: Setup .NET uses: actions/setup-dotnet@v5 with: - dotnet-version: | - 9.x - 10.x - env: - NUGET_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}} + dotnet-version: 10.x - name: Install dependencies run: dotnet restore @@ -66,10 +62,7 @@ jobs: - name: Test net10.0 run: dotnet test --framework net10.0-windows --no-build --verbosity normal --configuration ${{ env.configuration }} --blame-crash --blame-crash-collect-always --blame-hang --blame-hang-timeout 5m - - - name: Test net9.0 - run: dotnet test --framework net9.0-windows --no-build --verbosity normal --configuration ${{ env.configuration }} --blame-crash --blame-crash-collect-always --blame-hang --blame-hang-timeout 5m - + - name: Test Logs if: ${{ always() }} uses: actions/upload-artifact@v7 diff --git a/Directory.Packages.props b/Directory.Packages.props index 800d990..80df344 100644 --- a/Directory.Packages.props +++ b/Directory.Packages.props @@ -1,6 +1,7 @@ true + true