From 45ff8235b1ae23063e6175b5ed2b40f6d76acfee Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Wed, 26 Aug 2026 08:53:49 +0000 Subject: [PATCH 01/32] Backflow from https://github.com/dotnet/dotnet / e20a5af build 328663 Diff: https://github.com/dotnet/dotnet/compare/361d4f1cdad4d5a13961cde7bb455f0a47cbbffd..e20a5af9c83aaf22b041bc9911de0cbfff9c7317 From: https://github.com/dotnet/dotnet/commit/361d4f1cdad4d5a13961cde7bb455f0a47cbbffd To: https://github.com/dotnet/dotnet/commit/e20a5af9c83aaf22b041bc9911de0cbfff9c7317 [[ commit created by automation ]] --- eng/Versions.props | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eng/Versions.props b/eng/Versions.props index 90b54be1ec..af957c5b62 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -5,7 +5,7 @@ 11.0.100 rc - 1 + 2 From 893d462e9226fecf27bb984c32d68f3f9e22d038 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Wed, 26 Aug 2026 08:53:50 +0000 Subject: [PATCH 02/32] Update dependencies from build 328663 Updated Dependencies: Microsoft.DotNet.Arcade.Sdk (Version 11.0.0-beta.26411.119 -> 11.0.0-beta.26425.121) System.CommandLine (Version 3.0.0-rc.1.26411.119 -> 3.0.0-rc.2.26425.121) System.IO.Hashing, System.Security.Cryptography.Xml, System.Text.Json (Version 11.0.0-rc.1.26411.119 -> 11.0.0-rc.2.26425.121) [[ commit created by automation ]] --- eng/Version.Details.props | 10 ++++----- eng/Version.Details.xml | 22 +++++++++---------- eng/common/Get-GitHubAppToken.ps1 | 18 +++++++++++---- .../core-templates/job/helix-job-monitor.yml | 13 +++++++++++ eng/common/core-templates/job/onelocbuild.yml | 22 +++++++++++-------- .../core-templates/post-build/post-build.yml | 1 + .../core-templates/steps/publish-logs.yml | 22 +++++++++++++------ global.json | 6 ++--- 8 files changed, 75 insertions(+), 39 deletions(-) diff --git a/eng/Version.Details.props b/eng/Version.Details.props index 6186912400..b45cc52e4c 100644 --- a/eng/Version.Details.props +++ b/eng/Version.Details.props @@ -6,11 +6,11 @@ This file should be imported by eng/Versions.props - 11.0.0-beta.26411.119 - 3.0.0-rc.1.26411.119 - 11.0.0-rc.1.26411.119 - 11.0.0-rc.1.26411.119 - 11.0.0-rc.1.26411.119 + 11.0.0-beta.26425.121 + 3.0.0-rc.2.26425.121 + 11.0.0-rc.2.26425.121 + 11.0.0-rc.2.26425.121 + 11.0.0-rc.2.26425.121 diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index eacb000902..b1e3043aa4 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,28 +1,28 @@ - + - + https://github.com/dotnet/dotnet - 7cdb217445905f3342bbb0266a4497b9a014389a + e20a5af9c83aaf22b041bc9911de0cbfff9c7317 - + https://github.com/dotnet/dotnet - 7cdb217445905f3342bbb0266a4497b9a014389a + e20a5af9c83aaf22b041bc9911de0cbfff9c7317 - + https://github.com/dotnet/dotnet - 7cdb217445905f3342bbb0266a4497b9a014389a + e20a5af9c83aaf22b041bc9911de0cbfff9c7317 - + https://github.com/dotnet/dotnet - 7cdb217445905f3342bbb0266a4497b9a014389a + e20a5af9c83aaf22b041bc9911de0cbfff9c7317 - + https://github.com/dotnet/dotnet - 7cdb217445905f3342bbb0266a4497b9a014389a + e20a5af9c83aaf22b041bc9911de0cbfff9c7317 diff --git a/eng/common/Get-GitHubAppToken.ps1 b/eng/common/Get-GitHubAppToken.ps1 index 6b5899d7a2..9c7e3dcd6a 100644 --- a/eng/common/Get-GitHubAppToken.ps1 +++ b/eng/common/Get-GitHubAppToken.ps1 @@ -113,10 +113,13 @@ try { $installations = @() $page = 1 do { - $pageInstallations = @(Invoke-RestMethod ` + # Assign the response before wrapping it in @(). PowerShell otherwise + # preserves a top-level JSON array as one nested pipeline object. + $pageResponse = Invoke-RestMethod ` -Uri "https://api.github.com/app/installations?per_page=100&page=$page" ` -Headers $headers ` - -Method Get) + -Method Get + $pageInstallations = @($pageResponse) $installations += $pageInstallations $page++ } while ($pageInstallations.Count -eq 100) @@ -125,12 +128,19 @@ catch { Write-PipelineTelemetryError -Category 'Build' -Message "Failed to list GitHub App installations: $_. The signed JWT may be invalid or the App's Client ID ('$AppClientId') may be incorrect." exit 1 } -$installation = $installations | Where-Object { $_.account.login -ieq $InstallationOwner } | Select-Object -First 1 -if (-not $installation) { +$matchingInstallations = @($installations | Where-Object { $_.account.login -ieq $InstallationOwner }) +if ($matchingInstallations.Count -eq 0) { $found = ($installations | ForEach-Object { $_.account.login }) -join ', ' Write-PipelineTelemetryError -Category 'Build' -Message "No installation found for '$InstallationOwner'. App is installed on: $found" exit 1 } +if ($matchingInstallations.Count -ne 1) { + $matchingIds = ($matchingInstallations | ForEach-Object { $_.id }) -join ', ' + Write-PipelineTelemetryError -Category 'Build' -Message "Found multiple installations for '$InstallationOwner': $matchingIds" + exit 1 +} +$installation = $matchingInstallations[0] +Write-Host "Using installation $($installation.id) for '$($installation.account.login)'." try { $tokenResponse = Invoke-RestMethod ` diff --git a/eng/common/core-templates/job/helix-job-monitor.yml b/eng/common/core-templates/job/helix-job-monitor.yml index a65b50d0a7..81ecccdd17 100644 --- a/eng/common/core-templates/job/helix-job-monitor.yml +++ b/eng/common/core-templates/job/helix-job-monitor.yml @@ -84,6 +84,15 @@ parameters: type: boolean default: false +# Controls per-test output attachments. Defaults to Failed. +- name: testResultAttachmentMode + type: string + default: Failed + values: + - Failed + - All + - None + # Advanced: optional pipeline artifact (produced earlier in this run) that contains the tool # nupkg. When set, the artifact is downloaded and the tool is installed from the nupkg into # a local tool-path; this bypasses the repo's .config/dotnet-tools.json manifest and is @@ -210,6 +219,7 @@ jobs: organization='${{ parameters.organization }}' repository='${{ parameters.repository }}' + testResultAttachmentMode='${{ parameters.testResultAttachmentMode }}' # Fall back to Azure DevOps-provided environment variables when the caller did not # supply organization / repository explicitly. BUILD_REPOSITORY_NAME is typically @@ -232,6 +242,9 @@ jobs: if [ -n "$organization" ]; then toolArgs+=( --organization "$organization" ); fi if [ -n "$repository" ]; then toolArgs+=( --repository "$repository" ); fi + if [ -n "$testResultAttachmentMode" ]; then + toolArgs+=( --test-result-attachment-mode "$testResultAttachmentMode" ) + fi # Build.Reason and Build.SourceBranch are required to derive the Helix source filter # the same way the Helix SDK submitter does (PR -> 'pr', internal -> 'official', diff --git a/eng/common/core-templates/job/onelocbuild.yml b/eng/common/core-templates/job/onelocbuild.yml index 4f5653d73a..ce077368e4 100644 --- a/eng/common/core-templates/job/onelocbuild.yml +++ b/eng/common/core-templates/job/onelocbuild.yml @@ -14,10 +14,11 @@ parameters: # exist, and any pipeline that sets this to '' fall back to PAT-based auth via the CeapexPat parameter. CeapexServiceConnection: 'dnceng-onelocbuild-ceapex' - # GitHub App authentication for the OneLoc check-in PR (dnceng/internal only). - # The infrastructure identifiers are centralized here and the App path is enabled by default. - # DevDiv requires its own project-scoped service connection before this path can be enabled there. + # GitHub App authentication for the OneLoc check-in PR. + # dnceng/internal and DevDiv/DevDiv are enabled by default with their project-scoped service + # connections. Other projects must explicitly opt in after provisioning equivalent infrastructure. UseGitHubAppAuthentication: true + UseGitHubAppAuthenticationInOtherProjects: false GitHubAppServiceConnection: 'dnceng-oneloc-githubapp' GitHubAppClientId: 'Iv23lijBU8x3gc9lDOc9' GitHubAppKeyVaultName: 'EngKeyVault' @@ -98,13 +99,16 @@ jobs: outputVariableName: 'CeapexEntraToken' condition: ${{ parameters.condition }} - # Mint a short-lived GitHub App installation token for the loc check-in PR (dnceng/internal only). - # All other projects fall back to PAT-based auth, since the app service connection is scoped to dnceng/internal. - - ${{ if and(eq(parameters.RepoType, 'gitHub'), eq(parameters.UseGitHubAppAuthentication, true), eq(variables['System.TeamProject'], 'internal')) }}: + # Mint a short-lived GitHub App installation token for the loc check-in PR. Use the connection + # provisioned in each supported project; other projects must explicitly opt in and override it. + - ${{ if and(eq(parameters.RepoType, 'gitHub'), eq(parameters.UseGitHubAppAuthentication, true), or(eq(variables['System.TeamProject'], 'internal'), eq(variables['System.TeamProject'], 'DevDiv'), eq(parameters.UseGitHubAppAuthenticationInOtherProjects, true))) }}: - template: /eng/common/core-templates/steps/get-github-app-token.yml parameters: is1ESPipeline: ${{ parameters.is1ESPipeline }} - azureSubscription: ${{ parameters.GitHubAppServiceConnection }} + ${{ if and(eq(variables['System.TeamProject'], 'DevDiv'), eq(parameters.GitHubAppServiceConnection, 'dnceng-oneloc-githubapp')) }}: + azureSubscription: 'devdiv-oneloc-githubapp' + ${{ else }}: + azureSubscription: ${{ parameters.GitHubAppServiceConnection }} keyVaultName: ${{ parameters.GitHubAppKeyVaultName }} keyName: ${{ parameters.GitHubAppKeyName }} appClientId: ${{ parameters.GitHubAppClientId }} @@ -133,9 +137,9 @@ jobs: patVariable: ${{ parameters.CeapexPat }} ${{ if eq(parameters.RepoType, 'gitHub') }}: repoType: ${{ parameters.RepoType }} - ${{ if and(eq(parameters.UseGitHubAppAuthentication, true), eq(variables['System.TeamProject'], 'internal')) }}: + ${{ if and(eq(parameters.UseGitHubAppAuthentication, true), or(eq(variables['System.TeamProject'], 'internal'), eq(variables['System.TeamProject'], 'DevDiv'), eq(parameters.UseGitHubAppAuthenticationInOtherProjects, true))) }}: gitHubPatVariable: "$(GitHubAppInstallationToken)" - ${{ if or(eq(parameters.UseGitHubAppAuthentication, false), ne(variables['System.TeamProject'], 'internal')) }}: + ${{ else }}: gitHubPatVariable: "${{ parameters.GithubPat }}" ${{ if ne(parameters.MirrorRepo, '') }}: isMirrorRepoSelected: true diff --git a/eng/common/core-templates/post-build/post-build.yml b/eng/common/core-templates/post-build/post-build.yml index 9d95135269..6dcee6664d 100644 --- a/eng/common/core-templates/post-build/post-build.yml +++ b/eng/common/core-templates/post-build/post-build.yml @@ -236,6 +236,7 @@ stages: StageLabel: 'Validation' JobLabel: 'Signing' BinlogToolVersion: $(BinlogToolVersion) + enableInternalRuntimes: false # SourceLink validation has been removed — the underlying CLI tool # (targeting netcoreapp2.1) has not functioned for years. diff --git a/eng/common/core-templates/steps/publish-logs.yml b/eng/common/core-templates/steps/publish-logs.yml index 2c1e0ab116..244fef0890 100644 --- a/eng/common/core-templates/steps/publish-logs.yml +++ b/eng/common/core-templates/steps/publish-logs.yml @@ -5,6 +5,7 @@ parameters: # A default - in case value from eng/common/core-templates/post-build/common-variables.yml is not passed BinlogToolVersion: '1.0.11' is1ESPipeline: false + enableInternalRuntimes: true steps: - task: Powershell@2 @@ -25,13 +26,20 @@ steps: # Sensitive data can as well be added to $(System.DefaultWorkingDirectory)/eng/BinlogSecretsRedactionFile.txt' # If the file exists - sensitive data for redaction will be sourced from it # (single entry per line, lines starting with '# ' are considered comments and skipped) - arguments: -InputPath '$(System.DefaultWorkingDirectory)/PostBuildLogs' - -BinlogToolVersion '${{parameters.BinlogToolVersion}}' - -TokensFilePath '$(System.DefaultWorkingDirectory)/eng/BinlogSecretsRedactionFile.txt' - -runtimeSourceFeed https://ci.dot.net/internal - -runtimeSourceFeedKey '$(dotnetbuilds-internal-container-read-token-base64)' - '$(System.AccessToken)' - ${{parameters.CustomSensitiveDataList}} + ${{ if and(eq(parameters.enableInternalRuntimes, true), ne(variables['System.TeamProject'], 'public')) }}: + arguments: -InputPath '$(System.DefaultWorkingDirectory)/PostBuildLogs' + -BinlogToolVersion '${{parameters.BinlogToolVersion}}' + -TokensFilePath '$(System.DefaultWorkingDirectory)/eng/BinlogSecretsRedactionFile.txt' + -runtimeSourceFeed https://ci.dot.net/internal + -runtimeSourceFeedKey '$(dotnetbuilds-internal-container-read-token-base64)' + '$(System.AccessToken)' + ${{parameters.CustomSensitiveDataList}} + ${{ else }}: + arguments: -InputPath '$(System.DefaultWorkingDirectory)/PostBuildLogs' + -BinlogToolVersion '${{parameters.BinlogToolVersion}}' + -TokensFilePath '$(System.DefaultWorkingDirectory)/eng/BinlogSecretsRedactionFile.txt' + '$(System.AccessToken)' + ${{parameters.CustomSensitiveDataList}} continueOnError: true condition: always() diff --git a/global.json b/global.json index 2a77c9f230..e9e578061e 100644 --- a/global.json +++ b/global.json @@ -1,6 +1,6 @@ { "sdk": { - "version": "11.0.100-preview.6.26359.118", + "version": "11.0.100-rc.1.26420.103", "allowPrerelease": true, "rollForward": "latestFeature", "paths": [ @@ -10,10 +10,10 @@ "errorMessage": "The required .NET SDK wasn't found. Please run ./eng/common/dotnet.cmd/sh to install it." }, "tools": { - "dotnet": "11.0.100-preview.6.26359.118" + "dotnet": "11.0.100-rc.1.26420.103" }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "11.0.0-beta.26411.119", + "Microsoft.DotNet.Arcade.Sdk": "11.0.0-beta.26425.121", "Microsoft.Build.NoTargets": "3.7.0" } } From 2f9a736810754a4df39854d7d581f48249baec89 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Wed, 26 Aug 2026 20:26:51 +0000 Subject: [PATCH 03/32] Update dependencies from build 328805 Updated Dependencies: Microsoft.DotNet.Arcade.Sdk (Version 11.0.0-beta.26425.121 -> 11.0.0-beta.26426.102) System.CommandLine (Version 3.0.0-rc.2.26425.121 -> 3.0.0-rc.2.26426.102) System.IO.Hashing, System.Security.Cryptography.Xml, System.Text.Json (Version 11.0.0-rc.2.26425.121 -> 11.0.0-rc.2.26426.102) [[ commit created by automation ]] --- eng/Version.Details.props | 10 +++++----- eng/Version.Details.xml | 22 +++++++++++----------- global.json | 2 +- 3 files changed, 17 insertions(+), 17 deletions(-) diff --git a/eng/Version.Details.props b/eng/Version.Details.props index b45cc52e4c..0e216b9e17 100644 --- a/eng/Version.Details.props +++ b/eng/Version.Details.props @@ -6,11 +6,11 @@ This file should be imported by eng/Versions.props - 11.0.0-beta.26425.121 - 3.0.0-rc.2.26425.121 - 11.0.0-rc.2.26425.121 - 11.0.0-rc.2.26425.121 - 11.0.0-rc.2.26425.121 + 11.0.0-beta.26426.102 + 3.0.0-rc.2.26426.102 + 11.0.0-rc.2.26426.102 + 11.0.0-rc.2.26426.102 + 11.0.0-rc.2.26426.102 diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index b1e3043aa4..a0f5ee2ba0 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,28 +1,28 @@ - + - + https://github.com/dotnet/dotnet - e20a5af9c83aaf22b041bc9911de0cbfff9c7317 + da377e2093fdde18a0d36429a2644638d07685f6 - + https://github.com/dotnet/dotnet - e20a5af9c83aaf22b041bc9911de0cbfff9c7317 + da377e2093fdde18a0d36429a2644638d07685f6 - + https://github.com/dotnet/dotnet - e20a5af9c83aaf22b041bc9911de0cbfff9c7317 + da377e2093fdde18a0d36429a2644638d07685f6 - + https://github.com/dotnet/dotnet - e20a5af9c83aaf22b041bc9911de0cbfff9c7317 + da377e2093fdde18a0d36429a2644638d07685f6 - + https://github.com/dotnet/dotnet - e20a5af9c83aaf22b041bc9911de0cbfff9c7317 + da377e2093fdde18a0d36429a2644638d07685f6 diff --git a/global.json b/global.json index e9e578061e..1ca9afa14a 100644 --- a/global.json +++ b/global.json @@ -13,7 +13,7 @@ "dotnet": "11.0.100-rc.1.26420.103" }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "11.0.0-beta.26425.121", + "Microsoft.DotNet.Arcade.Sdk": "11.0.0-beta.26426.102", "Microsoft.Build.NoTargets": "3.7.0" } } From e183b992b673d4b84f25523e17ce1b1e9dcfe681 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Thu, 27 Aug 2026 12:26:07 +0000 Subject: [PATCH 04/32] Update dependencies from build 328916 Updated Dependencies: Microsoft.DotNet.Arcade.Sdk (Version 11.0.0-beta.26426.102 -> 11.0.0-beta.26426.126) System.CommandLine (Version 3.0.0-rc.2.26426.102 -> 3.0.0-rc.2.26426.126) System.IO.Hashing, System.Security.Cryptography.Xml, System.Text.Json (Version 11.0.0-rc.2.26426.102 -> 11.0.0-rc.2.26426.126) [[ commit created by automation ]] --- eng/Version.Details.props | 10 +++++----- eng/Version.Details.xml | 22 +++++++++++----------- global.json | 2 +- 3 files changed, 17 insertions(+), 17 deletions(-) diff --git a/eng/Version.Details.props b/eng/Version.Details.props index 0e216b9e17..faf67bea19 100644 --- a/eng/Version.Details.props +++ b/eng/Version.Details.props @@ -6,11 +6,11 @@ This file should be imported by eng/Versions.props - 11.0.0-beta.26426.102 - 3.0.0-rc.2.26426.102 - 11.0.0-rc.2.26426.102 - 11.0.0-rc.2.26426.102 - 11.0.0-rc.2.26426.102 + 11.0.0-beta.26426.126 + 3.0.0-rc.2.26426.126 + 11.0.0-rc.2.26426.126 + 11.0.0-rc.2.26426.126 + 11.0.0-rc.2.26426.126 diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index a0f5ee2ba0..2c987cf0e4 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,28 +1,28 @@ - + - + https://github.com/dotnet/dotnet - da377e2093fdde18a0d36429a2644638d07685f6 + 100002779ceec649fcfd00c233f673b494130827 - + https://github.com/dotnet/dotnet - da377e2093fdde18a0d36429a2644638d07685f6 + 100002779ceec649fcfd00c233f673b494130827 - + https://github.com/dotnet/dotnet - da377e2093fdde18a0d36429a2644638d07685f6 + 100002779ceec649fcfd00c233f673b494130827 - + https://github.com/dotnet/dotnet - da377e2093fdde18a0d36429a2644638d07685f6 + 100002779ceec649fcfd00c233f673b494130827 - + https://github.com/dotnet/dotnet - da377e2093fdde18a0d36429a2644638d07685f6 + 100002779ceec649fcfd00c233f673b494130827 diff --git a/global.json b/global.json index 1ca9afa14a..6b446dca78 100644 --- a/global.json +++ b/global.json @@ -13,7 +13,7 @@ "dotnet": "11.0.100-rc.1.26420.103" }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "11.0.0-beta.26426.102", + "Microsoft.DotNet.Arcade.Sdk": "11.0.0-beta.26426.126", "Microsoft.Build.NoTargets": "3.7.0" } } From b9e94806a0aac6c653d9c24f0db79ab14a384de1 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Fri, 28 Aug 2026 03:23:43 +0000 Subject: [PATCH 05/32] Update dependencies from build 329077 Updated Dependencies: Microsoft.DotNet.Arcade.Sdk (Version 11.0.0-beta.26426.126 -> 11.0.0-beta.26427.118) System.CommandLine (Version 3.0.0-rc.2.26426.126 -> 3.0.0-rc.2.26427.118) System.IO.Hashing, System.Security.Cryptography.Xml, System.Text.Json (Version 11.0.0-rc.2.26426.126 -> 11.0.0-rc.2.26427.118) [[ commit created by automation ]] --- eng/Version.Details.props | 10 +++++----- eng/Version.Details.xml | 22 +++++++++++----------- global.json | 2 +- 3 files changed, 17 insertions(+), 17 deletions(-) diff --git a/eng/Version.Details.props b/eng/Version.Details.props index faf67bea19..cae38bb4a8 100644 --- a/eng/Version.Details.props +++ b/eng/Version.Details.props @@ -6,11 +6,11 @@ This file should be imported by eng/Versions.props - 11.0.0-beta.26426.126 - 3.0.0-rc.2.26426.126 - 11.0.0-rc.2.26426.126 - 11.0.0-rc.2.26426.126 - 11.0.0-rc.2.26426.126 + 11.0.0-beta.26427.118 + 3.0.0-rc.2.26427.118 + 11.0.0-rc.2.26427.118 + 11.0.0-rc.2.26427.118 + 11.0.0-rc.2.26427.118 diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 2c987cf0e4..fd54d52f71 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,28 +1,28 @@ - + - + https://github.com/dotnet/dotnet - 100002779ceec649fcfd00c233f673b494130827 + b1fab8293ff883daf3489c5776ec6e207a2ddbfe - + https://github.com/dotnet/dotnet - 100002779ceec649fcfd00c233f673b494130827 + b1fab8293ff883daf3489c5776ec6e207a2ddbfe - + https://github.com/dotnet/dotnet - 100002779ceec649fcfd00c233f673b494130827 + b1fab8293ff883daf3489c5776ec6e207a2ddbfe - + https://github.com/dotnet/dotnet - 100002779ceec649fcfd00c233f673b494130827 + b1fab8293ff883daf3489c5776ec6e207a2ddbfe - + https://github.com/dotnet/dotnet - 100002779ceec649fcfd00c233f673b494130827 + b1fab8293ff883daf3489c5776ec6e207a2ddbfe diff --git a/global.json b/global.json index 6b446dca78..6bba3789a7 100644 --- a/global.json +++ b/global.json @@ -13,7 +13,7 @@ "dotnet": "11.0.100-rc.1.26420.103" }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "11.0.0-beta.26426.126", + "Microsoft.DotNet.Arcade.Sdk": "11.0.0-beta.26427.118", "Microsoft.Build.NoTargets": "3.7.0" } } From 4593647b6980fdb744002727b250097251478dbf Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Fri, 28 Aug 2026 11:17:13 +0000 Subject: [PATCH 06/32] Update dependencies from build 329128 Updated Dependencies: Microsoft.DotNet.Arcade.Sdk (Version 11.0.0-beta.26427.118 -> 11.0.0-beta.26427.127) System.CommandLine (Version 3.0.0-rc.2.26427.118 -> 3.0.0-rc.2.26427.127) System.IO.Hashing, System.Security.Cryptography.Xml, System.Text.Json (Version 11.0.0-rc.2.26427.118 -> 11.0.0-rc.2.26427.127) [[ commit created by automation ]] --- eng/Version.Details.props | 10 +++++----- eng/Version.Details.xml | 22 +++++++++++----------- global.json | 2 +- 3 files changed, 17 insertions(+), 17 deletions(-) diff --git a/eng/Version.Details.props b/eng/Version.Details.props index cae38bb4a8..5ddb3c4445 100644 --- a/eng/Version.Details.props +++ b/eng/Version.Details.props @@ -6,11 +6,11 @@ This file should be imported by eng/Versions.props - 11.0.0-beta.26427.118 - 3.0.0-rc.2.26427.118 - 11.0.0-rc.2.26427.118 - 11.0.0-rc.2.26427.118 - 11.0.0-rc.2.26427.118 + 11.0.0-beta.26427.127 + 3.0.0-rc.2.26427.127 + 11.0.0-rc.2.26427.127 + 11.0.0-rc.2.26427.127 + 11.0.0-rc.2.26427.127 diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index fd54d52f71..7b2987c63d 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,28 +1,28 @@ - + - + https://github.com/dotnet/dotnet - b1fab8293ff883daf3489c5776ec6e207a2ddbfe + fb84ad6786f66923632768b97128d7343ae4eae8 - + https://github.com/dotnet/dotnet - b1fab8293ff883daf3489c5776ec6e207a2ddbfe + fb84ad6786f66923632768b97128d7343ae4eae8 - + https://github.com/dotnet/dotnet - b1fab8293ff883daf3489c5776ec6e207a2ddbfe + fb84ad6786f66923632768b97128d7343ae4eae8 - + https://github.com/dotnet/dotnet - b1fab8293ff883daf3489c5776ec6e207a2ddbfe + fb84ad6786f66923632768b97128d7343ae4eae8 - + https://github.com/dotnet/dotnet - b1fab8293ff883daf3489c5776ec6e207a2ddbfe + fb84ad6786f66923632768b97128d7343ae4eae8 diff --git a/global.json b/global.json index 6bba3789a7..39d56cc6e1 100644 --- a/global.json +++ b/global.json @@ -13,7 +13,7 @@ "dotnet": "11.0.100-rc.1.26420.103" }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "11.0.0-beta.26427.118", + "Microsoft.DotNet.Arcade.Sdk": "11.0.0-beta.26427.127", "Microsoft.Build.NoTargets": "3.7.0" } } From 729c457195fae44b78b434d2c6528875a3c702e7 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Sat, 29 Aug 2026 02:44:33 +0000 Subject: [PATCH 07/32] Update dependencies from build 329285 Updated Dependencies: Microsoft.DotNet.Arcade.Sdk (Version 11.0.0-beta.26427.127 -> 11.0.0-beta.26428.114) System.CommandLine (Version 3.0.0-rc.2.26427.127 -> 3.0.0-rc.2.26428.114) System.IO.Hashing, System.Security.Cryptography.Xml, System.Text.Json (Version 11.0.0-rc.2.26427.127 -> 11.0.0-rc.2.26428.114) [[ commit created by automation ]] --- eng/Version.Details.props | 10 +++++----- eng/Version.Details.xml | 22 +++++++++++----------- global.json | 2 +- 3 files changed, 17 insertions(+), 17 deletions(-) diff --git a/eng/Version.Details.props b/eng/Version.Details.props index 5ddb3c4445..1bab2ff639 100644 --- a/eng/Version.Details.props +++ b/eng/Version.Details.props @@ -6,11 +6,11 @@ This file should be imported by eng/Versions.props - 11.0.0-beta.26427.127 - 3.0.0-rc.2.26427.127 - 11.0.0-rc.2.26427.127 - 11.0.0-rc.2.26427.127 - 11.0.0-rc.2.26427.127 + 11.0.0-beta.26428.114 + 3.0.0-rc.2.26428.114 + 11.0.0-rc.2.26428.114 + 11.0.0-rc.2.26428.114 + 11.0.0-rc.2.26428.114 diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 7b2987c63d..97fc8ec80d 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,28 +1,28 @@ - + - + https://github.com/dotnet/dotnet - fb84ad6786f66923632768b97128d7343ae4eae8 + a0cd5a3807ede13f62b0e2f6c69e5681c36fe958 - + https://github.com/dotnet/dotnet - fb84ad6786f66923632768b97128d7343ae4eae8 + a0cd5a3807ede13f62b0e2f6c69e5681c36fe958 - + https://github.com/dotnet/dotnet - fb84ad6786f66923632768b97128d7343ae4eae8 + a0cd5a3807ede13f62b0e2f6c69e5681c36fe958 - + https://github.com/dotnet/dotnet - fb84ad6786f66923632768b97128d7343ae4eae8 + a0cd5a3807ede13f62b0e2f6c69e5681c36fe958 - + https://github.com/dotnet/dotnet - fb84ad6786f66923632768b97128d7343ae4eae8 + a0cd5a3807ede13f62b0e2f6c69e5681c36fe958 diff --git a/global.json b/global.json index 39d56cc6e1..44b2cb4916 100644 --- a/global.json +++ b/global.json @@ -13,7 +13,7 @@ "dotnet": "11.0.100-rc.1.26420.103" }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "11.0.0-beta.26427.127", + "Microsoft.DotNet.Arcade.Sdk": "11.0.0-beta.26428.114", "Microsoft.Build.NoTargets": "3.7.0" } } From aa28cb2ec06615cfc9fac45912bd205582db1084 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Sat, 29 Aug 2026 17:28:15 +0000 Subject: [PATCH 08/32] Update dependencies from build 329326 Updated Dependencies: Microsoft.DotNet.Arcade.Sdk (Version 11.0.0-beta.26428.114 -> 11.0.0-beta.26429.106) System.CommandLine (Version 3.0.0-rc.2.26428.114 -> 3.0.0-rc.2.26429.106) System.IO.Hashing, System.Security.Cryptography.Xml, System.Text.Json (Version 11.0.0-rc.2.26428.114 -> 11.0.0-rc.2.26429.106) [[ commit created by automation ]] --- eng/Version.Details.props | 10 ++++----- eng/Version.Details.xml | 22 +++++++++---------- .../core-templates/job/helix-job-monitor.yml | 8 +++++++ global.json | 2 +- 4 files changed, 25 insertions(+), 17 deletions(-) diff --git a/eng/Version.Details.props b/eng/Version.Details.props index 1bab2ff639..49e7834995 100644 --- a/eng/Version.Details.props +++ b/eng/Version.Details.props @@ -6,11 +6,11 @@ This file should be imported by eng/Versions.props - 11.0.0-beta.26428.114 - 3.0.0-rc.2.26428.114 - 11.0.0-rc.2.26428.114 - 11.0.0-rc.2.26428.114 - 11.0.0-rc.2.26428.114 + 11.0.0-beta.26429.106 + 3.0.0-rc.2.26429.106 + 11.0.0-rc.2.26429.106 + 11.0.0-rc.2.26429.106 + 11.0.0-rc.2.26429.106 diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 97fc8ec80d..e1d8382b7b 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,28 +1,28 @@ - + - + https://github.com/dotnet/dotnet - a0cd5a3807ede13f62b0e2f6c69e5681c36fe958 + 17974d44ef211135d3e9b0b84f5e03830dd59ad8 - + https://github.com/dotnet/dotnet - a0cd5a3807ede13f62b0e2f6c69e5681c36fe958 + 17974d44ef211135d3e9b0b84f5e03830dd59ad8 - + https://github.com/dotnet/dotnet - a0cd5a3807ede13f62b0e2f6c69e5681c36fe958 + 17974d44ef211135d3e9b0b84f5e03830dd59ad8 - + https://github.com/dotnet/dotnet - a0cd5a3807ede13f62b0e2f6c69e5681c36fe958 + 17974d44ef211135d3e9b0b84f5e03830dd59ad8 - + https://github.com/dotnet/dotnet - a0cd5a3807ede13f62b0e2f6c69e5681c36fe958 + 17974d44ef211135d3e9b0b84f5e03830dd59ad8 diff --git a/eng/common/core-templates/job/helix-job-monitor.yml b/eng/common/core-templates/job/helix-job-monitor.yml index 81ecccdd17..53bbf74927 100644 --- a/eng/common/core-templates/job/helix-job-monitor.yml +++ b/eng/common/core-templates/job/helix-job-monitor.yml @@ -62,6 +62,12 @@ parameters: type: number default: 30 +# Maximum number of work items whose results may be downloaded, parsed, and +# uploaded concurrently. +- name: testResultUploadParallelism + type: number + default: 48 + # When 'true' (the default), Helix work items that exit 0 but have failed AzDO test results # are treated as failed: they count toward the monitor's exit code and are resubmitted by a # later invocation's retry pass. Set to 'false' to fall back to exit-code-only outcomes. @@ -215,6 +221,8 @@ jobs: --max-wait-minutes "$((${{ parameters.timeoutInMinutes }} - 5))" # Set the tool's timeout slightly lower than the Azure DevOps job timeout to allow it to exit gracefully. --stage-name '$(System.StageName)' --stage-attempt '$(System.StageAttempt)' + --job-attempt '$(System.JobAttempt)' + --test-result-upload-parallelism '${{ parameters.testResultUploadParallelism }}' ) organization='${{ parameters.organization }}' diff --git a/global.json b/global.json index 44b2cb4916..643e86e4bd 100644 --- a/global.json +++ b/global.json @@ -13,7 +13,7 @@ "dotnet": "11.0.100-rc.1.26420.103" }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "11.0.0-beta.26428.114", + "Microsoft.DotNet.Arcade.Sdk": "11.0.0-beta.26429.106", "Microsoft.Build.NoTargets": "3.7.0" } } From 476840985c0eb1a9d3851f4698f07df4ebdd791b Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Sun, 30 Aug 2026 03:24:40 +0000 Subject: [PATCH 09/32] Update dependencies from build 329351 Updated Dependencies: Microsoft.DotNet.Arcade.Sdk (Version 11.0.0-beta.26429.106 -> 11.0.0-beta.26429.111) System.CommandLine (Version 3.0.0-rc.2.26429.106 -> 3.0.0-rc.2.26429.111) System.IO.Hashing, System.Security.Cryptography.Xml, System.Text.Json (Version 11.0.0-rc.2.26429.106 -> 11.0.0-rc.2.26429.111) [[ commit created by automation ]] --- eng/Version.Details.props | 10 +++++----- eng/Version.Details.xml | 22 +++++++++++----------- global.json | 2 +- 3 files changed, 17 insertions(+), 17 deletions(-) diff --git a/eng/Version.Details.props b/eng/Version.Details.props index 49e7834995..de025a1cd9 100644 --- a/eng/Version.Details.props +++ b/eng/Version.Details.props @@ -6,11 +6,11 @@ This file should be imported by eng/Versions.props - 11.0.0-beta.26429.106 - 3.0.0-rc.2.26429.106 - 11.0.0-rc.2.26429.106 - 11.0.0-rc.2.26429.106 - 11.0.0-rc.2.26429.106 + 11.0.0-beta.26429.111 + 3.0.0-rc.2.26429.111 + 11.0.0-rc.2.26429.111 + 11.0.0-rc.2.26429.111 + 11.0.0-rc.2.26429.111 diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index e1d8382b7b..222ad00efc 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,28 +1,28 @@ - + - + https://github.com/dotnet/dotnet - 17974d44ef211135d3e9b0b84f5e03830dd59ad8 + 6c102ec59fc1ae0ef44054cb4659daf828b96e8d - + https://github.com/dotnet/dotnet - 17974d44ef211135d3e9b0b84f5e03830dd59ad8 + 6c102ec59fc1ae0ef44054cb4659daf828b96e8d - + https://github.com/dotnet/dotnet - 17974d44ef211135d3e9b0b84f5e03830dd59ad8 + 6c102ec59fc1ae0ef44054cb4659daf828b96e8d - + https://github.com/dotnet/dotnet - 17974d44ef211135d3e9b0b84f5e03830dd59ad8 + 6c102ec59fc1ae0ef44054cb4659daf828b96e8d - + https://github.com/dotnet/dotnet - 17974d44ef211135d3e9b0b84f5e03830dd59ad8 + 6c102ec59fc1ae0ef44054cb4659daf828b96e8d diff --git a/global.json b/global.json index 643e86e4bd..5603c0c973 100644 --- a/global.json +++ b/global.json @@ -13,7 +13,7 @@ "dotnet": "11.0.100-rc.1.26420.103" }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "11.0.0-beta.26429.106", + "Microsoft.DotNet.Arcade.Sdk": "11.0.0-beta.26429.111", "Microsoft.Build.NoTargets": "3.7.0" } } From d35c0a5716f623ee5b11e7fb4bc9840c6e26a5f5 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Mon, 31 Aug 2026 20:52:44 +0000 Subject: [PATCH 10/32] Update dependencies from build 329542 Updated Dependencies: Microsoft.DotNet.Arcade.Sdk (Version 11.0.0-beta.26429.111 -> 11.0.0-beta.26431.104) System.CommandLine (Version 3.0.0-rc.2.26429.111 -> 3.0.0-rc.2.26431.104) System.IO.Hashing, System.Security.Cryptography.Xml, System.Text.Json (Version 11.0.0-rc.2.26429.111 -> 11.0.0-rc.2.26431.104) [[ commit created by automation ]] --- eng/Version.Details.props | 10 +++++----- eng/Version.Details.xml | 22 +++++++++++----------- global.json | 2 +- 3 files changed, 17 insertions(+), 17 deletions(-) diff --git a/eng/Version.Details.props b/eng/Version.Details.props index de025a1cd9..f97f3b4cd2 100644 --- a/eng/Version.Details.props +++ b/eng/Version.Details.props @@ -6,11 +6,11 @@ This file should be imported by eng/Versions.props - 11.0.0-beta.26429.111 - 3.0.0-rc.2.26429.111 - 11.0.0-rc.2.26429.111 - 11.0.0-rc.2.26429.111 - 11.0.0-rc.2.26429.111 + 11.0.0-beta.26431.104 + 3.0.0-rc.2.26431.104 + 11.0.0-rc.2.26431.104 + 11.0.0-rc.2.26431.104 + 11.0.0-rc.2.26431.104 diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 222ad00efc..f12d9d8d1f 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,28 +1,28 @@ - + - + https://github.com/dotnet/dotnet - 6c102ec59fc1ae0ef44054cb4659daf828b96e8d + 147c024e64965dd98d68ed8419e4f5320852e8ca - + https://github.com/dotnet/dotnet - 6c102ec59fc1ae0ef44054cb4659daf828b96e8d + 147c024e64965dd98d68ed8419e4f5320852e8ca - + https://github.com/dotnet/dotnet - 6c102ec59fc1ae0ef44054cb4659daf828b96e8d + 147c024e64965dd98d68ed8419e4f5320852e8ca - + https://github.com/dotnet/dotnet - 6c102ec59fc1ae0ef44054cb4659daf828b96e8d + 147c024e64965dd98d68ed8419e4f5320852e8ca - + https://github.com/dotnet/dotnet - 6c102ec59fc1ae0ef44054cb4659daf828b96e8d + 147c024e64965dd98d68ed8419e4f5320852e8ca diff --git a/global.json b/global.json index 5603c0c973..0fff5467f0 100644 --- a/global.json +++ b/global.json @@ -13,7 +13,7 @@ "dotnet": "11.0.100-rc.1.26420.103" }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "11.0.0-beta.26429.111", + "Microsoft.DotNet.Arcade.Sdk": "11.0.0-beta.26431.104", "Microsoft.Build.NoTargets": "3.7.0" } } From 35b09d47d914cb79614f45d60c2d4dfdc6fe1d2d Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Tue, 1 Sep 2026 05:01:29 +0000 Subject: [PATCH 11/32] Update dependencies from build 329631 Updated Dependencies: Microsoft.DotNet.Arcade.Sdk (Version 11.0.0-beta.26431.104 -> 11.0.0-beta.26431.116) System.CommandLine (Version 3.0.0-rc.2.26431.104 -> 3.0.0-rc.2.26431.116) System.IO.Hashing, System.Security.Cryptography.Xml, System.Text.Json (Version 11.0.0-rc.2.26431.104 -> 11.0.0-rc.2.26431.116) [[ commit created by automation ]] --- eng/Version.Details.props | 10 +++++----- eng/Version.Details.xml | 22 +++++++++++----------- global.json | 2 +- 3 files changed, 17 insertions(+), 17 deletions(-) diff --git a/eng/Version.Details.props b/eng/Version.Details.props index f97f3b4cd2..dc285b5e70 100644 --- a/eng/Version.Details.props +++ b/eng/Version.Details.props @@ -6,11 +6,11 @@ This file should be imported by eng/Versions.props - 11.0.0-beta.26431.104 - 3.0.0-rc.2.26431.104 - 11.0.0-rc.2.26431.104 - 11.0.0-rc.2.26431.104 - 11.0.0-rc.2.26431.104 + 11.0.0-beta.26431.116 + 3.0.0-rc.2.26431.116 + 11.0.0-rc.2.26431.116 + 11.0.0-rc.2.26431.116 + 11.0.0-rc.2.26431.116 diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index f12d9d8d1f..dfb29aeb72 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,28 +1,28 @@ - + - + https://github.com/dotnet/dotnet - 147c024e64965dd98d68ed8419e4f5320852e8ca + f8a811758057986566da27d06d8f03a7e5e226bf - + https://github.com/dotnet/dotnet - 147c024e64965dd98d68ed8419e4f5320852e8ca + f8a811758057986566da27d06d8f03a7e5e226bf - + https://github.com/dotnet/dotnet - 147c024e64965dd98d68ed8419e4f5320852e8ca + f8a811758057986566da27d06d8f03a7e5e226bf - + https://github.com/dotnet/dotnet - 147c024e64965dd98d68ed8419e4f5320852e8ca + f8a811758057986566da27d06d8f03a7e5e226bf - + https://github.com/dotnet/dotnet - 147c024e64965dd98d68ed8419e4f5320852e8ca + f8a811758057986566da27d06d8f03a7e5e226bf diff --git a/global.json b/global.json index 0fff5467f0..26af13cb88 100644 --- a/global.json +++ b/global.json @@ -13,7 +13,7 @@ "dotnet": "11.0.100-rc.1.26420.103" }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "11.0.0-beta.26431.104", + "Microsoft.DotNet.Arcade.Sdk": "11.0.0-beta.26431.116", "Microsoft.Build.NoTargets": "3.7.0" } } From 1698c3397f17b611f25927caa35ef33712a9378f Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Wed, 2 Sep 2026 00:35:04 +0000 Subject: [PATCH 12/32] Update dependencies from build 329883 Updated Dependencies: Microsoft.DotNet.Arcade.Sdk (Version 11.0.0-beta.26431.116 -> 11.0.0-beta.26451.112) System.CommandLine (Version 3.0.0-rc.2.26431.116 -> 3.0.0-rc.2.26451.112) System.IO.Hashing, System.Security.Cryptography.Xml, System.Text.Json (Version 11.0.0-rc.2.26431.116 -> 11.0.0-rc.2.26451.112) [[ commit created by automation ]] --- eng/Version.Details.props | 10 +++++----- eng/Version.Details.xml | 22 +++++++++++----------- eng/common/Get-GitHubAppToken.ps1 | 13 +++++++------ global.json | 2 +- 4 files changed, 24 insertions(+), 23 deletions(-) diff --git a/eng/Version.Details.props b/eng/Version.Details.props index dc285b5e70..c50018cdec 100644 --- a/eng/Version.Details.props +++ b/eng/Version.Details.props @@ -6,11 +6,11 @@ This file should be imported by eng/Versions.props - 11.0.0-beta.26431.116 - 3.0.0-rc.2.26431.116 - 11.0.0-rc.2.26431.116 - 11.0.0-rc.2.26431.116 - 11.0.0-rc.2.26431.116 + 11.0.0-beta.26451.112 + 3.0.0-rc.2.26451.112 + 11.0.0-rc.2.26451.112 + 11.0.0-rc.2.26451.112 + 11.0.0-rc.2.26451.112 diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index dfb29aeb72..cbf2cf730e 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,28 +1,28 @@ - + - + https://github.com/dotnet/dotnet - f8a811758057986566da27d06d8f03a7e5e226bf + cbd5b21057d077735a6a251869377ead82797993 - + https://github.com/dotnet/dotnet - f8a811758057986566da27d06d8f03a7e5e226bf + cbd5b21057d077735a6a251869377ead82797993 - + https://github.com/dotnet/dotnet - f8a811758057986566da27d06d8f03a7e5e226bf + cbd5b21057d077735a6a251869377ead82797993 - + https://github.com/dotnet/dotnet - f8a811758057986566da27d06d8f03a7e5e226bf + cbd5b21057d077735a6a251869377ead82797993 - + https://github.com/dotnet/dotnet - f8a811758057986566da27d06d8f03a7e5e226bf + cbd5b21057d077735a6a251869377ead82797993 diff --git a/eng/common/Get-GitHubAppToken.ps1 b/eng/common/Get-GitHubAppToken.ps1 index 9c7e3dcd6a..ea776bd6bc 100644 --- a/eng/common/Get-GitHubAppToken.ps1 +++ b/eng/common/Get-GitHubAppToken.ps1 @@ -110,19 +110,20 @@ $headers = @{ Write-Host "Looking up installation for '$InstallationOwner'..." try { - $installations = @() + $installations = [System.Collections.Generic.List[object]]::new() $page = 1 do { - # Assign the response before wrapping it in @(). PowerShell otherwise - # preserves a top-level JSON array as one nested pipeline object. $pageResponse = Invoke-RestMethod ` -Uri "https://api.github.com/app/installations?per_page=100&page=$page" ` -Headers $headers ` -Method Get - $pageInstallations = @($pageResponse) - $installations += $pageInstallations + $pageInstallationCount = 0 + foreach ($installation in $pageResponse) { + $installations.Add($installation) + $pageInstallationCount++ + } $page++ - } while ($pageInstallations.Count -eq 100) + } while ($pageInstallationCount -eq 100) } catch { Write-PipelineTelemetryError -Category 'Build' -Message "Failed to list GitHub App installations: $_. The signed JWT may be invalid or the App's Client ID ('$AppClientId') may be incorrect." diff --git a/global.json b/global.json index 26af13cb88..9521240529 100644 --- a/global.json +++ b/global.json @@ -13,7 +13,7 @@ "dotnet": "11.0.100-rc.1.26420.103" }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "11.0.0-beta.26431.116", + "Microsoft.DotNet.Arcade.Sdk": "11.0.0-beta.26451.112", "Microsoft.Build.NoTargets": "3.7.0" } } From ec927b657fd8e5c9a3d8726bb7ab5bf835e930db Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Wed, 2 Sep 2026 07:57:43 +0000 Subject: [PATCH 13/32] Update dependencies from build 329935 Updated Dependencies: Microsoft.DotNet.Arcade.Sdk (Version 11.0.0-beta.26451.112 -> 11.0.0-beta.26451.119) System.CommandLine (Version 3.0.0-rc.2.26451.112 -> 3.0.0-rc.2.26451.119) System.IO.Hashing, System.Security.Cryptography.Xml, System.Text.Json (Version 11.0.0-rc.2.26451.112 -> 11.0.0-rc.2.26451.119) [[ commit created by automation ]] --- eng/Version.Details.props | 10 +++++----- eng/Version.Details.xml | 22 +++++++++++----------- global.json | 2 +- 3 files changed, 17 insertions(+), 17 deletions(-) diff --git a/eng/Version.Details.props b/eng/Version.Details.props index c50018cdec..0e2439d13c 100644 --- a/eng/Version.Details.props +++ b/eng/Version.Details.props @@ -6,11 +6,11 @@ This file should be imported by eng/Versions.props - 11.0.0-beta.26451.112 - 3.0.0-rc.2.26451.112 - 11.0.0-rc.2.26451.112 - 11.0.0-rc.2.26451.112 - 11.0.0-rc.2.26451.112 + 11.0.0-beta.26451.119 + 3.0.0-rc.2.26451.119 + 11.0.0-rc.2.26451.119 + 11.0.0-rc.2.26451.119 + 11.0.0-rc.2.26451.119 diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index cbf2cf730e..2514bb53f5 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,28 +1,28 @@ - + - + https://github.com/dotnet/dotnet - cbd5b21057d077735a6a251869377ead82797993 + 2fc1b6a7802912d3eb578849b1a2f5374b897749 - + https://github.com/dotnet/dotnet - cbd5b21057d077735a6a251869377ead82797993 + 2fc1b6a7802912d3eb578849b1a2f5374b897749 - + https://github.com/dotnet/dotnet - cbd5b21057d077735a6a251869377ead82797993 + 2fc1b6a7802912d3eb578849b1a2f5374b897749 - + https://github.com/dotnet/dotnet - cbd5b21057d077735a6a251869377ead82797993 + 2fc1b6a7802912d3eb578849b1a2f5374b897749 - + https://github.com/dotnet/dotnet - cbd5b21057d077735a6a251869377ead82797993 + 2fc1b6a7802912d3eb578849b1a2f5374b897749 diff --git a/global.json b/global.json index 9521240529..e0b89576fc 100644 --- a/global.json +++ b/global.json @@ -13,7 +13,7 @@ "dotnet": "11.0.100-rc.1.26420.103" }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "11.0.0-beta.26451.112", + "Microsoft.DotNet.Arcade.Sdk": "11.0.0-beta.26451.119", "Microsoft.Build.NoTargets": "3.7.0" } } From 957d0e350ca625f77e381914dacc02ac5ec3c09c Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Wed, 2 Sep 2026 15:26:45 +0000 Subject: [PATCH 14/32] Update dependencies from build 330022 Updated Dependencies: Microsoft.DotNet.Arcade.Sdk (Version 11.0.0-beta.26451.119 -> 11.0.0-beta.26452.102) System.CommandLine (Version 3.0.0-rc.2.26451.119 -> 3.0.0-rc.2.26452.102) System.IO.Hashing, System.Security.Cryptography.Xml, System.Text.Json (Version 11.0.0-rc.2.26451.119 -> 11.0.0-rc.2.26452.102) [[ commit created by automation ]] --- eng/Version.Details.props | 10 +++++----- eng/Version.Details.xml | 22 +++++++++++----------- global.json | 2 +- 3 files changed, 17 insertions(+), 17 deletions(-) diff --git a/eng/Version.Details.props b/eng/Version.Details.props index 0e2439d13c..1c3ee0a76d 100644 --- a/eng/Version.Details.props +++ b/eng/Version.Details.props @@ -6,11 +6,11 @@ This file should be imported by eng/Versions.props - 11.0.0-beta.26451.119 - 3.0.0-rc.2.26451.119 - 11.0.0-rc.2.26451.119 - 11.0.0-rc.2.26451.119 - 11.0.0-rc.2.26451.119 + 11.0.0-beta.26452.102 + 3.0.0-rc.2.26452.102 + 11.0.0-rc.2.26452.102 + 11.0.0-rc.2.26452.102 + 11.0.0-rc.2.26452.102 diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 2514bb53f5..f211e4b5ec 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,28 +1,28 @@ - + - + https://github.com/dotnet/dotnet - 2fc1b6a7802912d3eb578849b1a2f5374b897749 + ba5fefc87000195d9618a554794c7b0f283290c7 - + https://github.com/dotnet/dotnet - 2fc1b6a7802912d3eb578849b1a2f5374b897749 + ba5fefc87000195d9618a554794c7b0f283290c7 - + https://github.com/dotnet/dotnet - 2fc1b6a7802912d3eb578849b1a2f5374b897749 + ba5fefc87000195d9618a554794c7b0f283290c7 - + https://github.com/dotnet/dotnet - 2fc1b6a7802912d3eb578849b1a2f5374b897749 + ba5fefc87000195d9618a554794c7b0f283290c7 - + https://github.com/dotnet/dotnet - 2fc1b6a7802912d3eb578849b1a2f5374b897749 + ba5fefc87000195d9618a554794c7b0f283290c7 diff --git a/global.json b/global.json index e0b89576fc..949bf533a0 100644 --- a/global.json +++ b/global.json @@ -13,7 +13,7 @@ "dotnet": "11.0.100-rc.1.26420.103" }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "11.0.0-beta.26451.119", + "Microsoft.DotNet.Arcade.Sdk": "11.0.0-beta.26452.102", "Microsoft.Build.NoTargets": "3.7.0" } } From 9bdb21881342f551a4a6c9f2ef0f45f554bc7b15 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Thu, 3 Sep 2026 06:42:14 +0000 Subject: [PATCH 15/32] Update dependencies from build 330198 Updated Dependencies: Microsoft.DotNet.Arcade.Sdk (Version 11.0.0-beta.26452.102 -> 11.0.0-beta.26452.117) System.CommandLine (Version 3.0.0-rc.2.26452.102 -> 3.0.0-rc.2.26452.117) System.IO.Hashing, System.Security.Cryptography.Xml, System.Text.Json (Version 11.0.0-rc.2.26452.102 -> 11.0.0-rc.2.26452.117) [[ commit created by automation ]] --- eng/Version.Details.props | 10 +++++----- eng/Version.Details.xml | 22 +++++++++++----------- global.json | 2 +- 3 files changed, 17 insertions(+), 17 deletions(-) diff --git a/eng/Version.Details.props b/eng/Version.Details.props index 1c3ee0a76d..11626f1cfb 100644 --- a/eng/Version.Details.props +++ b/eng/Version.Details.props @@ -6,11 +6,11 @@ This file should be imported by eng/Versions.props - 11.0.0-beta.26452.102 - 3.0.0-rc.2.26452.102 - 11.0.0-rc.2.26452.102 - 11.0.0-rc.2.26452.102 - 11.0.0-rc.2.26452.102 + 11.0.0-beta.26452.117 + 3.0.0-rc.2.26452.117 + 11.0.0-rc.2.26452.117 + 11.0.0-rc.2.26452.117 + 11.0.0-rc.2.26452.117 diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index f211e4b5ec..73fce95acb 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,28 +1,28 @@ - + - + https://github.com/dotnet/dotnet - ba5fefc87000195d9618a554794c7b0f283290c7 + 1fee94ef34a9c6e2e4cf4199d9a546ef8a2a927d - + https://github.com/dotnet/dotnet - ba5fefc87000195d9618a554794c7b0f283290c7 + 1fee94ef34a9c6e2e4cf4199d9a546ef8a2a927d - + https://github.com/dotnet/dotnet - ba5fefc87000195d9618a554794c7b0f283290c7 + 1fee94ef34a9c6e2e4cf4199d9a546ef8a2a927d - + https://github.com/dotnet/dotnet - ba5fefc87000195d9618a554794c7b0f283290c7 + 1fee94ef34a9c6e2e4cf4199d9a546ef8a2a927d - + https://github.com/dotnet/dotnet - ba5fefc87000195d9618a554794c7b0f283290c7 + 1fee94ef34a9c6e2e4cf4199d9a546ef8a2a927d diff --git a/global.json b/global.json index 949bf533a0..3492c525e2 100644 --- a/global.json +++ b/global.json @@ -13,7 +13,7 @@ "dotnet": "11.0.100-rc.1.26420.103" }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "11.0.0-beta.26452.102", + "Microsoft.DotNet.Arcade.Sdk": "11.0.0-beta.26452.117", "Microsoft.Build.NoTargets": "3.7.0" } } From f7c03c779aa8bbf79fd4c9a0a7fb6b9903d2a937 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Thu, 3 Sep 2026 19:03:25 +0000 Subject: [PATCH 16/32] Update dependencies from build 330331 Updated Dependencies: Microsoft.DotNet.Arcade.Sdk (Version 11.0.0-beta.26452.117 -> 11.0.0-beta.26452.122) System.CommandLine (Version 3.0.0-rc.2.26452.117 -> 3.0.0-rc.2.26452.122) System.IO.Hashing, System.Security.Cryptography.Xml, System.Text.Json (Version 11.0.0-rc.2.26452.117 -> 11.0.0-rc.2.26452.122) [[ commit created by automation ]] --- eng/Version.Details.props | 10 +++++----- eng/Version.Details.xml | 22 +++++++++++----------- global.json | 2 +- 3 files changed, 17 insertions(+), 17 deletions(-) diff --git a/eng/Version.Details.props b/eng/Version.Details.props index 11626f1cfb..3c825f6663 100644 --- a/eng/Version.Details.props +++ b/eng/Version.Details.props @@ -6,11 +6,11 @@ This file should be imported by eng/Versions.props - 11.0.0-beta.26452.117 - 3.0.0-rc.2.26452.117 - 11.0.0-rc.2.26452.117 - 11.0.0-rc.2.26452.117 - 11.0.0-rc.2.26452.117 + 11.0.0-beta.26452.122 + 3.0.0-rc.2.26452.122 + 11.0.0-rc.2.26452.122 + 11.0.0-rc.2.26452.122 + 11.0.0-rc.2.26452.122 diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 73fce95acb..5eb833299e 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,28 +1,28 @@ - + - + https://github.com/dotnet/dotnet - 1fee94ef34a9c6e2e4cf4199d9a546ef8a2a927d + 91a479da54c9a9bd821777d57536e474535066df - + https://github.com/dotnet/dotnet - 1fee94ef34a9c6e2e4cf4199d9a546ef8a2a927d + 91a479da54c9a9bd821777d57536e474535066df - + https://github.com/dotnet/dotnet - 1fee94ef34a9c6e2e4cf4199d9a546ef8a2a927d + 91a479da54c9a9bd821777d57536e474535066df - + https://github.com/dotnet/dotnet - 1fee94ef34a9c6e2e4cf4199d9a546ef8a2a927d + 91a479da54c9a9bd821777d57536e474535066df - + https://github.com/dotnet/dotnet - 1fee94ef34a9c6e2e4cf4199d9a546ef8a2a927d + 91a479da54c9a9bd821777d57536e474535066df diff --git a/global.json b/global.json index 3492c525e2..dea7ab920d 100644 --- a/global.json +++ b/global.json @@ -13,7 +13,7 @@ "dotnet": "11.0.100-rc.1.26420.103" }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "11.0.0-beta.26452.117", + "Microsoft.DotNet.Arcade.Sdk": "11.0.0-beta.26452.122", "Microsoft.Build.NoTargets": "3.7.0" } } From d1d2889cc50afa982b39ac6753c239ed718c0981 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Thu, 3 Sep 2026 22:24:51 +0000 Subject: [PATCH 17/32] Update dependencies from build 330381 Updated Dependencies: Microsoft.DotNet.Arcade.Sdk (Version 11.0.0-beta.26452.122 -> 11.0.0-beta.26453.107) System.CommandLine (Version 3.0.0-rc.2.26452.122 -> 3.0.0-rc.2.26453.107) System.IO.Hashing, System.Security.Cryptography.Xml, System.Text.Json (Version 11.0.0-rc.2.26452.122 -> 11.0.0-rc.2.26453.107) [[ commit created by automation ]] --- eng/Version.Details.props | 10 +++++----- eng/Version.Details.xml | 22 +++++++++++----------- global.json | 2 +- 3 files changed, 17 insertions(+), 17 deletions(-) diff --git a/eng/Version.Details.props b/eng/Version.Details.props index 3c825f6663..f3c1c561dd 100644 --- a/eng/Version.Details.props +++ b/eng/Version.Details.props @@ -6,11 +6,11 @@ This file should be imported by eng/Versions.props - 11.0.0-beta.26452.122 - 3.0.0-rc.2.26452.122 - 11.0.0-rc.2.26452.122 - 11.0.0-rc.2.26452.122 - 11.0.0-rc.2.26452.122 + 11.0.0-beta.26453.107 + 3.0.0-rc.2.26453.107 + 11.0.0-rc.2.26453.107 + 11.0.0-rc.2.26453.107 + 11.0.0-rc.2.26453.107 diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 5eb833299e..bf5c3c6ffa 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,28 +1,28 @@ - + - + https://github.com/dotnet/dotnet - 91a479da54c9a9bd821777d57536e474535066df + a12253cf4283fcf4a54a7d2732aae2e8821f833a - + https://github.com/dotnet/dotnet - 91a479da54c9a9bd821777d57536e474535066df + a12253cf4283fcf4a54a7d2732aae2e8821f833a - + https://github.com/dotnet/dotnet - 91a479da54c9a9bd821777d57536e474535066df + a12253cf4283fcf4a54a7d2732aae2e8821f833a - + https://github.com/dotnet/dotnet - 91a479da54c9a9bd821777d57536e474535066df + a12253cf4283fcf4a54a7d2732aae2e8821f833a - + https://github.com/dotnet/dotnet - 91a479da54c9a9bd821777d57536e474535066df + a12253cf4283fcf4a54a7d2732aae2e8821f833a diff --git a/global.json b/global.json index dea7ab920d..a7a41bc464 100644 --- a/global.json +++ b/global.json @@ -13,7 +13,7 @@ "dotnet": "11.0.100-rc.1.26420.103" }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "11.0.0-beta.26452.122", + "Microsoft.DotNet.Arcade.Sdk": "11.0.0-beta.26453.107", "Microsoft.Build.NoTargets": "3.7.0" } } From adb970d7c11954c637cd34ac535257bd69abcb6b Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Sat, 5 Sep 2026 15:04:20 +0000 Subject: [PATCH 18/32] Update dependencies from build 330652 Updated Dependencies: Microsoft.DotNet.Arcade.Sdk (Version 11.0.0-beta.26453.107 -> 11.0.0-beta.26455.101) System.CommandLine (Version 3.0.0-rc.2.26453.107 -> 3.0.0-rc.2.26455.101) System.IO.Hashing, System.Security.Cryptography.Xml, System.Text.Json (Version 11.0.0-rc.2.26453.107 -> 11.0.0-rc.2.26455.101) [[ commit created by automation ]] --- eng/Version.Details.props | 10 +++++----- eng/Version.Details.xml | 22 +++++++++++----------- global.json | 2 +- 3 files changed, 17 insertions(+), 17 deletions(-) diff --git a/eng/Version.Details.props b/eng/Version.Details.props index f3c1c561dd..ef621a80a3 100644 --- a/eng/Version.Details.props +++ b/eng/Version.Details.props @@ -6,11 +6,11 @@ This file should be imported by eng/Versions.props - 11.0.0-beta.26453.107 - 3.0.0-rc.2.26453.107 - 11.0.0-rc.2.26453.107 - 11.0.0-rc.2.26453.107 - 11.0.0-rc.2.26453.107 + 11.0.0-beta.26455.101 + 3.0.0-rc.2.26455.101 + 11.0.0-rc.2.26455.101 + 11.0.0-rc.2.26455.101 + 11.0.0-rc.2.26455.101 diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index bf5c3c6ffa..365139125a 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,28 +1,28 @@ - + - + https://github.com/dotnet/dotnet - a12253cf4283fcf4a54a7d2732aae2e8821f833a + d739329f7638f9a79913c0d4c08266c3d0ed709b - + https://github.com/dotnet/dotnet - a12253cf4283fcf4a54a7d2732aae2e8821f833a + d739329f7638f9a79913c0d4c08266c3d0ed709b - + https://github.com/dotnet/dotnet - a12253cf4283fcf4a54a7d2732aae2e8821f833a + d739329f7638f9a79913c0d4c08266c3d0ed709b - + https://github.com/dotnet/dotnet - a12253cf4283fcf4a54a7d2732aae2e8821f833a + d739329f7638f9a79913c0d4c08266c3d0ed709b - + https://github.com/dotnet/dotnet - a12253cf4283fcf4a54a7d2732aae2e8821f833a + d739329f7638f9a79913c0d4c08266c3d0ed709b diff --git a/global.json b/global.json index a7a41bc464..13e2d6dad4 100644 --- a/global.json +++ b/global.json @@ -13,7 +13,7 @@ "dotnet": "11.0.100-rc.1.26420.103" }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "11.0.0-beta.26453.107", + "Microsoft.DotNet.Arcade.Sdk": "11.0.0-beta.26455.101", "Microsoft.Build.NoTargets": "3.7.0" } } From cadcdfc892b55341096a9d32756416f1f186e209 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Sat, 5 Sep 2026 23:56:47 +0000 Subject: [PATCH 19/32] Update dependencies from build 330666 Updated Dependencies: Microsoft.DotNet.Arcade.Sdk (Version 11.0.0-beta.26455.101 -> 11.0.0-beta.26455.107) System.CommandLine (Version 3.0.0-rc.2.26455.101 -> 3.0.0-rc.2.26455.107) System.IO.Hashing, System.Security.Cryptography.Xml, System.Text.Json (Version 11.0.0-rc.2.26455.101 -> 11.0.0-rc.2.26455.107) [[ commit created by automation ]] --- eng/Version.Details.props | 10 +++++----- eng/Version.Details.xml | 22 +++++++++++----------- global.json | 2 +- 3 files changed, 17 insertions(+), 17 deletions(-) diff --git a/eng/Version.Details.props b/eng/Version.Details.props index ef621a80a3..fdbe30f107 100644 --- a/eng/Version.Details.props +++ b/eng/Version.Details.props @@ -6,11 +6,11 @@ This file should be imported by eng/Versions.props - 11.0.0-beta.26455.101 - 3.0.0-rc.2.26455.101 - 11.0.0-rc.2.26455.101 - 11.0.0-rc.2.26455.101 - 11.0.0-rc.2.26455.101 + 11.0.0-beta.26455.107 + 3.0.0-rc.2.26455.107 + 11.0.0-rc.2.26455.107 + 11.0.0-rc.2.26455.107 + 11.0.0-rc.2.26455.107 diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 365139125a..6b74178448 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,28 +1,28 @@ - + - + https://github.com/dotnet/dotnet - d739329f7638f9a79913c0d4c08266c3d0ed709b + 165468be4fb6d7b5adc526c226abf2aa7da4b5d4 - + https://github.com/dotnet/dotnet - d739329f7638f9a79913c0d4c08266c3d0ed709b + 165468be4fb6d7b5adc526c226abf2aa7da4b5d4 - + https://github.com/dotnet/dotnet - d739329f7638f9a79913c0d4c08266c3d0ed709b + 165468be4fb6d7b5adc526c226abf2aa7da4b5d4 - + https://github.com/dotnet/dotnet - d739329f7638f9a79913c0d4c08266c3d0ed709b + 165468be4fb6d7b5adc526c226abf2aa7da4b5d4 - + https://github.com/dotnet/dotnet - d739329f7638f9a79913c0d4c08266c3d0ed709b + 165468be4fb6d7b5adc526c226abf2aa7da4b5d4 diff --git a/global.json b/global.json index 13e2d6dad4..6158d50b31 100644 --- a/global.json +++ b/global.json @@ -13,7 +13,7 @@ "dotnet": "11.0.100-rc.1.26420.103" }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "11.0.0-beta.26455.101", + "Microsoft.DotNet.Arcade.Sdk": "11.0.0-beta.26455.107", "Microsoft.Build.NoTargets": "3.7.0" } } From 4c8c2358da3fe5597dd880d2f19e7ba9f39dc3ab Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Sun, 6 Sep 2026 12:35:31 +0000 Subject: [PATCH 20/32] Update dependencies from build 330689 Updated Dependencies: Microsoft.DotNet.Arcade.Sdk (Version 11.0.0-beta.26455.107 -> 11.0.0-beta.26455.110) System.CommandLine (Version 3.0.0-rc.2.26455.107 -> 3.0.0-rc.2.26455.110) System.IO.Hashing, System.Security.Cryptography.Xml, System.Text.Json (Version 11.0.0-rc.2.26455.107 -> 11.0.0-rc.2.26455.110) [[ commit created by automation ]] --- eng/Version.Details.props | 10 +++++----- eng/Version.Details.xml | 22 +++++++++++----------- global.json | 2 +- 3 files changed, 17 insertions(+), 17 deletions(-) diff --git a/eng/Version.Details.props b/eng/Version.Details.props index fdbe30f107..b064e4c334 100644 --- a/eng/Version.Details.props +++ b/eng/Version.Details.props @@ -6,11 +6,11 @@ This file should be imported by eng/Versions.props - 11.0.0-beta.26455.107 - 3.0.0-rc.2.26455.107 - 11.0.0-rc.2.26455.107 - 11.0.0-rc.2.26455.107 - 11.0.0-rc.2.26455.107 + 11.0.0-beta.26455.110 + 3.0.0-rc.2.26455.110 + 11.0.0-rc.2.26455.110 + 11.0.0-rc.2.26455.110 + 11.0.0-rc.2.26455.110 diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 6b74178448..c96981820e 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,28 +1,28 @@ - + - + https://github.com/dotnet/dotnet - 165468be4fb6d7b5adc526c226abf2aa7da4b5d4 + 52ecb082fd3889636b5793bcaa9f4ca7cb9deb71 - + https://github.com/dotnet/dotnet - 165468be4fb6d7b5adc526c226abf2aa7da4b5d4 + 52ecb082fd3889636b5793bcaa9f4ca7cb9deb71 - + https://github.com/dotnet/dotnet - 165468be4fb6d7b5adc526c226abf2aa7da4b5d4 + 52ecb082fd3889636b5793bcaa9f4ca7cb9deb71 - + https://github.com/dotnet/dotnet - 165468be4fb6d7b5adc526c226abf2aa7da4b5d4 + 52ecb082fd3889636b5793bcaa9f4ca7cb9deb71 - + https://github.com/dotnet/dotnet - 165468be4fb6d7b5adc526c226abf2aa7da4b5d4 + 52ecb082fd3889636b5793bcaa9f4ca7cb9deb71 diff --git a/global.json b/global.json index 6158d50b31..0a644eaeee 100644 --- a/global.json +++ b/global.json @@ -13,7 +13,7 @@ "dotnet": "11.0.100-rc.1.26420.103" }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "11.0.0-beta.26455.107", + "Microsoft.DotNet.Arcade.Sdk": "11.0.0-beta.26455.110", "Microsoft.Build.NoTargets": "3.7.0" } } From 572538abb56d4ed2aa2673d359fe0fcb2db86bb3 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Mon, 7 Sep 2026 17:41:21 +0000 Subject: [PATCH 21/32] Update dependencies from build 330845 Updated Dependencies: Microsoft.DotNet.Arcade.Sdk (Version 11.0.0-beta.26455.110 -> 11.0.0-beta.26457.102) System.CommandLine (Version 3.0.0-rc.2.26455.110 -> 3.0.0-rc.2.26457.102) System.IO.Hashing, System.Security.Cryptography.Xml, System.Text.Json (Version 11.0.0-rc.2.26455.110 -> 11.0.0-rc.2.26457.102) [[ commit created by automation ]] --- eng/Version.Details.props | 10 +++++----- eng/Version.Details.xml | 22 +++++++++++----------- global.json | 2 +- 3 files changed, 17 insertions(+), 17 deletions(-) diff --git a/eng/Version.Details.props b/eng/Version.Details.props index b064e4c334..887689420b 100644 --- a/eng/Version.Details.props +++ b/eng/Version.Details.props @@ -6,11 +6,11 @@ This file should be imported by eng/Versions.props - 11.0.0-beta.26455.110 - 3.0.0-rc.2.26455.110 - 11.0.0-rc.2.26455.110 - 11.0.0-rc.2.26455.110 - 11.0.0-rc.2.26455.110 + 11.0.0-beta.26457.102 + 3.0.0-rc.2.26457.102 + 11.0.0-rc.2.26457.102 + 11.0.0-rc.2.26457.102 + 11.0.0-rc.2.26457.102 diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index c96981820e..99b548f515 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,28 +1,28 @@ - + - + https://github.com/dotnet/dotnet - 52ecb082fd3889636b5793bcaa9f4ca7cb9deb71 + 5672e8351ebfce13c513322244b6f37420599866 - + https://github.com/dotnet/dotnet - 52ecb082fd3889636b5793bcaa9f4ca7cb9deb71 + 5672e8351ebfce13c513322244b6f37420599866 - + https://github.com/dotnet/dotnet - 52ecb082fd3889636b5793bcaa9f4ca7cb9deb71 + 5672e8351ebfce13c513322244b6f37420599866 - + https://github.com/dotnet/dotnet - 52ecb082fd3889636b5793bcaa9f4ca7cb9deb71 + 5672e8351ebfce13c513322244b6f37420599866 - + https://github.com/dotnet/dotnet - 52ecb082fd3889636b5793bcaa9f4ca7cb9deb71 + 5672e8351ebfce13c513322244b6f37420599866 diff --git a/global.json b/global.json index 0a644eaeee..44a6bd1d41 100644 --- a/global.json +++ b/global.json @@ -13,7 +13,7 @@ "dotnet": "11.0.100-rc.1.26420.103" }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "11.0.0-beta.26455.110", + "Microsoft.DotNet.Arcade.Sdk": "11.0.0-beta.26457.102", "Microsoft.Build.NoTargets": "3.7.0" } } From 9abd40a819a8ea5b46d4d1d115f0ed4a6f4e9b8a Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Tue, 8 Sep 2026 01:38:58 +0000 Subject: [PATCH 22/32] Update dependencies from build 330869 Updated Dependencies: Microsoft.DotNet.Arcade.Sdk (Version 11.0.0-beta.26457.102 -> 11.0.0-beta.26457.111) System.CommandLine (Version 3.0.0-rc.2.26457.102 -> 3.0.0-rc.2.26457.111) System.IO.Hashing, System.Security.Cryptography.Xml, System.Text.Json (Version 11.0.0-rc.2.26457.102 -> 11.0.0-rc.2.26457.111) [[ commit created by automation ]] --- eng/Version.Details.props | 10 +++++----- eng/Version.Details.xml | 22 +++++++++++----------- global.json | 2 +- 3 files changed, 17 insertions(+), 17 deletions(-) diff --git a/eng/Version.Details.props b/eng/Version.Details.props index 887689420b..daa5516a5c 100644 --- a/eng/Version.Details.props +++ b/eng/Version.Details.props @@ -6,11 +6,11 @@ This file should be imported by eng/Versions.props - 11.0.0-beta.26457.102 - 3.0.0-rc.2.26457.102 - 11.0.0-rc.2.26457.102 - 11.0.0-rc.2.26457.102 - 11.0.0-rc.2.26457.102 + 11.0.0-beta.26457.111 + 3.0.0-rc.2.26457.111 + 11.0.0-rc.2.26457.111 + 11.0.0-rc.2.26457.111 + 11.0.0-rc.2.26457.111 diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 99b548f515..6cf6750412 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,28 +1,28 @@ - + - + https://github.com/dotnet/dotnet - 5672e8351ebfce13c513322244b6f37420599866 + 4bb2ee8c55141f0a673bd35cfca018893ed28a00 - + https://github.com/dotnet/dotnet - 5672e8351ebfce13c513322244b6f37420599866 + 4bb2ee8c55141f0a673bd35cfca018893ed28a00 - + https://github.com/dotnet/dotnet - 5672e8351ebfce13c513322244b6f37420599866 + 4bb2ee8c55141f0a673bd35cfca018893ed28a00 - + https://github.com/dotnet/dotnet - 5672e8351ebfce13c513322244b6f37420599866 + 4bb2ee8c55141f0a673bd35cfca018893ed28a00 - + https://github.com/dotnet/dotnet - 5672e8351ebfce13c513322244b6f37420599866 + 4bb2ee8c55141f0a673bd35cfca018893ed28a00 diff --git a/global.json b/global.json index 44a6bd1d41..bf6bee5ea2 100644 --- a/global.json +++ b/global.json @@ -13,7 +13,7 @@ "dotnet": "11.0.100-rc.1.26420.103" }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "11.0.0-beta.26457.102", + "Microsoft.DotNet.Arcade.Sdk": "11.0.0-beta.26457.111", "Microsoft.Build.NoTargets": "3.7.0" } } From b1753653d7e69e7080c7d54ac669732e1c28c7c6 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Tue, 8 Sep 2026 17:50:56 +0000 Subject: [PATCH 23/32] Update dependencies from build 330971 Updated Dependencies: Microsoft.DotNet.Arcade.Sdk (Version 11.0.0-beta.26457.111 -> 11.0.0-beta.26458.103) System.CommandLine (Version 3.0.0-rc.2.26457.111 -> 3.0.0-rc.2.26458.103) System.IO.Hashing, System.Security.Cryptography.Xml, System.Text.Json (Version 11.0.0-rc.2.26457.111 -> 11.0.0-rc.2.26458.103) [[ commit created by automation ]] --- eng/Version.Details.props | 10 +++++----- eng/Version.Details.xml | 22 +++++++++++----------- global.json | 2 +- 3 files changed, 17 insertions(+), 17 deletions(-) diff --git a/eng/Version.Details.props b/eng/Version.Details.props index daa5516a5c..62f0756bfe 100644 --- a/eng/Version.Details.props +++ b/eng/Version.Details.props @@ -6,11 +6,11 @@ This file should be imported by eng/Versions.props - 11.0.0-beta.26457.111 - 3.0.0-rc.2.26457.111 - 11.0.0-rc.2.26457.111 - 11.0.0-rc.2.26457.111 - 11.0.0-rc.2.26457.111 + 11.0.0-beta.26458.103 + 3.0.0-rc.2.26458.103 + 11.0.0-rc.2.26458.103 + 11.0.0-rc.2.26458.103 + 11.0.0-rc.2.26458.103 diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 6cf6750412..faa0d401ad 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,28 +1,28 @@ - + - + https://github.com/dotnet/dotnet - 4bb2ee8c55141f0a673bd35cfca018893ed28a00 + bcd0a2de8927de44b65f3ad41bef8820ee2b3d0b - + https://github.com/dotnet/dotnet - 4bb2ee8c55141f0a673bd35cfca018893ed28a00 + bcd0a2de8927de44b65f3ad41bef8820ee2b3d0b - + https://github.com/dotnet/dotnet - 4bb2ee8c55141f0a673bd35cfca018893ed28a00 + bcd0a2de8927de44b65f3ad41bef8820ee2b3d0b - + https://github.com/dotnet/dotnet - 4bb2ee8c55141f0a673bd35cfca018893ed28a00 + bcd0a2de8927de44b65f3ad41bef8820ee2b3d0b - + https://github.com/dotnet/dotnet - 4bb2ee8c55141f0a673bd35cfca018893ed28a00 + bcd0a2de8927de44b65f3ad41bef8820ee2b3d0b diff --git a/global.json b/global.json index bf6bee5ea2..400f1b4524 100644 --- a/global.json +++ b/global.json @@ -13,7 +13,7 @@ "dotnet": "11.0.100-rc.1.26420.103" }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "11.0.0-beta.26457.111", + "Microsoft.DotNet.Arcade.Sdk": "11.0.0-beta.26458.103", "Microsoft.Build.NoTargets": "3.7.0" } } From f4563fdf4c81717726fd1db51e94095712a0a361 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Wed, 9 Sep 2026 02:47:03 +0000 Subject: [PATCH 24/32] Update dependencies from build 331079 Updated Dependencies: Microsoft.DotNet.Arcade.Sdk (Version 11.0.0-beta.26458.103 -> 11.0.0-beta.26458.109) System.CommandLine (Version 3.0.0-rc.2.26458.103 -> 3.0.0-rc.2.26458.109) System.IO.Hashing, System.Security.Cryptography.Xml, System.Text.Json (Version 11.0.0-rc.2.26458.103 -> 11.0.0-rc.2.26458.109) [[ commit created by automation ]] --- eng/Version.Details.props | 10 +++++----- eng/Version.Details.xml | 22 +++++++++++----------- global.json | 2 +- 3 files changed, 17 insertions(+), 17 deletions(-) diff --git a/eng/Version.Details.props b/eng/Version.Details.props index 62f0756bfe..c30a46f6a4 100644 --- a/eng/Version.Details.props +++ b/eng/Version.Details.props @@ -6,11 +6,11 @@ This file should be imported by eng/Versions.props - 11.0.0-beta.26458.103 - 3.0.0-rc.2.26458.103 - 11.0.0-rc.2.26458.103 - 11.0.0-rc.2.26458.103 - 11.0.0-rc.2.26458.103 + 11.0.0-beta.26458.109 + 3.0.0-rc.2.26458.109 + 11.0.0-rc.2.26458.109 + 11.0.0-rc.2.26458.109 + 11.0.0-rc.2.26458.109 diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index faa0d401ad..b745a96527 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,28 +1,28 @@ - + - + https://github.com/dotnet/dotnet - bcd0a2de8927de44b65f3ad41bef8820ee2b3d0b + c65c25f0c9889e06a5d70e275c741d8430fa353a - + https://github.com/dotnet/dotnet - bcd0a2de8927de44b65f3ad41bef8820ee2b3d0b + c65c25f0c9889e06a5d70e275c741d8430fa353a - + https://github.com/dotnet/dotnet - bcd0a2de8927de44b65f3ad41bef8820ee2b3d0b + c65c25f0c9889e06a5d70e275c741d8430fa353a - + https://github.com/dotnet/dotnet - bcd0a2de8927de44b65f3ad41bef8820ee2b3d0b + c65c25f0c9889e06a5d70e275c741d8430fa353a - + https://github.com/dotnet/dotnet - bcd0a2de8927de44b65f3ad41bef8820ee2b3d0b + c65c25f0c9889e06a5d70e275c741d8430fa353a diff --git a/global.json b/global.json index 400f1b4524..88e1a9cc5a 100644 --- a/global.json +++ b/global.json @@ -13,7 +13,7 @@ "dotnet": "11.0.100-rc.1.26420.103" }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "11.0.0-beta.26458.103", + "Microsoft.DotNet.Arcade.Sdk": "11.0.0-beta.26458.109", "Microsoft.Build.NoTargets": "3.7.0" } } From 552604af3eae54dad00d9f8375300c59e5de3aa1 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Sat, 12 Sep 2026 04:41:27 +0000 Subject: [PATCH 25/32] Update dependencies from build 331727 Updated Dependencies: Microsoft.DotNet.Arcade.Sdk (Version 11.0.0-beta.26458.109 -> 11.0.0-beta.26461.110) System.CommandLine (Version 3.0.0-rc.2.26458.109 -> 3.0.0-rc.2.26461.110) System.IO.Hashing, System.Security.Cryptography.Xml, System.Text.Json (Version 11.0.0-rc.2.26458.109 -> 11.0.0-rc.2.26461.110) [[ commit created by automation ]] --- eng/Version.Details.props | 10 ++-- eng/Version.Details.xml | 22 ++++----- eng/common/core-templates/job/onelocbuild.yml | 48 +++++++------------ global.json | 6 +-- 4 files changed, 36 insertions(+), 50 deletions(-) diff --git a/eng/Version.Details.props b/eng/Version.Details.props index c30a46f6a4..88cb85bf4f 100644 --- a/eng/Version.Details.props +++ b/eng/Version.Details.props @@ -6,11 +6,11 @@ This file should be imported by eng/Versions.props - 11.0.0-beta.26458.109 - 3.0.0-rc.2.26458.109 - 11.0.0-rc.2.26458.109 - 11.0.0-rc.2.26458.109 - 11.0.0-rc.2.26458.109 + 11.0.0-beta.26461.110 + 3.0.0-rc.2.26461.110 + 11.0.0-rc.2.26461.110 + 11.0.0-rc.2.26461.110 + 11.0.0-rc.2.26461.110 diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index b745a96527..71f87a9ad7 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,28 +1,28 @@ - + - + https://github.com/dotnet/dotnet - c65c25f0c9889e06a5d70e275c741d8430fa353a + e775569ca8ce94c363d910311f5f889e648ddc23 - + https://github.com/dotnet/dotnet - c65c25f0c9889e06a5d70e275c741d8430fa353a + e775569ca8ce94c363d910311f5f889e648ddc23 - + https://github.com/dotnet/dotnet - c65c25f0c9889e06a5d70e275c741d8430fa353a + e775569ca8ce94c363d910311f5f889e648ddc23 - + https://github.com/dotnet/dotnet - c65c25f0c9889e06a5d70e275c741d8430fa353a + e775569ca8ce94c363d910311f5f889e648ddc23 - + https://github.com/dotnet/dotnet - c65c25f0c9889e06a5d70e275c741d8430fa353a + e775569ca8ce94c363d910311f5f889e648ddc23 diff --git a/eng/common/core-templates/job/onelocbuild.yml b/eng/common/core-templates/job/onelocbuild.yml index ce077368e4..25af278790 100644 --- a/eng/common/core-templates/job/onelocbuild.yml +++ b/eng/common/core-templates/job/onelocbuild.yml @@ -5,20 +5,10 @@ parameters: # Optional: A defined YAML pool - https://docs.microsoft.com/en-us/azure/devops/pipelines/yaml-schema?view=vsts&tabs=schema#pool pool: '' - CeapexPat: $(dn-bot-ceapex-package-r) # PAT for the loc AzDO instance https://dev.azure.com/ceapex - GithubPat: $(BotAccount-dotnet-bot-repo-PAT) - - # Service connection for WIF-based Entra authentication to ceapex feeds (replaces CeapexPat). - # When set, dnceng/internal builds acquire a federated Entra token instead of using a PAT. - # All other projects (e.g. DevDiv, public), where this dnceng-scoped service connection does not - # exist, and any pipeline that sets this to '' fall back to PAT-based auth via the CeapexPat parameter. + # Project-scoped WIF service connection for Ceapex feed authentication. CeapexServiceConnection: 'dnceng-onelocbuild-ceapex' # GitHub App authentication for the OneLoc check-in PR. - # dnceng/internal and DevDiv/DevDiv are enabled by default with their project-scoped service - # connections. Other projects must explicitly opt in after provisioning equivalent infrastructure. - UseGitHubAppAuthentication: true - UseGitHubAppAuthenticationInOtherProjects: false GitHubAppServiceConnection: 'dnceng-oneloc-githubapp' GitHubAppClientId: 'Iv23lijBU8x3gc9lDOc9' GitHubAppKeyVaultName: 'EngKeyVault' @@ -50,7 +40,6 @@ jobs: displayName: OneLocBuild${{ parameters.JobNameSuffix }} variables: - - group: OneLocBuildVariables # Contains the CeapexPat and GithubPat - name: _GenerateLocProjectArguments value: -SourcesDirectory ${{ parameters.SourcesDirectory }} -LanguageSet "${{ parameters.LanguageSet }}" @@ -81,6 +70,12 @@ jobs: steps: - ${{ if eq(parameters.is1ESPipeline, '') }}: - 'Illegal entry point, is1ESPipeline is not defined. Repository yaml should not directly reference templates in core-templates folder.': error + - ${{ if notin(variables['System.TeamProject'], 'internal', 'DevDiv') }}: + - 'OneLocBuild is supported only in dnceng/internal and DevDiv/DevDiv.': error + - ${{ if eq(parameters.CeapexServiceConnection, '') }}: + - 'CeapexServiceConnection must identify a WIF service connection.': error + - ${{ if and(eq(parameters.RepoType, 'gitHub'), eq(parameters.GitHubAppServiceConnection, '')) }}: + - 'GitHubAppServiceConnection must identify a WIF service connection for GitHub repositories.': error - ${{ if ne(parameters.SkipLocProjectJsonGeneration, 'true') }}: - task: Powershell@2 @@ -90,18 +85,15 @@ jobs: displayName: Generate LocProject.json condition: ${{ parameters.condition }} - # Acquire an Entra token for ceapex feed access via WIF (dnceng/internal only). - # All other projects use PAT-based auth, since the ceapex service connection is scoped to dnceng/internal. - - ${{ if and(ne(parameters.CeapexServiceConnection, ''), eq(variables['System.TeamProject'], 'internal')) }}: - - template: /eng/common/templates/steps/get-federated-access-token.yml - parameters: - federatedServiceConnection: ${{ parameters.CeapexServiceConnection }} - outputVariableName: 'CeapexEntraToken' - condition: ${{ parameters.condition }} + # Acquire a short-lived Entra token for Ceapex feed access. + - template: /eng/common/templates/steps/get-federated-access-token.yml + parameters: + federatedServiceConnection: ${{ parameters.CeapexServiceConnection }} + outputVariableName: 'CeapexEntraToken' + condition: ${{ parameters.condition }} - # Mint a short-lived GitHub App installation token for the loc check-in PR. Use the connection - # provisioned in each supported project; other projects must explicitly opt in and override it. - - ${{ if and(eq(parameters.RepoType, 'gitHub'), eq(parameters.UseGitHubAppAuthentication, true), or(eq(variables['System.TeamProject'], 'internal'), eq(variables['System.TeamProject'], 'DevDiv'), eq(parameters.UseGitHubAppAuthenticationInOtherProjects, true))) }}: + # Mint a short-lived GitHub App installation token for the loc check-in PR. + - ${{ if eq(parameters.RepoType, 'gitHub') }}: - template: /eng/common/core-templates/steps/get-github-app-token.yml parameters: is1ESPipeline: ${{ parameters.is1ESPipeline }} @@ -131,16 +123,10 @@ jobs: isUseLfLineEndingsSelected: ${{ parameters.UseLfLineEndings }} isShouldReusePrSelected: ${{ parameters.ReusePr }} packageSourceAuth: patAuth - ${{ if and(ne(parameters.CeapexServiceConnection, ''), eq(variables['System.TeamProject'], 'internal')) }}: - patVariable: $(CeapexEntraToken) - ${{ if or(eq(parameters.CeapexServiceConnection, ''), ne(variables['System.TeamProject'], 'internal')) }}: - patVariable: ${{ parameters.CeapexPat }} + patVariable: $(CeapexEntraToken) ${{ if eq(parameters.RepoType, 'gitHub') }}: repoType: ${{ parameters.RepoType }} - ${{ if and(eq(parameters.UseGitHubAppAuthentication, true), or(eq(variables['System.TeamProject'], 'internal'), eq(variables['System.TeamProject'], 'DevDiv'), eq(parameters.UseGitHubAppAuthenticationInOtherProjects, true))) }}: - gitHubPatVariable: "$(GitHubAppInstallationToken)" - ${{ else }}: - gitHubPatVariable: "${{ parameters.GithubPat }}" + gitHubPatVariable: "$(GitHubAppInstallationToken)" ${{ if ne(parameters.MirrorRepo, '') }}: isMirrorRepoSelected: true gitHubOrganization: ${{ parameters.GitHubOrg }} diff --git a/global.json b/global.json index 88e1a9cc5a..a42d20d998 100644 --- a/global.json +++ b/global.json @@ -1,6 +1,6 @@ { "sdk": { - "version": "11.0.100-rc.1.26420.103", + "version": "11.0.100-rc.1.26425.128", "allowPrerelease": true, "rollForward": "latestFeature", "paths": [ @@ -10,10 +10,10 @@ "errorMessage": "The required .NET SDK wasn't found. Please run ./eng/common/dotnet.cmd/sh to install it." }, "tools": { - "dotnet": "11.0.100-rc.1.26420.103" + "dotnet": "11.0.100-rc.1.26425.128" }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "11.0.0-beta.26458.109", + "Microsoft.DotNet.Arcade.Sdk": "11.0.0-beta.26461.110", "Microsoft.Build.NoTargets": "3.7.0" } } From 6623628354f6d318801ead2a40a47bd6ffc356d1 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Sat, 12 Sep 2026 12:23:34 +0000 Subject: [PATCH 26/32] Update dependencies from build 331753 Updated Dependencies: Microsoft.DotNet.Arcade.Sdk (Version 11.0.0-beta.26461.110 -> 11.0.0-beta.26461.115) System.CommandLine (Version 3.0.0-rc.2.26461.110 -> 3.0.0-rc.2.26461.115) System.IO.Hashing, System.Security.Cryptography.Xml, System.Text.Json (Version 11.0.0-rc.2.26461.110 -> 11.0.0-rc.2.26461.115) [[ commit created by automation ]] --- eng/Version.Details.props | 10 +++++----- eng/Version.Details.xml | 22 +++++++++++----------- global.json | 2 +- 3 files changed, 17 insertions(+), 17 deletions(-) diff --git a/eng/Version.Details.props b/eng/Version.Details.props index 88cb85bf4f..474f494e57 100644 --- a/eng/Version.Details.props +++ b/eng/Version.Details.props @@ -6,11 +6,11 @@ This file should be imported by eng/Versions.props - 11.0.0-beta.26461.110 - 3.0.0-rc.2.26461.110 - 11.0.0-rc.2.26461.110 - 11.0.0-rc.2.26461.110 - 11.0.0-rc.2.26461.110 + 11.0.0-beta.26461.115 + 3.0.0-rc.2.26461.115 + 11.0.0-rc.2.26461.115 + 11.0.0-rc.2.26461.115 + 11.0.0-rc.2.26461.115 diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 71f87a9ad7..c1e86415b4 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,28 +1,28 @@ - + - + https://github.com/dotnet/dotnet - e775569ca8ce94c363d910311f5f889e648ddc23 + fb92951eceabe91c5015b35e49acdbc9c867aaf8 - + https://github.com/dotnet/dotnet - e775569ca8ce94c363d910311f5f889e648ddc23 + fb92951eceabe91c5015b35e49acdbc9c867aaf8 - + https://github.com/dotnet/dotnet - e775569ca8ce94c363d910311f5f889e648ddc23 + fb92951eceabe91c5015b35e49acdbc9c867aaf8 - + https://github.com/dotnet/dotnet - e775569ca8ce94c363d910311f5f889e648ddc23 + fb92951eceabe91c5015b35e49acdbc9c867aaf8 - + https://github.com/dotnet/dotnet - e775569ca8ce94c363d910311f5f889e648ddc23 + fb92951eceabe91c5015b35e49acdbc9c867aaf8 diff --git a/global.json b/global.json index a42d20d998..01a37bb7ae 100644 --- a/global.json +++ b/global.json @@ -13,7 +13,7 @@ "dotnet": "11.0.100-rc.1.26425.128" }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "11.0.0-beta.26461.110", + "Microsoft.DotNet.Arcade.Sdk": "11.0.0-beta.26461.115", "Microsoft.Build.NoTargets": "3.7.0" } } From 1e9c08c78fe4784d531bae8e47758039c84de1f5 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Tue, 15 Sep 2026 09:36:46 +0000 Subject: [PATCH 27/32] Update dependencies from build 332074 Updated Dependencies: Microsoft.DotNet.Arcade.Sdk (Version 11.0.0-beta.26461.115 -> 11.0.0-beta.26464.119) System.CommandLine (Version 3.0.0-rc.2.26461.115 -> 3.0.0-rc.2.26464.119) System.IO.Hashing, System.Security.Cryptography.Xml, System.Text.Json (Version 11.0.0-rc.2.26461.115 -> 11.0.0-rc.2.26464.119) [[ commit created by automation ]] --- eng/Version.Details.props | 10 +++++----- eng/Version.Details.xml | 22 +++++++++++----------- global.json | 2 +- 3 files changed, 17 insertions(+), 17 deletions(-) diff --git a/eng/Version.Details.props b/eng/Version.Details.props index 474f494e57..ecffb978db 100644 --- a/eng/Version.Details.props +++ b/eng/Version.Details.props @@ -6,11 +6,11 @@ This file should be imported by eng/Versions.props - 11.0.0-beta.26461.115 - 3.0.0-rc.2.26461.115 - 11.0.0-rc.2.26461.115 - 11.0.0-rc.2.26461.115 - 11.0.0-rc.2.26461.115 + 11.0.0-beta.26464.119 + 3.0.0-rc.2.26464.119 + 11.0.0-rc.2.26464.119 + 11.0.0-rc.2.26464.119 + 11.0.0-rc.2.26464.119 diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index c1e86415b4..6814c08c83 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,28 +1,28 @@ - + - + https://github.com/dotnet/dotnet - fb92951eceabe91c5015b35e49acdbc9c867aaf8 + e30f34edad9fde012dbe3d67c95aa4db4c1d022b - + https://github.com/dotnet/dotnet - fb92951eceabe91c5015b35e49acdbc9c867aaf8 + e30f34edad9fde012dbe3d67c95aa4db4c1d022b - + https://github.com/dotnet/dotnet - fb92951eceabe91c5015b35e49acdbc9c867aaf8 + e30f34edad9fde012dbe3d67c95aa4db4c1d022b - + https://github.com/dotnet/dotnet - fb92951eceabe91c5015b35e49acdbc9c867aaf8 + e30f34edad9fde012dbe3d67c95aa4db4c1d022b - + https://github.com/dotnet/dotnet - fb92951eceabe91c5015b35e49acdbc9c867aaf8 + e30f34edad9fde012dbe3d67c95aa4db4c1d022b diff --git a/global.json b/global.json index 01a37bb7ae..dab62be6dd 100644 --- a/global.json +++ b/global.json @@ -13,7 +13,7 @@ "dotnet": "11.0.100-rc.1.26425.128" }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "11.0.0-beta.26461.115", + "Microsoft.DotNet.Arcade.Sdk": "11.0.0-beta.26464.119", "Microsoft.Build.NoTargets": "3.7.0" } } From b61a5a6fb257ec76eb71e12acb31d2939832415f Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Tue, 15 Sep 2026 17:16:30 +0000 Subject: [PATCH 28/32] Update dependencies from build 332135 Updated Dependencies: Microsoft.DotNet.Arcade.Sdk (Version 11.0.0-beta.26464.119 -> 11.0.0-beta.26465.102) System.CommandLine (Version 3.0.0-rc.2.26464.119 -> 3.0.0-rc.2.26465.102) System.IO.Hashing, System.Security.Cryptography.Xml, System.Text.Json (Version 11.0.0-rc.2.26464.119 -> 11.0.0-rc.2.26465.102) [[ commit created by automation ]] --- eng/Version.Details.props | 10 +++++----- eng/Version.Details.xml | 22 +++++++++++----------- global.json | 2 +- 3 files changed, 17 insertions(+), 17 deletions(-) diff --git a/eng/Version.Details.props b/eng/Version.Details.props index ecffb978db..f95c454e92 100644 --- a/eng/Version.Details.props +++ b/eng/Version.Details.props @@ -6,11 +6,11 @@ This file should be imported by eng/Versions.props - 11.0.0-beta.26464.119 - 3.0.0-rc.2.26464.119 - 11.0.0-rc.2.26464.119 - 11.0.0-rc.2.26464.119 - 11.0.0-rc.2.26464.119 + 11.0.0-beta.26465.102 + 3.0.0-rc.2.26465.102 + 11.0.0-rc.2.26465.102 + 11.0.0-rc.2.26465.102 + 11.0.0-rc.2.26465.102 diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 6814c08c83..0a99fdf6ac 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,28 +1,28 @@ - + - + https://github.com/dotnet/dotnet - e30f34edad9fde012dbe3d67c95aa4db4c1d022b + bcdaaccbf4b97f0fa310f29be7dc6d0bf4924d47 - + https://github.com/dotnet/dotnet - e30f34edad9fde012dbe3d67c95aa4db4c1d022b + bcdaaccbf4b97f0fa310f29be7dc6d0bf4924d47 - + https://github.com/dotnet/dotnet - e30f34edad9fde012dbe3d67c95aa4db4c1d022b + bcdaaccbf4b97f0fa310f29be7dc6d0bf4924d47 - + https://github.com/dotnet/dotnet - e30f34edad9fde012dbe3d67c95aa4db4c1d022b + bcdaaccbf4b97f0fa310f29be7dc6d0bf4924d47 - + https://github.com/dotnet/dotnet - e30f34edad9fde012dbe3d67c95aa4db4c1d022b + bcdaaccbf4b97f0fa310f29be7dc6d0bf4924d47 diff --git a/global.json b/global.json index dab62be6dd..23e23d2b7f 100644 --- a/global.json +++ b/global.json @@ -13,7 +13,7 @@ "dotnet": "11.0.100-rc.1.26425.128" }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "11.0.0-beta.26464.119", + "Microsoft.DotNet.Arcade.Sdk": "11.0.0-beta.26465.102", "Microsoft.Build.NoTargets": "3.7.0" } } From 5078daa87849a0428f4fc966f56c2da266c25231 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Wed, 16 Sep 2026 01:47:31 +0000 Subject: [PATCH 29/32] Update dependencies from build 332243 Updated Dependencies: Microsoft.DotNet.Arcade.Sdk (Version 11.0.0-beta.26465.102 -> 11.0.0-beta.26465.108) System.CommandLine (Version 3.0.0-rc.2.26465.102 -> 3.0.0-rc.2.26465.108) System.IO.Hashing, System.Security.Cryptography.Xml, System.Text.Json (Version 11.0.0-rc.2.26465.102 -> 11.0.0-rc.2.26465.108) [[ commit created by automation ]] --- eng/Version.Details.props | 10 ++--- eng/Version.Details.xml | 22 +++++----- .../core-templates/job/helix-job-monitor.yml | 42 +++++++++++++++++- eng/common/core-templates/job/job.yml | 3 +- .../core-templates/steps/send-to-helix.yml | 43 +++++++++++++++++-- global.json | 2 +- 6 files changed, 98 insertions(+), 24 deletions(-) diff --git a/eng/Version.Details.props b/eng/Version.Details.props index f95c454e92..d7cc310706 100644 --- a/eng/Version.Details.props +++ b/eng/Version.Details.props @@ -6,11 +6,11 @@ This file should be imported by eng/Versions.props - 11.0.0-beta.26465.102 - 3.0.0-rc.2.26465.102 - 11.0.0-rc.2.26465.102 - 11.0.0-rc.2.26465.102 - 11.0.0-rc.2.26465.102 + 11.0.0-beta.26465.108 + 3.0.0-rc.2.26465.108 + 11.0.0-rc.2.26465.108 + 11.0.0-rc.2.26465.108 + 11.0.0-rc.2.26465.108 diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 0a99fdf6ac..aa1216ead7 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,28 +1,28 @@ - + - + https://github.com/dotnet/dotnet - bcdaaccbf4b97f0fa310f29be7dc6d0bf4924d47 + e5abd3f0528a8467c64a855a6ff569566d0daf27 - + https://github.com/dotnet/dotnet - bcdaaccbf4b97f0fa310f29be7dc6d0bf4924d47 + e5abd3f0528a8467c64a855a6ff569566d0daf27 - + https://github.com/dotnet/dotnet - bcdaaccbf4b97f0fa310f29be7dc6d0bf4924d47 + e5abd3f0528a8467c64a855a6ff569566d0daf27 - + https://github.com/dotnet/dotnet - bcdaaccbf4b97f0fa310f29be7dc6d0bf4924d47 + e5abd3f0528a8467c64a855a6ff569566d0daf27 - + https://github.com/dotnet/dotnet - bcdaaccbf4b97f0fa310f29be7dc6d0bf4924d47 + e5abd3f0528a8467c64a855a6ff569566d0daf27 diff --git a/eng/common/core-templates/job/helix-job-monitor.yml b/eng/common/core-templates/job/helix-job-monitor.yml index 53bbf74927..7417afdf3e 100644 --- a/eng/common/core-templates/job/helix-job-monitor.yml +++ b/eng/common/core-templates/job/helix-job-monitor.yml @@ -52,11 +52,23 @@ parameters: type: string default: https://helix.dot.net/ -# Helix API access token forwarded to the tool via the HELIX_ACCESSTOKEN environment variable. +# Helix API access token forwarded via HELIX_ACCESSTOKEN. Not forwarded when +# useEntraAuthentication is true. - name: helixAccessToken type: string default: '' +# Use a refreshable Entra credential instead of a PAT or anonymous access. +- name: useEntraAuthentication + type: boolean + default: false + +# Azure service connection ID authorized for Helix. Required when +# useEntraAuthentication is true. +- name: azureSubscription + type: string + default: '' + # Polling interval in seconds (--polling-interval-seconds). - name: pollingIntervalSeconds type: number @@ -141,6 +153,26 @@ jobs: - checkout: self fetchDepth: 1 + - ${{ if and(eq(parameters.useEntraAuthentication, true), eq(parameters.azureSubscription, '')) }}: + - pwsh: throw "azureSubscription must be set when useEntraAuthentication is true." + displayName: Validate Helix Entra authentication + + - ${{ if eq(parameters.useEntraAuthentication, true) }}: + - task: AzureCLI@2 + displayName: Initialize Helix Entra authentication + inputs: + azureSubscription: ${{ parameters.azureSubscription }} + addSpnToEnvironment: true + scriptType: pscore + scriptLocation: inlineScript + inlineScript: | + if ([string]::IsNullOrWhiteSpace($env:servicePrincipalId) -or [string]::IsNullOrWhiteSpace($env:tenantId)) { + throw "The Helix Azure service connection did not provide a service principal or tenant ID." + } + + Write-Host "##vso[task.setvariable variable=HelixEntraClientId]$env:servicePrincipalId" + Write-Host "##vso[task.setvariable variable=HelixEntraTenantId]$env:tenantId" + - ${{ if ne(parameters.toolNupkgArtifactName, '') }}: - task: DownloadPipelineArtifact@2 displayName: Download Helix Job Monitor artifact @@ -214,6 +246,7 @@ jobs: toolArgs=( --helix-base-uri '${{ parameters.helixBaseUri }}' + --use-entra-authentication '${{ parameters.useEntraAuthentication }}' --polling-interval-seconds '${{ parameters.pollingIntervalSeconds }}' --fail-on-failed-tests '${{ parameters.failWorkItemsWithFailedTests }}' --allow-no-helix-jobs '${{ parameters.allowNoHelixJobs }}' @@ -275,4 +308,9 @@ jobs: displayName: Monitor Helix Jobs env: SYSTEM_ACCESSTOKEN: $(System.AccessToken) - HELIX_ACCESSTOKEN: ${{ parameters.helixAccessToken }} + ${{ if eq(parameters.useEntraAuthentication, false) }}: + HELIX_ACCESSTOKEN: ${{ parameters.helixAccessToken }} + ${{ if eq(parameters.useEntraAuthentication, true) }}: + AZURESUBSCRIPTION_CLIENT_ID: $(HelixEntraClientId) + AZURESUBSCRIPTION_TENANT_ID: $(HelixEntraTenantId) + AZURESUBSCRIPTION_SERVICE_CONNECTION_ID: ${{ parameters.azureSubscription }} diff --git a/eng/common/core-templates/job/job.yml b/eng/common/core-templates/job/job.yml index cb60f52978..7da6bdf520 100644 --- a/eng/common/core-templates/job/job.yml +++ b/eng/common/core-templates/job/job.yml @@ -119,7 +119,8 @@ jobs: - name: ${{ pair.key }} value: ${{ pair.value }} - # DotNet-HelixApi-Access provides 'HelixApiAccessToken' for internal builds + # DotNet-HelixApi-Access provides 'HelixApiAccessToken' for internal builds. + # Entra-enabled Helix templates do not forward this value to their processes. - ${{ if and(eq(parameters.enableTelemetry, 'true'), eq(parameters.runAsPublic, 'false'), ne(variables['System.TeamProject'], 'public'), notin(variables['Build.Reason'], 'PullRequest')) }}: - group: DotNet-HelixApi-Access diff --git a/eng/common/core-templates/steps/send-to-helix.yml b/eng/common/core-templates/steps/send-to-helix.yml index ec7a200039..62cce4d4ea 100644 --- a/eng/common/core-templates/steps/send-to-helix.yml +++ b/eng/common/core-templates/steps/send-to-helix.yml @@ -4,7 +4,9 @@ parameters: HelixType: 'tests/default/' # required -- Helix telemetry which identifies what type of data this is; should include "test" for clarity and must end in '/' HelixBuild: $(Build.BuildNumber) # required -- the build number Helix will use to identify this -- automatically set to the AzDO build number HelixTargetQueues: '' # required -- semicolon-delimited list of Helix queues to test on; see https://helix.dot.net/ for a list of queues - HelixAccessToken: '' # required -- access token to make Helix API requests; should be provided by the appropriate variable group + HelixAccessToken: '' # optional -- legacy access token; not forwarded when HelixUseEntraAuthentication is true + HelixUseEntraAuthentication: false # optional -- use refreshable Entra authentication instead of a PAT or anonymous access + HelixAzureSubscription: '' # required when HelixUseEntraAuthentication is true -- Azure service connection ID authorized for Helix HelixProjectPath: 'eng/common/helixpublish.proj' # optional -- path to the project file to build relative to BUILD_SOURCESDIRECTORY HelixProjectArguments: '' # optional -- arguments passed to the build command HelixConfiguration: '' # optional -- additional property attached to a job @@ -32,12 +34,35 @@ parameters: continueOnError: false # optional -- determines whether to continue the build if the step errors; defaults to false steps: + - ${{ if and(eq(parameters.HelixUseEntraAuthentication, true), eq(parameters.HelixAzureSubscription, '')) }}: + - pwsh: throw "HelixAzureSubscription must be set when HelixUseEntraAuthentication is true." + displayName: Validate Helix Entra authentication + condition: ${{ parameters.condition }} + + - ${{ if eq(parameters.HelixUseEntraAuthentication, true) }}: + - task: AzureCLI@2 + displayName: Initialize Helix Entra authentication + inputs: + azureSubscription: ${{ parameters.HelixAzureSubscription }} + addSpnToEnvironment: true + scriptType: pscore + scriptLocation: inlineScript + inlineScript: | + if ([string]::IsNullOrWhiteSpace($env:servicePrincipalId) -or [string]::IsNullOrWhiteSpace($env:tenantId)) { + throw "The Helix Azure service connection did not provide a service principal or tenant ID." + } + + Write-Host "##vso[task.setvariable variable=HelixEntraClientId]$env:servicePrincipalId" + Write-Host "##vso[task.setvariable variable=HelixEntraTenantId]$env:tenantId" + condition: ${{ parameters.condition }} + - powershell: > $(Build.SourcesDirectory)\eng\common\msbuild.ps1 $(Build.SourcesDirectory)/${{ parameters.HelixProjectPath }} /restore /p:TreatWarningsAsErrors=false /p:EnableHelixJobMonitor=${{ parameters.UseHelixMonitor }} + /p:HelixUseEntraAuthentication=${{ parameters.HelixUseEntraAuthentication }} ${{ parameters.HelixProjectArguments }} /t:Test /bl:$(Build.SourcesDirectory)/artifacts/log/$(_BuildConfig)/SendToHelix.binlog @@ -49,7 +74,12 @@ steps: HelixBuild: ${{ parameters.HelixBuild }} HelixConfiguration: ${{ parameters.HelixConfiguration }} HelixTargetQueues: ${{ parameters.HelixTargetQueues }} - HelixAccessToken: ${{ parameters.HelixAccessToken }} + ${{ if eq(parameters.HelixUseEntraAuthentication, false) }}: + HelixAccessToken: ${{ parameters.HelixAccessToken }} + ${{ if eq(parameters.HelixUseEntraAuthentication, true) }}: + AZURESUBSCRIPTION_CLIENT_ID: $(HelixEntraClientId) + AZURESUBSCRIPTION_TENANT_ID: $(HelixEntraTenantId) + AZURESUBSCRIPTION_SERVICE_CONNECTION_ID: ${{ parameters.HelixAzureSubscription }} HelixPreCommands: ${{ parameters.HelixPreCommands }} HelixPostCommands: ${{ parameters.HelixPostCommands }} WorkItemDirectory: ${{ parameters.WorkItemDirectory }} @@ -76,6 +106,7 @@ steps: /restore /p:TreatWarningsAsErrors=false /p:EnableHelixJobMonitor=${{ parameters.UseHelixMonitor }} + /p:HelixUseEntraAuthentication=${{ parameters.HelixUseEntraAuthentication }} ${{ parameters.HelixProjectArguments }} /t:Test /bl:$(Build.SourcesDirectory)/artifacts/log/$(_BuildConfig)/SendToHelix.binlog @@ -87,7 +118,12 @@ steps: HelixBuild: ${{ parameters.HelixBuild }} HelixConfiguration: ${{ parameters.HelixConfiguration }} HelixTargetQueues: ${{ parameters.HelixTargetQueues }} - HelixAccessToken: ${{ parameters.HelixAccessToken }} + ${{ if eq(parameters.HelixUseEntraAuthentication, false) }}: + HelixAccessToken: ${{ parameters.HelixAccessToken }} + ${{ if eq(parameters.HelixUseEntraAuthentication, true) }}: + AZURESUBSCRIPTION_CLIENT_ID: $(HelixEntraClientId) + AZURESUBSCRIPTION_TENANT_ID: $(HelixEntraTenantId) + AZURESUBSCRIPTION_SERVICE_CONNECTION_ID: ${{ parameters.HelixAzureSubscription }} HelixPreCommands: ${{ parameters.HelixPreCommands }} HelixPostCommands: ${{ parameters.HelixPostCommands }} WorkItemDirectory: ${{ parameters.WorkItemDirectory }} @@ -108,4 +144,3 @@ steps: SYSTEM_ACCESSTOKEN: $(System.AccessToken) condition: and(${{ parameters.condition }}, ne(variables['Agent.Os'], 'Windows_NT')) continueOnError: ${{ parameters.continueOnError }} - diff --git a/global.json b/global.json index 23e23d2b7f..03f28aaa1c 100644 --- a/global.json +++ b/global.json @@ -13,7 +13,7 @@ "dotnet": "11.0.100-rc.1.26425.128" }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "11.0.0-beta.26465.102", + "Microsoft.DotNet.Arcade.Sdk": "11.0.0-beta.26465.108", "Microsoft.Build.NoTargets": "3.7.0" } } From 8c28faa9a925da0d7198c2b0996d1c0e1b3a1b19 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Wed, 16 Sep 2026 12:19:11 +0000 Subject: [PATCH 30/32] Update dependencies from build 332290 Updated Dependencies: Microsoft.DotNet.Arcade.Sdk (Version 11.0.0-beta.26465.108 -> 11.0.0-beta.26465.113) System.CommandLine (Version 3.0.0-rc.2.26465.108 -> 3.0.0-rc.2.26465.113) System.IO.Hashing, System.Security.Cryptography.Xml, System.Text.Json (Version 11.0.0-rc.2.26465.108 -> 11.0.0-rc.2.26465.113) [[ commit created by automation ]] --- eng/Version.Details.props | 10 +++++----- eng/Version.Details.xml | 22 +++++++++++----------- global.json | 2 +- 3 files changed, 17 insertions(+), 17 deletions(-) diff --git a/eng/Version.Details.props b/eng/Version.Details.props index d7cc310706..766b5a5d18 100644 --- a/eng/Version.Details.props +++ b/eng/Version.Details.props @@ -6,11 +6,11 @@ This file should be imported by eng/Versions.props - 11.0.0-beta.26465.108 - 3.0.0-rc.2.26465.108 - 11.0.0-rc.2.26465.108 - 11.0.0-rc.2.26465.108 - 11.0.0-rc.2.26465.108 + 11.0.0-beta.26465.113 + 3.0.0-rc.2.26465.113 + 11.0.0-rc.2.26465.113 + 11.0.0-rc.2.26465.113 + 11.0.0-rc.2.26465.113 diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index aa1216ead7..de09f80e06 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,28 +1,28 @@ - + - + https://github.com/dotnet/dotnet - e5abd3f0528a8467c64a855a6ff569566d0daf27 + 3d2a4811a58d8ba08bc2162cced36034f98c6b5d - + https://github.com/dotnet/dotnet - e5abd3f0528a8467c64a855a6ff569566d0daf27 + 3d2a4811a58d8ba08bc2162cced36034f98c6b5d - + https://github.com/dotnet/dotnet - e5abd3f0528a8467c64a855a6ff569566d0daf27 + 3d2a4811a58d8ba08bc2162cced36034f98c6b5d - + https://github.com/dotnet/dotnet - e5abd3f0528a8467c64a855a6ff569566d0daf27 + 3d2a4811a58d8ba08bc2162cced36034f98c6b5d - + https://github.com/dotnet/dotnet - e5abd3f0528a8467c64a855a6ff569566d0daf27 + 3d2a4811a58d8ba08bc2162cced36034f98c6b5d diff --git a/global.json b/global.json index 03f28aaa1c..8711273dd0 100644 --- a/global.json +++ b/global.json @@ -13,7 +13,7 @@ "dotnet": "11.0.100-rc.1.26425.128" }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "11.0.0-beta.26465.108", + "Microsoft.DotNet.Arcade.Sdk": "11.0.0-beta.26465.113", "Microsoft.Build.NoTargets": "3.7.0" } } From dd5128412b85bacc23afa3e04b3dd79052a60a12 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Thu, 17 Sep 2026 10:54:02 +0000 Subject: [PATCH 31/32] Update dependencies from build 332487 Updated Dependencies: Microsoft.DotNet.Arcade.Sdk (Version 11.0.0-beta.26465.113 -> 11.0.0-beta.26466.122) System.CommandLine (Version 3.0.0-rc.2.26465.113 -> 3.0.0-rc.2.26466.122) System.IO.Hashing, System.Security.Cryptography.Xml, System.Text.Json (Version 11.0.0-rc.2.26465.113 -> 11.0.0-rc.2.26466.122) [[ commit created by automation ]] --- eng/Version.Details.props | 10 +++++----- eng/Version.Details.xml | 22 +++++++++++----------- global.json | 2 +- 3 files changed, 17 insertions(+), 17 deletions(-) diff --git a/eng/Version.Details.props b/eng/Version.Details.props index 766b5a5d18..52b25cb834 100644 --- a/eng/Version.Details.props +++ b/eng/Version.Details.props @@ -6,11 +6,11 @@ This file should be imported by eng/Versions.props - 11.0.0-beta.26465.113 - 3.0.0-rc.2.26465.113 - 11.0.0-rc.2.26465.113 - 11.0.0-rc.2.26465.113 - 11.0.0-rc.2.26465.113 + 11.0.0-beta.26466.122 + 3.0.0-rc.2.26466.122 + 11.0.0-rc.2.26466.122 + 11.0.0-rc.2.26466.122 + 11.0.0-rc.2.26466.122 diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index de09f80e06..5d815f2bca 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,28 +1,28 @@ - + - + https://github.com/dotnet/dotnet - 3d2a4811a58d8ba08bc2162cced36034f98c6b5d + b26f93f4b148c0421d890fbaf35ad82ef17d0066 - + https://github.com/dotnet/dotnet - 3d2a4811a58d8ba08bc2162cced36034f98c6b5d + b26f93f4b148c0421d890fbaf35ad82ef17d0066 - + https://github.com/dotnet/dotnet - 3d2a4811a58d8ba08bc2162cced36034f98c6b5d + b26f93f4b148c0421d890fbaf35ad82ef17d0066 - + https://github.com/dotnet/dotnet - 3d2a4811a58d8ba08bc2162cced36034f98c6b5d + b26f93f4b148c0421d890fbaf35ad82ef17d0066 - + https://github.com/dotnet/dotnet - 3d2a4811a58d8ba08bc2162cced36034f98c6b5d + b26f93f4b148c0421d890fbaf35ad82ef17d0066 diff --git a/global.json b/global.json index 8711273dd0..11ba0a51e3 100644 --- a/global.json +++ b/global.json @@ -13,7 +13,7 @@ "dotnet": "11.0.100-rc.1.26425.128" }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "11.0.0-beta.26465.113", + "Microsoft.DotNet.Arcade.Sdk": "11.0.0-beta.26466.122", "Microsoft.Build.NoTargets": "3.7.0" } } From 9aad568fa4ef82c5ef8f3e9f82a0ac8db60ebb8a Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Thu, 17 Sep 2026 18:43:30 +0000 Subject: [PATCH 32/32] Update dependencies from build 332554 Updated Dependencies: Microsoft.DotNet.Arcade.Sdk (Version 11.0.0-beta.26466.122 -> 11.0.0-beta.26467.104) System.CommandLine (Version 3.0.0-rc.2.26466.122 -> 3.0.0-rc.2.26467.104) System.IO.Hashing, System.Security.Cryptography.Xml, System.Text.Json (Version 11.0.0-rc.2.26466.122 -> 11.0.0-rc.2.26467.104) [[ commit created by automation ]] --- eng/Version.Details.props | 10 +++++----- eng/Version.Details.xml | 22 +++++++++++----------- global.json | 2 +- 3 files changed, 17 insertions(+), 17 deletions(-) diff --git a/eng/Version.Details.props b/eng/Version.Details.props index 52b25cb834..0f2412d376 100644 --- a/eng/Version.Details.props +++ b/eng/Version.Details.props @@ -6,11 +6,11 @@ This file should be imported by eng/Versions.props - 11.0.0-beta.26466.122 - 3.0.0-rc.2.26466.122 - 11.0.0-rc.2.26466.122 - 11.0.0-rc.2.26466.122 - 11.0.0-rc.2.26466.122 + 11.0.0-beta.26467.104 + 3.0.0-rc.2.26467.104 + 11.0.0-rc.2.26467.104 + 11.0.0-rc.2.26467.104 + 11.0.0-rc.2.26467.104 diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 5d815f2bca..b160d2e485 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,28 +1,28 @@ - + - + https://github.com/dotnet/dotnet - b26f93f4b148c0421d890fbaf35ad82ef17d0066 + 4361ea30ba1845a072ae2d31a011ca867c0d2e0d - + https://github.com/dotnet/dotnet - b26f93f4b148c0421d890fbaf35ad82ef17d0066 + 4361ea30ba1845a072ae2d31a011ca867c0d2e0d - + https://github.com/dotnet/dotnet - b26f93f4b148c0421d890fbaf35ad82ef17d0066 + 4361ea30ba1845a072ae2d31a011ca867c0d2e0d - + https://github.com/dotnet/dotnet - b26f93f4b148c0421d890fbaf35ad82ef17d0066 + 4361ea30ba1845a072ae2d31a011ca867c0d2e0d - + https://github.com/dotnet/dotnet - b26f93f4b148c0421d890fbaf35ad82ef17d0066 + 4361ea30ba1845a072ae2d31a011ca867c0d2e0d diff --git a/global.json b/global.json index 11ba0a51e3..4cb975222e 100644 --- a/global.json +++ b/global.json @@ -13,7 +13,7 @@ "dotnet": "11.0.100-rc.1.26425.128" }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "11.0.0-beta.26466.122", + "Microsoft.DotNet.Arcade.Sdk": "11.0.0-beta.26467.104", "Microsoft.Build.NoTargets": "3.7.0" } }