From 24fbd2848c38922a40a18cdcee3bc8bae85362ea Mon Sep 17 00:00:00 2001 From: Hal Spang Date: Tue, 15 Jul 2025 12:59:29 -0700 Subject: [PATCH] Revert "Move from net6 to net8 target (#445)" This reverts commit 7a2880eb18d1900258eca5bb2d9b1346453f5e1c. --- .github/workflows/validate-build.yml | 8 +++---- Directory.Packages.props | 22 +++++++++---------- .../AzureFunctionsApp.csproj | 2 +- samples/ScheduleWebApp/ScheduleWebApp.csproj | 2 +- samples/WebAPI/WebAPI.csproj | 2 +- .../AzureManaged/Client.AzureManaged.csproj | 2 +- src/Client/Grpc/Client.Grpc.csproj | 2 +- src/Grpc/Grpc.csproj | 4 ++-- src/ScheduledTasks/ScheduledTasks.csproj | 2 +- .../AzureManaged/Worker.AzureManaged.csproj | 2 +- src/Worker/Grpc/Worker.Grpc.csproj | 2 +- .../Abstractions.Tests.csproj | 2 +- test/Analyzers.Tests/Analyzers.Tests.csproj | 2 +- test/Benchmarks/Benchmarks.csproj | 2 +- .../Client.AzureManaged.Tests.csproj | 2 +- test/Client/Core.Tests/Client.Tests.csproj | 2 +- .../Grpc.Tests/Client.Grpc.Tests.csproj | 2 +- ...rchestrationServiceClientShim.Tests.csproj | 2 +- test/Generators.Tests/Generators.Tests.csproj | 2 +- .../Grpc.IntegrationTests.csproj | 2 +- .../ScheduledTasks.Tests.csproj | 4 ++-- .../Shared.AzureManaged.Tests.csproj | 2 +- test/TestHelpers/TestHelpers.csproj | 2 +- .../Worker.AzureManaged.Tests.csproj | 2 +- test/Worker/Core.Tests/Worker.Tests.csproj | 2 +- .../Grpc.Tests/Worker.Grpc.Tests.csproj | 2 +- 26 files changed, 41 insertions(+), 41 deletions(-) diff --git a/.github/workflows/validate-build.yml b/.github/workflows/validate-build.yml index 39cff6f0..497ceac7 100644 --- a/.github/workflows/validate-build.yml +++ b/.github/workflows/validate-build.yml @@ -23,13 +23,13 @@ jobs: steps: - uses: actions/checkout@v3 - - name: Setup .NET 8.0 - uses: actions/setup-dotnet@v4 + - name: Setup .NET 6.0 + uses: actions/setup-dotnet@v3 with: - dotnet-version: '8.0.x' + dotnet-version: '6.0.x' - name: Setup .NET from global.json - uses: actions/setup-dotnet@v4 + uses: actions/setup-dotnet@v3 with: global-json-file: global.json diff --git a/Directory.Packages.props b/Directory.Packages.props index 179d8fd7..8388030f 100644 --- a/Directory.Packages.props +++ b/Directory.Packages.props @@ -9,15 +9,15 @@ - - - + + + - - - - + + + + @@ -73,10 +73,10 @@ - - - - + + + + diff --git a/samples/AzureFunctionsApp/AzureFunctionsApp.csproj b/samples/AzureFunctionsApp/AzureFunctionsApp.csproj index 100aa1c7..1e56f9fd 100644 --- a/samples/AzureFunctionsApp/AzureFunctionsApp.csproj +++ b/samples/AzureFunctionsApp/AzureFunctionsApp.csproj @@ -1,7 +1,7 @@  - net8.0 + net6.0 v4 Exe enable diff --git a/samples/ScheduleWebApp/ScheduleWebApp.csproj b/samples/ScheduleWebApp/ScheduleWebApp.csproj index b92b74e9..8206fa42 100644 --- a/samples/ScheduleWebApp/ScheduleWebApp.csproj +++ b/samples/ScheduleWebApp/ScheduleWebApp.csproj @@ -1,7 +1,7 @@ - net8.0 + net6.0 enable enable true diff --git a/samples/WebAPI/WebAPI.csproj b/samples/WebAPI/WebAPI.csproj index 67cb5924..2ee98470 100644 --- a/samples/WebAPI/WebAPI.csproj +++ b/samples/WebAPI/WebAPI.csproj @@ -1,7 +1,7 @@  - net8.0 + net6.0 enable enable true diff --git a/src/Client/AzureManaged/Client.AzureManaged.csproj b/src/Client/AzureManaged/Client.AzureManaged.csproj index fbc75495..ae63b9a9 100644 --- a/src/Client/AzureManaged/Client.AzureManaged.csproj +++ b/src/Client/AzureManaged/Client.AzureManaged.csproj @@ -1,7 +1,7 @@  - net8.0 + net6.0 Azure Managed extensions for the Durable Task Framework client. true preview.1 diff --git a/src/Client/Grpc/Client.Grpc.csproj b/src/Client/Grpc/Client.Grpc.csproj index 3dc9a16f..fe13b9df 100644 --- a/src/Client/Grpc/Client.Grpc.csproj +++ b/src/Client/Grpc/Client.Grpc.csproj @@ -1,7 +1,7 @@ - netstandard2.0;net8.0 + netstandard2.0;net6.0 The gRPC client for the Durable Task Framework. true diff --git a/src/Grpc/Grpc.csproj b/src/Grpc/Grpc.csproj index 62c5d0d0..4839af20 100644 --- a/src/Grpc/Grpc.csproj +++ b/src/Grpc/Grpc.csproj @@ -1,7 +1,7 @@  - netstandard2.0;net8.0 + netstandard2.0;net6.0 The gRPC Protobuf .NET services for Durable Task Framework. @@ -13,7 +13,7 @@ - + diff --git a/src/ScheduledTasks/ScheduledTasks.csproj b/src/ScheduledTasks/ScheduledTasks.csproj index 0625d7d2..a9951609 100644 --- a/src/ScheduledTasks/ScheduledTasks.csproj +++ b/src/ScheduledTasks/ScheduledTasks.csproj @@ -1,7 +1,7 @@  - net8.0 + net6.0 Durable Task Scheduled Tasks Client true preview.1 diff --git a/src/Worker/AzureManaged/Worker.AzureManaged.csproj b/src/Worker/AzureManaged/Worker.AzureManaged.csproj index 431afe7d..4e7aefd6 100644 --- a/src/Worker/AzureManaged/Worker.AzureManaged.csproj +++ b/src/Worker/AzureManaged/Worker.AzureManaged.csproj @@ -1,7 +1,7 @@  - net8.0 + net6.0 Azure Managed extensions for the Durable Task Framework worker. true preview.1 diff --git a/src/Worker/Grpc/Worker.Grpc.csproj b/src/Worker/Grpc/Worker.Grpc.csproj index c54e39b5..991fef8f 100644 --- a/src/Worker/Grpc/Worker.Grpc.csproj +++ b/src/Worker/Grpc/Worker.Grpc.csproj @@ -1,7 +1,7 @@ - netstandard2.0;net8.0 + netstandard2.0;net6.0 The gRPC worker for the Durable Task Framework. true diff --git a/test/Abstractions.Tests/Abstractions.Tests.csproj b/test/Abstractions.Tests/Abstractions.Tests.csproj index 2d01e54d..e4cf7da9 100644 --- a/test/Abstractions.Tests/Abstractions.Tests.csproj +++ b/test/Abstractions.Tests/Abstractions.Tests.csproj @@ -1,7 +1,7 @@ - net8.0 + net6.0 diff --git a/test/Analyzers.Tests/Analyzers.Tests.csproj b/test/Analyzers.Tests/Analyzers.Tests.csproj index b1117575..a43fbdd0 100644 --- a/test/Analyzers.Tests/Analyzers.Tests.csproj +++ b/test/Analyzers.Tests/Analyzers.Tests.csproj @@ -1,7 +1,7 @@  - net8.0 + net6.0 diff --git a/test/Benchmarks/Benchmarks.csproj b/test/Benchmarks/Benchmarks.csproj index 8647ccc2..58504ddf 100644 --- a/test/Benchmarks/Benchmarks.csproj +++ b/test/Benchmarks/Benchmarks.csproj @@ -1,7 +1,7 @@  - net8.0 + net6.0 Exe Benchmarks diff --git a/test/Client/AzureManaged.Tests/Client.AzureManaged.Tests.csproj b/test/Client/AzureManaged.Tests/Client.AzureManaged.Tests.csproj index ec2dbd25..22142fa2 100644 --- a/test/Client/AzureManaged.Tests/Client.AzureManaged.Tests.csproj +++ b/test/Client/AzureManaged.Tests/Client.AzureManaged.Tests.csproj @@ -1,7 +1,7 @@ - net8.0 + net6.0 diff --git a/test/Client/Core.Tests/Client.Tests.csproj b/test/Client/Core.Tests/Client.Tests.csproj index 413c1244..29966adc 100644 --- a/test/Client/Core.Tests/Client.Tests.csproj +++ b/test/Client/Core.Tests/Client.Tests.csproj @@ -1,7 +1,7 @@ - net8.0 + net6.0 diff --git a/test/Client/Grpc.Tests/Client.Grpc.Tests.csproj b/test/Client/Grpc.Tests/Client.Grpc.Tests.csproj index ab59f7f4..6d3dba79 100644 --- a/test/Client/Grpc.Tests/Client.Grpc.Tests.csproj +++ b/test/Client/Grpc.Tests/Client.Grpc.Tests.csproj @@ -1,7 +1,7 @@  - net8.0;net48 + net6.0;net48 diff --git a/test/Client/OrchestrationServiceClientShim.Tests/Client.OrchestrationServiceClientShim.Tests.csproj b/test/Client/OrchestrationServiceClientShim.Tests/Client.OrchestrationServiceClientShim.Tests.csproj index ec84beee..f24130cb 100644 --- a/test/Client/OrchestrationServiceClientShim.Tests/Client.OrchestrationServiceClientShim.Tests.csproj +++ b/test/Client/OrchestrationServiceClientShim.Tests/Client.OrchestrationServiceClientShim.Tests.csproj @@ -1,7 +1,7 @@ - net8.0 + net6.0 diff --git a/test/Generators.Tests/Generators.Tests.csproj b/test/Generators.Tests/Generators.Tests.csproj index 24382417..f805fecb 100644 --- a/test/Generators.Tests/Generators.Tests.csproj +++ b/test/Generators.Tests/Generators.Tests.csproj @@ -1,7 +1,7 @@  - net8.0 + net6.0 diff --git a/test/Grpc.IntegrationTests/Grpc.IntegrationTests.csproj b/test/Grpc.IntegrationTests/Grpc.IntegrationTests.csproj index 3c9f765b..e6b0aee7 100644 --- a/test/Grpc.IntegrationTests/Grpc.IntegrationTests.csproj +++ b/test/Grpc.IntegrationTests/Grpc.IntegrationTests.csproj @@ -1,7 +1,7 @@ - net8.0 + net6.0 diff --git a/test/ScheduledTasks.Tests/ScheduledTasks.Tests.csproj b/test/ScheduledTasks.Tests/ScheduledTasks.Tests.csproj index c10f2084..33726a62 100644 --- a/test/ScheduledTasks.Tests/ScheduledTasks.Tests.csproj +++ b/test/ScheduledTasks.Tests/ScheduledTasks.Tests.csproj @@ -2,7 +2,7 @@ - net8.0 + net6.0 enable enable false @@ -18,4 +18,4 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/test/Shared/AzureManaged.Tests/Shared.AzureManaged.Tests.csproj b/test/Shared/AzureManaged.Tests/Shared.AzureManaged.Tests.csproj index 424359f9..f9822995 100644 --- a/test/Shared/AzureManaged.Tests/Shared.AzureManaged.Tests.csproj +++ b/test/Shared/AzureManaged.Tests/Shared.AzureManaged.Tests.csproj @@ -1,7 +1,7 @@ - net8.0 + net6.0 diff --git a/test/TestHelpers/TestHelpers.csproj b/test/TestHelpers/TestHelpers.csproj index 51cc3d8f..55514082 100644 --- a/test/TestHelpers/TestHelpers.csproj +++ b/test/TestHelpers/TestHelpers.csproj @@ -1,7 +1,7 @@  - net8.0;netstandard2.0 + net6.0;netstandard2.0 diff --git a/test/Worker/AzureManaged.Tests/Worker.AzureManaged.Tests.csproj b/test/Worker/AzureManaged.Tests/Worker.AzureManaged.Tests.csproj index 91d07c5e..4a5a7cc1 100644 --- a/test/Worker/AzureManaged.Tests/Worker.AzureManaged.Tests.csproj +++ b/test/Worker/AzureManaged.Tests/Worker.AzureManaged.Tests.csproj @@ -1,7 +1,7 @@ - net8.0 + net6.0 diff --git a/test/Worker/Core.Tests/Worker.Tests.csproj b/test/Worker/Core.Tests/Worker.Tests.csproj index c97b649e..736986d4 100644 --- a/test/Worker/Core.Tests/Worker.Tests.csproj +++ b/test/Worker/Core.Tests/Worker.Tests.csproj @@ -1,7 +1,7 @@ - net8.0 + net6.0 diff --git a/test/Worker/Grpc.Tests/Worker.Grpc.Tests.csproj b/test/Worker/Grpc.Tests/Worker.Grpc.Tests.csproj index 6dd71a29..cda2aa55 100644 --- a/test/Worker/Grpc.Tests/Worker.Grpc.Tests.csproj +++ b/test/Worker/Grpc.Tests/Worker.Grpc.Tests.csproj @@ -1,7 +1,7 @@ - net8.0;net48 + net6.0;net48