From c6155bbbd67febecbe622c58ab7aadb3e12b5491 Mon Sep 17 00:00:00 2001 From: Casey Waldren Date: Fri, 1 Nov 2024 13:29:24 -0700 Subject: [PATCH 1/2] ci: specify net7.0 as the target test framework in release-sdk-client.yml --- .github/workflows/release-sdk-client.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/release-sdk-client.yml b/.github/workflows/release-sdk-client.yml index fdea6e80..eae5391c 100644 --- a/.github/workflows/release-sdk-client.yml +++ b/.github/workflows/release-sdk-client.yml @@ -45,6 +45,7 @@ jobs: with: project_file: ${{ env.PROJECT_FILE }} test_project_file: ${{ env.TEST_PROJECT_FILE }} + target_test_framework: "net7.0" - name: Release build uses: ./.github/actions/build-release From 274cd4c9b785be0ef4789ed521169d2bd44ed34d Mon Sep 17 00:00:00 2001 From: Casey Waldren Date: Fri, 1 Nov 2024 13:31:45 -0700 Subject: [PATCH 2/2] setup net7 in release action --- .github/actions/build-release/action.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/actions/build-release/action.yml b/.github/actions/build-release/action.yml index 6d217f95..35a6bef9 100644 --- a/.github/actions/build-release/action.yml +++ b/.github/actions/build-release/action.yml @@ -11,7 +11,9 @@ runs: - name: Setup dotnet build tools uses: actions/setup-dotnet@v4 with: - dotnet-version: 6.0 + dotnet-version: | + 6.0 + 7.0 - name: Display dotnet version shell: bash