From 3aed40cc5d9910e6132abded768a07f1407ab2b8 Mon Sep 17 00:00:00 2001 From: Timothy Mothra Lee Date: Fri, 6 Oct 2023 14:53:54 -0700 Subject: [PATCH 1/5] add net8 to test framework --- .github/workflows/build-and-test-BASE.yml | 3 ++- .github/workflows/build-and-test-LOGGING.yml | 3 ++- .github/workflows/build-and-test-NETCORE.yml | 3 ++- .github/workflows/build-and-test-WEB.yml | 3 ++- .github/workflows/redfield-sanity-check.yml | 3 ++- .props/Test.props | 2 +- 6 files changed, 11 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build-and-test-BASE.yml b/.github/workflows/build-and-test-BASE.yml index 08368bca07..15e5bea002 100644 --- a/.github/workflows/build-and-test-BASE.yml +++ b/.github/workflows/build-and-test-BASE.yml @@ -24,7 +24,7 @@ jobs: fail-fast: false matrix: os: [ubuntu-latest, windows-latest] - framework: [net452, net462, net472, net480, net481, netcoreapp3.1, net6.0, net7.0] + framework: [net452, net462, net472, net480, net481, netcoreapp3.1, net6.0, net7.0, net8.0] include: - os: ubuntu-latest args: "--filter TestCategory!=WindowsOnly" @@ -39,6 +39,7 @@ jobs: 3.1.x 6.0.x 7.0.x + 8.0.x - name: Restore run: dotnet restore ${{ env.SOLUTION }} diff --git a/.github/workflows/build-and-test-LOGGING.yml b/.github/workflows/build-and-test-LOGGING.yml index 270c25a213..56a8b2ce78 100644 --- a/.github/workflows/build-and-test-LOGGING.yml +++ b/.github/workflows/build-and-test-LOGGING.yml @@ -24,7 +24,7 @@ jobs: fail-fast: false matrix: os: [windows-latest] - framework: [net452, net462, net472, net480, net481, netcoreapp3.1, net6.0, net7.0] + framework: [net452, net462, net472, net480, net481, netcoreapp3.1, net6.0, net7.0, net8.0] steps: - uses: actions/checkout@v3 @@ -36,6 +36,7 @@ jobs: 3.1.x 6.0.x 7.0.x + 8.0.x - name: Restore run: dotnet restore ${{ env.SOLUTION }} diff --git a/.github/workflows/build-and-test-NETCORE.yml b/.github/workflows/build-and-test-NETCORE.yml index ffc2b69cf6..6287ac0535 100644 --- a/.github/workflows/build-and-test-NETCORE.yml +++ b/.github/workflows/build-and-test-NETCORE.yml @@ -24,7 +24,7 @@ jobs: fail-fast: false matrix: os: [ubuntu-latest, windows-latest] - framework: [net452, net462, net472, net480, net481, netcoreapp3.1, net6.0, net7.0] + framework: [net452, net462, net472, net480, net481, netcoreapp3.1, net6.0, net7.0, net8.0] include: - os: ubuntu-latest args: "--filter TestCategory!=WindowsOnly" @@ -39,6 +39,7 @@ jobs: 3.1.x 6.0.x 7.0.x + 8.0.x - name: Restore run: dotnet restore ${{ env.SOLUTION }} diff --git a/.github/workflows/build-and-test-WEB.yml b/.github/workflows/build-and-test-WEB.yml index 57cca6e32c..3b9a18469a 100644 --- a/.github/workflows/build-and-test-WEB.yml +++ b/.github/workflows/build-and-test-WEB.yml @@ -24,7 +24,7 @@ jobs: fail-fast: false matrix: os: [windows-latest] - framework: [net452, net462, net472, net480, net481, netcoreapp3.1, net6.0, net7.0] + framework: [net452, net462, net472, net480, net481, netcoreapp3.1, net6.0, net7.0, net8.0] steps: - uses: actions/checkout@v3 @@ -36,6 +36,7 @@ jobs: 3.1.x 6.0.x 7.0.x + 8.0.x - name: Restore run: dotnet restore ${{ env.SOLUTION }} diff --git a/.github/workflows/redfield-sanity-check.yml b/.github/workflows/redfield-sanity-check.yml index 98c1945139..a2fef9dc91 100644 --- a/.github/workflows/redfield-sanity-check.yml +++ b/.github/workflows/redfield-sanity-check.yml @@ -24,7 +24,7 @@ jobs: fail-fast: false matrix: os: [ubuntu-latest] - framework: [netcoreapp3.1,net6.0,net7.0] + framework: [netcoreapp3.1,net6.0,net7.0,net8.0] include: - os: ubuntu-latest args: "--filter TestCategory!=WindowsOnly" @@ -39,6 +39,7 @@ jobs: 3.1.x 6.0.x 7.0.x + 8.0.x - name: Restore run: dotnet restore ${{ env.SOLUTION }} diff --git a/.props/Test.props b/.props/Test.props index e396eba6e0..260679e8d4 100644 --- a/.props/Test.props +++ b/.props/Test.props @@ -20,7 +20,7 @@ - net7.0 (GA Nov 2022) --> - net7.0;net6.0;netcoreapp3.1; + net8.0,net7.0;net6.0;netcoreapp3.1; net481;net480;net472;net462; net46;net452; From 4661d2f4bd9b74dda80b0524308a5158e7fcdd2c Mon Sep 17 00:00:00 2001 From: Timothy Mothra Lee Date: Fri, 17 Nov 2023 14:27:30 -0800 Subject: [PATCH 2/5] fix typo --- .props/Test.props | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.props/Test.props b/.props/Test.props index 260679e8d4..f80c0e89e3 100644 --- a/.props/Test.props +++ b/.props/Test.props @@ -20,7 +20,7 @@ - net7.0 (GA Nov 2022) --> - net8.0,net7.0;net6.0;netcoreapp3.1; + net8.0;net7.0;net6.0;netcoreapp3.1; net481;net480;net472;net462; net46;net452; From 9ae6f7d835562c6490b073764205aaff2e75ee3e Mon Sep 17 00:00:00 2001 From: Timothy Mothra Lee Date: Fri, 17 Nov 2023 14:48:44 -0800 Subject: [PATCH 3/5] fix properties --- Directory.Build.props | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Directory.Build.props b/Directory.Build.props index 58e3e9f31c..da3949143b 100644 --- a/Directory.Build.props +++ b/Directory.Build.props @@ -82,8 +82,8 @@ preview True - True - True + True + True