From b68bf26af8e70dc3464c039dea59ae929fe78ddb Mon Sep 17 00:00:00 2001 From: "internalautomation[bot]" <85681268+internalautomation[bot]@users.noreply.github.com> Date: Thu, 18 Dec 2025 13:21:12 -0500 Subject: [PATCH 1/4] Updates for .NET 10 --- .github/workflows/ci.yml | 12 +++++------- .github/workflows/release.yml | 8 ++++---- global.json | 2 +- .../NServiceBus.AzureFunctions.Analyzer.Tests.csproj | 2 +- ...Bus.AzureFunctions.Worker.ServiceBus.Tests.csproj | 2 +- ...zureFunctions.Worker.SourceGenerator.Tests.csproj | 2 +- 6 files changed, 13 insertions(+), 15 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 801f4671..21ea072a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -29,26 +29,24 @@ jobs: SECRETS_AVAILABLE: ${{ secrets.SECRETS_AVAILABLE }} run: exit $(If ($env:SECRETS_AVAILABLE -eq 'true') { 0 } Else { 1 }) - name: Checkout - uses: actions/checkout@v4.2.2 + uses: actions/checkout@v6.0.1 with: fetch-depth: 0 - name: Setup .NET SDK - uses: actions/setup-dotnet@v4.1.0 + uses: actions/setup-dotnet@v5.0.1 with: - dotnet-version: | - 9.0.x - 8.0.x + global-json-file: global.json - name: Build run: dotnet build src --configuration Release - name: Upload packages if: matrix.name == 'Windows' - uses: actions/upload-artifact@v4.4.3 + uses: actions/upload-artifact@v6.0.0 with: name: NuGet packages path: nugets/ retention-days: 7 - name: Azure login - uses: azure/login@v2.2.0 + uses: azure/login@v2.3.0 with: creds: ${{ secrets.AZURE_ACI_CREDENTIALS }} - name: Setup infrastructure diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 1fe697b8..9ea420be 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -14,13 +14,13 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v4.2.2 + uses: actions/checkout@v6.0.1 with: fetch-depth: 0 - name: Setup .NET SDK - uses: actions/setup-dotnet@v4.1.0 + uses: actions/setup-dotnet@v5.0.1 with: - dotnet-version: 9.0.x + global-json-file: global.json - name: Build run: dotnet build src --configuration Release - name: Sign NuGet packages @@ -31,7 +31,7 @@ jobs: client-secret: ${{ secrets.AZURE_KEY_VAULT_CLIENT_SECRET }} certificate-name: ${{ secrets.AZURE_KEY_VAULT_CERTIFICATE_NAME }} - name: Publish artifacts - uses: actions/upload-artifact@v4.4.3 + uses: actions/upload-artifact@v6.0.0 with: name: nugets path: nugets/* diff --git a/global.json b/global.json index d5bf446d..f72210ca 100644 --- a/global.json +++ b/global.json @@ -1,6 +1,6 @@ { "sdk": { - "version": "9.0.100", + "version": "10.0.100", "rollForward": "latestFeature" } } \ No newline at end of file diff --git a/src/NServiceBus.AzureFunctions.Analyzer.Tests/NServiceBus.AzureFunctions.Analyzer.Tests.csproj b/src/NServiceBus.AzureFunctions.Analyzer.Tests/NServiceBus.AzureFunctions.Analyzer.Tests.csproj index 8faccc29..6f450a94 100644 --- a/src/NServiceBus.AzureFunctions.Analyzer.Tests/NServiceBus.AzureFunctions.Analyzer.Tests.csproj +++ b/src/NServiceBus.AzureFunctions.Analyzer.Tests/NServiceBus.AzureFunctions.Analyzer.Tests.csproj @@ -1,7 +1,7 @@  - net8.0;net9.0 + net10.0 diff --git a/src/NServiceBus.AzureFunctions.Worker.ServiceBus.Tests/NServiceBus.AzureFunctions.Worker.ServiceBus.Tests.csproj b/src/NServiceBus.AzureFunctions.Worker.ServiceBus.Tests/NServiceBus.AzureFunctions.Worker.ServiceBus.Tests.csproj index 2c3c24fd..15e39f3a 100644 --- a/src/NServiceBus.AzureFunctions.Worker.ServiceBus.Tests/NServiceBus.AzureFunctions.Worker.ServiceBus.Tests.csproj +++ b/src/NServiceBus.AzureFunctions.Worker.ServiceBus.Tests/NServiceBus.AzureFunctions.Worker.ServiceBus.Tests.csproj @@ -1,7 +1,7 @@ - net8.0;net9.0 + net10.0 true ..\NServiceBusTests.snk diff --git a/src/NServiceBus.AzureFunctions.Worker.SourceGenerator.Tests/NServiceBus.AzureFunctions.Worker.SourceGenerator.Tests.csproj b/src/NServiceBus.AzureFunctions.Worker.SourceGenerator.Tests/NServiceBus.AzureFunctions.Worker.SourceGenerator.Tests.csproj index 00131217..ba425341 100644 --- a/src/NServiceBus.AzureFunctions.Worker.SourceGenerator.Tests/NServiceBus.AzureFunctions.Worker.SourceGenerator.Tests.csproj +++ b/src/NServiceBus.AzureFunctions.Worker.SourceGenerator.Tests/NServiceBus.AzureFunctions.Worker.SourceGenerator.Tests.csproj @@ -1,7 +1,7 @@ - net8.0;net9.0 + net10.0 true ..\NServiceBusTests.snk From 4215a1029422c23bcb511d2960065008eb1b6276 Mon Sep 17 00:00:00 2001 From: "internalautomation[bot]" <85681268+internalautomation[bot]@users.noreply.github.com> Date: Fri, 16 Jan 2026 13:35:56 -0500 Subject: [PATCH 2/4] Updates for .NET 10 --- .../NServiceBus.AzureFunctions.Worker.ServiceBus.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/NServiceBus.AzureFunctions.Worker.ServiceBus/NServiceBus.AzureFunctions.Worker.ServiceBus.csproj b/src/NServiceBus.AzureFunctions.Worker.ServiceBus/NServiceBus.AzureFunctions.Worker.ServiceBus.csproj index a92088ec..ab219b77 100644 --- a/src/NServiceBus.AzureFunctions.Worker.ServiceBus/NServiceBus.AzureFunctions.Worker.ServiceBus.csproj +++ b/src/NServiceBus.AzureFunctions.Worker.ServiceBus/NServiceBus.AzureFunctions.Worker.ServiceBus.csproj @@ -19,7 +19,7 @@ - + From 7f5b1dadc3bf3ab23572ef7e9b0a10368240bb84 Mon Sep 17 00:00:00 2001 From: "internalautomation[bot]" <85681268+internalautomation[bot]@users.noreply.github.com> Date: Fri, 16 Jan 2026 14:26:18 -0500 Subject: [PATCH 3/4] Updates for .NET 10 --- global.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/global.json b/global.json index f72210ca..859752a8 100644 --- a/global.json +++ b/global.json @@ -1,6 +1,6 @@ { "sdk": { - "version": "10.0.100", + "version": "10.0.0", "rollForward": "latestFeature" } } \ No newline at end of file From ef5cce30d12e2deb50c2ae628a484266dd3fdb8b Mon Sep 17 00:00:00 2001 From: "internalautomation[bot]" <85681268+internalautomation[bot]@users.noreply.github.com> Date: Tue, 20 Jan 2026 13:20:17 -0500 Subject: [PATCH 4/4] Updates for .NET 10 --- .github/workflows/ci.yml | 2 +- .github/workflows/release.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 21ea072a..1292f5f8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -33,7 +33,7 @@ jobs: with: fetch-depth: 0 - name: Setup .NET SDK - uses: actions/setup-dotnet@v5.0.1 + uses: actions/setup-dotnet@v5.1.0 with: global-json-file: global.json - name: Build diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 9ea420be..d87e41c8 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -18,7 +18,7 @@ jobs: with: fetch-depth: 0 - name: Setup .NET SDK - uses: actions/setup-dotnet@v5.0.1 + uses: actions/setup-dotnet@v5.1.0 with: global-json-file: global.json - name: Build