From f92c996db91f86f55779237d311cf974c22ca6a4 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Tue, 11 Aug 2026 02:04:33 +0000 Subject: [PATCH 1/6] Update dependencies from https://github.com/dotnet/arcade build 20260810.1 On relative base path root Microsoft.DotNet.Arcade.Sdk , Microsoft.DotNet.CodeAnalysis , Microsoft.DotNet.RemoteExecutor From Version 10.0.0-beta.26406.9 -> To Version 10.0.0-beta.26410.1 --- eng/Version.Details.props | 6 +++--- eng/Version.Details.xml | 12 ++++++------ global.json | 2 +- 3 files changed, 10 insertions(+), 10 deletions(-) diff --git a/eng/Version.Details.props b/eng/Version.Details.props index 7ec3a5ef4e..7e80bdde04 100644 --- a/eng/Version.Details.props +++ b/eng/Version.Details.props @@ -8,9 +8,9 @@ This file should be imported by eng/Versions.props 1.0.105-preview.225 - 10.0.0-beta.26406.9 - 10.0.0-beta.26406.9 - 10.0.0-beta.26406.9 + 10.0.0-beta.26410.1 + 10.0.0-beta.26410.1 + 10.0.0-beta.26410.1 2.0.0-beta5.25210.1 diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 7056a85080..8d33a5180c 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -19,17 +19,17 @@ - + https://github.com/dotnet/arcade - af57946065838fca9b1745ab055d5a15a4783fba + f0580c1beaa25ecdb341ad8396df48acf433fbec - + https://github.com/dotnet/arcade - af57946065838fca9b1745ab055d5a15a4783fba + f0580c1beaa25ecdb341ad8396df48acf433fbec - + https://github.com/dotnet/arcade - af57946065838fca9b1745ab055d5a15a4783fba + f0580c1beaa25ecdb341ad8396df48acf433fbec diff --git a/global.json b/global.json index 98feb04c43..608a91b104 100644 --- a/global.json +++ b/global.json @@ -15,6 +15,6 @@ "msbuild-sdks": { "Microsoft.Build.NoTargets": "3.7.0", "Microsoft.Build.Traversal": "3.4.0", - "Microsoft.DotNet.Arcade.Sdk": "10.0.0-beta.26406.9" + "Microsoft.DotNet.Arcade.Sdk": "10.0.0-beta.26410.1" } } From 4db84be946fbf2584e4513e462b3e5b4c0f93c8e Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Wed, 12 Aug 2026 02:04:52 +0000 Subject: [PATCH 2/6] Update dependencies from https://github.com/dotnet/arcade build 20260811.3 On relative base path root Microsoft.DotNet.Arcade.Sdk , Microsoft.DotNet.CodeAnalysis , Microsoft.DotNet.RemoteExecutor From Version 10.0.0-beta.26406.9 -> To Version 10.0.0-beta.26411.3 --- eng/Version.Details.props | 6 +++--- eng/Version.Details.xml | 12 ++++++------ eng/common/Get-GitHubAppToken.ps1 | 18 ++++++++++++++---- global.json | 2 +- 4 files changed, 24 insertions(+), 14 deletions(-) diff --git a/eng/Version.Details.props b/eng/Version.Details.props index 7e80bdde04..a5dfb0dabf 100644 --- a/eng/Version.Details.props +++ b/eng/Version.Details.props @@ -8,9 +8,9 @@ This file should be imported by eng/Versions.props 1.0.105-preview.225 - 10.0.0-beta.26410.1 - 10.0.0-beta.26410.1 - 10.0.0-beta.26410.1 + 10.0.0-beta.26411.3 + 10.0.0-beta.26411.3 + 10.0.0-beta.26411.3 2.0.0-beta5.25210.1 diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 8d33a5180c..fed9ecf5e7 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -19,17 +19,17 @@ - + https://github.com/dotnet/arcade - f0580c1beaa25ecdb341ad8396df48acf433fbec + 6a3a6bdbe2195bb7420b24a3d76e1fd66d7bbc35 - + https://github.com/dotnet/arcade - f0580c1beaa25ecdb341ad8396df48acf433fbec + 6a3a6bdbe2195bb7420b24a3d76e1fd66d7bbc35 - + https://github.com/dotnet/arcade - f0580c1beaa25ecdb341ad8396df48acf433fbec + 6a3a6bdbe2195bb7420b24a3d76e1fd66d7bbc35 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/global.json b/global.json index 608a91b104..7859cd730b 100644 --- a/global.json +++ b/global.json @@ -15,6 +15,6 @@ "msbuild-sdks": { "Microsoft.Build.NoTargets": "3.7.0", "Microsoft.Build.Traversal": "3.4.0", - "Microsoft.DotNet.Arcade.Sdk": "10.0.0-beta.26410.1" + "Microsoft.DotNet.Arcade.Sdk": "10.0.0-beta.26411.3" } } From 27850ce367b9f68b1546c8d7c03d32964b0406ff Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Thu, 13 Aug 2026 02:03:10 +0000 Subject: [PATCH 3/6] Update dependencies from https://github.com/dotnet/arcade build 20260812.3 On relative base path root Microsoft.DotNet.Arcade.Sdk , Microsoft.DotNet.CodeAnalysis , Microsoft.DotNet.RemoteExecutor From Version 10.0.0-beta.26406.9 -> To Version 10.0.0-beta.26412.3 --- eng/Version.Details.props | 6 +++--- eng/Version.Details.xml | 12 ++++++------ eng/common/build.ps1 | 2 ++ eng/common/build.sh | 6 ++++++ eng/common/tools.ps1 | 8 ++++++++ eng/common/tools.sh | 10 +++++++++- global.json | 2 +- 7 files changed, 35 insertions(+), 11 deletions(-) diff --git a/eng/Version.Details.props b/eng/Version.Details.props index a5dfb0dabf..0e4f83dcd4 100644 --- a/eng/Version.Details.props +++ b/eng/Version.Details.props @@ -8,9 +8,9 @@ This file should be imported by eng/Versions.props 1.0.105-preview.225 - 10.0.0-beta.26411.3 - 10.0.0-beta.26411.3 - 10.0.0-beta.26411.3 + 10.0.0-beta.26412.3 + 10.0.0-beta.26412.3 + 10.0.0-beta.26412.3 2.0.0-beta5.25210.1 diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index fed9ecf5e7..a145483a18 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -19,17 +19,17 @@ - + https://github.com/dotnet/arcade - 6a3a6bdbe2195bb7420b24a3d76e1fd66d7bbc35 + cc913986bd49ba62a2606fe232f79cd5d5294f19 - + https://github.com/dotnet/arcade - 6a3a6bdbe2195bb7420b24a3d76e1fd66d7bbc35 + cc913986bd49ba62a2606fe232f79cd5d5294f19 - + https://github.com/dotnet/arcade - 6a3a6bdbe2195bb7420b24a3d76e1fd66d7bbc35 + cc913986bd49ba62a2606fe232f79cd5d5294f19 diff --git a/eng/common/build.ps1 b/eng/common/build.ps1 index 8cfee107e7..18397a60eb 100644 --- a/eng/common/build.ps1 +++ b/eng/common/build.ps1 @@ -6,6 +6,7 @@ Param( [string][Alias('v')]$verbosity = "minimal", [string] $msbuildEngine = $null, [bool] $warnAsError = $true, + [string] $warnNotAsError = '', [bool] $nodeReuse = $true, [switch] $buildCheck = $false, [switch][Alias('r')]$restore, @@ -70,6 +71,7 @@ function Print-Usage() { Write-Host " -excludeCIBinarylog Don't output binary log (short: -nobl)" Write-Host " -prepareMachine Prepare machine for CI run, clean up processes after build" Write-Host " -warnAsError Sets warnaserror msbuild parameter ('true' or 'false')" + Write-Host " -warnNotAsError Sets a semi-colon delimited list of warning codes that should not be treated as errors" Write-Host " -msbuildEngine Msbuild engine to use to run build ('dotnet', 'vs', or unspecified)." Write-Host " -excludePrereleaseVS Set to exclude build engines in prerelease versions of Visual Studio" Write-Host " -nativeToolsOnMachine Sets the native tools on machine environment variable (indicating that the script should use native tools on machine)" diff --git a/eng/common/build.sh b/eng/common/build.sh index 9767bb411a..c8bea7cbc2 100755 --- a/eng/common/build.sh +++ b/eng/common/build.sh @@ -42,6 +42,7 @@ usage() echo " --prepareMachine Prepare machine for CI run, clean up processes after build" echo " --nodeReuse Sets nodereuse msbuild parameter ('true' or 'false')" echo " --warnAsError Sets warnaserror msbuild parameter ('true' or 'false')" + echo " --warnNotAsError Sets a semi-colon delimited list of warning codes that should not be treated as errors" echo " --buildCheck Sets /check msbuild parameter" echo " --fromVMR Set when building from within the VMR" echo "" @@ -78,6 +79,7 @@ ci=false clean=false warn_as_error=true +warn_not_as_error='' node_reuse=true build_check=false binary_log=false @@ -176,6 +178,10 @@ while [[ $# > 0 ]]; do warn_as_error=$2 shift ;; + -warnnotaserror) + warn_not_as_error=$2 + shift + ;; -nodereuse) node_reuse=$2 shift diff --git a/eng/common/tools.ps1 b/eng/common/tools.ps1 index c6a1d6eaec..bde220ad85 100644 --- a/eng/common/tools.ps1 +++ b/eng/common/tools.ps1 @@ -34,6 +34,9 @@ # Configures warning treatment in msbuild. [bool]$warnAsError = if (Test-Path variable:warnAsError) { $warnAsError } else { $true } +# Specifies semi-colon delimited list of warning codes that should not be treated as errors. +[string]$warnNotAsError = if (Test-Path variable:warnNotAsError) { $warnNotAsError } else { '' } + # Specifies which msbuild engine to use for build: 'vs', 'dotnet' or unspecified (determined based on presence of tools.vs in global.json). [string]$msbuildEngine = if (Test-Path variable:msbuildEngine) { $msbuildEngine } else { $null } @@ -836,6 +839,11 @@ function MSBuild-Core() { $cmdArgs += ' /p:TreatWarningsAsErrors=false' } + if ($warnAsError -and $warnNotAsError) { + $escapedWarnNotAsError = $warnNotAsError -replace ';', '%3B' + $cmdArgs += " /warnnotaserror:$warnNotAsError /p:AdditionalWarningsNotAsErrors=$escapedWarnNotAsError" + } + foreach ($arg in $args) { if ($null -ne $arg -and $arg.Trim() -ne "") { if ($arg.EndsWith('\')) { diff --git a/eng/common/tools.sh b/eng/common/tools.sh index 62aeb73fe5..df76f062a7 100755 --- a/eng/common/tools.sh +++ b/eng/common/tools.sh @@ -52,6 +52,9 @@ fi # Configures warning treatment in msbuild. warn_as_error=${warn_as_error:-true} +# Specifies semi-colon delimited list of warning codes that should not be treated as errors. +warn_not_as_error=${warn_not_as_error:-''} + # True to attempt using .NET Core already that meets requirements specified in global.json # installed on the machine instead of downloading one. use_installed_dotnet_cli=${use_installed_dotnet_cli:-true} @@ -532,7 +535,12 @@ function MSBuild-Core { mt_switch="-mt" fi - RunBuildTool "$_InitializeBuildToolCommand" /m /nologo /clp:Summary /v:$verbosity /nr:$node_reuse $warnaserror_switch $mt_switch /p:TreatWarningsAsErrors=$warn_as_error /p:ContinuousIntegrationBuild=$ci "$@" + local warnnotaserror_switch="" + if [[ -n "$warn_not_as_error" && "$warn_as_error" == true ]]; then + warnnotaserror_switch="/warnnotaserror:$warn_not_as_error /p:AdditionalWarningsNotAsErrors=${warn_not_as_error//;/%3B}" + fi + + RunBuildTool "$_InitializeBuildToolCommand" /m /nologo /clp:Summary /v:$verbosity /nr:$node_reuse $warnaserror_switch $mt_switch $warnnotaserror_switch /p:TreatWarningsAsErrors=$warn_as_error /p:ContinuousIntegrationBuild=$ci "$@" } function GetDarc { diff --git a/global.json b/global.json index 7859cd730b..1aac15d5ff 100644 --- a/global.json +++ b/global.json @@ -15,6 +15,6 @@ "msbuild-sdks": { "Microsoft.Build.NoTargets": "3.7.0", "Microsoft.Build.Traversal": "3.4.0", - "Microsoft.DotNet.Arcade.Sdk": "10.0.0-beta.26411.3" + "Microsoft.DotNet.Arcade.Sdk": "10.0.0-beta.26412.3" } } From 0069ef7ea09c064c2571f7574b733bf6658e0297 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Fri, 14 Aug 2026 02:02:39 +0000 Subject: [PATCH 4/6] Update dependencies from https://github.com/dotnet/arcade build 20260813.3 On relative base path root Microsoft.DotNet.Arcade.Sdk , Microsoft.DotNet.CodeAnalysis , Microsoft.DotNet.RemoteExecutor From Version 10.0.0-beta.26406.9 -> To Version 10.0.0-beta.26413.3 --- eng/Version.Details.props | 6 +++--- eng/Version.Details.xml | 12 ++++++------ global.json | 6 +++--- 3 files changed, 12 insertions(+), 12 deletions(-) diff --git a/eng/Version.Details.props b/eng/Version.Details.props index 0e4f83dcd4..1f12d1c2ff 100644 --- a/eng/Version.Details.props +++ b/eng/Version.Details.props @@ -8,9 +8,9 @@ This file should be imported by eng/Versions.props 1.0.105-preview.225 - 10.0.0-beta.26412.3 - 10.0.0-beta.26412.3 - 10.0.0-beta.26412.3 + 10.0.0-beta.26413.3 + 10.0.0-beta.26413.3 + 10.0.0-beta.26413.3 2.0.0-beta5.25210.1 diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index a145483a18..a952928e37 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -19,17 +19,17 @@ - + https://github.com/dotnet/arcade - cc913986bd49ba62a2606fe232f79cd5d5294f19 + 774a363a5c4a34b2795ff0814b0d508a9e94c60f - + https://github.com/dotnet/arcade - cc913986bd49ba62a2606fe232f79cd5d5294f19 + 774a363a5c4a34b2795ff0814b0d508a9e94c60f - + https://github.com/dotnet/arcade - cc913986bd49ba62a2606fe232f79cd5d5294f19 + 774a363a5c4a34b2795ff0814b0d508a9e94c60f diff --git a/global.json b/global.json index 1aac15d5ff..8189e86cc2 100644 --- a/global.json +++ b/global.json @@ -1,11 +1,11 @@ { "sdk": { - "version": "10.0.110", + "version": "10.0.111", "allowPrerelease": true, "rollForward": "major" }, "tools": { - "dotnet": "10.0.110", + "dotnet": "10.0.111", "runtimes": { "dotnet/x86": [ "$(MicrosoftNETCoreApp100Version)" @@ -15,6 +15,6 @@ "msbuild-sdks": { "Microsoft.Build.NoTargets": "3.7.0", "Microsoft.Build.Traversal": "3.4.0", - "Microsoft.DotNet.Arcade.Sdk": "10.0.0-beta.26412.3" + "Microsoft.DotNet.Arcade.Sdk": "10.0.0-beta.26413.3" } } From 18887a9a16f50599299c5d403cfe9c5e6998eff9 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Sat, 15 Aug 2026 02:02:06 +0000 Subject: [PATCH 5/6] Update dependencies from https://github.com/dotnet/arcade build 20260814.3 On relative base path root Microsoft.DotNet.Arcade.Sdk , Microsoft.DotNet.CodeAnalysis , Microsoft.DotNet.RemoteExecutor From Version 10.0.0-beta.26406.9 -> To Version 10.0.0-beta.26414.3 --- eng/Version.Details.props | 6 +++--- eng/Version.Details.xml | 12 ++++++------ global.json | 2 +- 3 files changed, 10 insertions(+), 10 deletions(-) diff --git a/eng/Version.Details.props b/eng/Version.Details.props index 1f12d1c2ff..32d54c704e 100644 --- a/eng/Version.Details.props +++ b/eng/Version.Details.props @@ -8,9 +8,9 @@ This file should be imported by eng/Versions.props 1.0.105-preview.225 - 10.0.0-beta.26413.3 - 10.0.0-beta.26413.3 - 10.0.0-beta.26413.3 + 10.0.0-beta.26414.3 + 10.0.0-beta.26414.3 + 10.0.0-beta.26414.3 2.0.0-beta5.25210.1 diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index a952928e37..253dea55e3 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -19,17 +19,17 @@ - + https://github.com/dotnet/arcade - 774a363a5c4a34b2795ff0814b0d508a9e94c60f + caa49f7726ab75f513f2fb814030657cf1afc0e4 - + https://github.com/dotnet/arcade - 774a363a5c4a34b2795ff0814b0d508a9e94c60f + caa49f7726ab75f513f2fb814030657cf1afc0e4 - + https://github.com/dotnet/arcade - 774a363a5c4a34b2795ff0814b0d508a9e94c60f + caa49f7726ab75f513f2fb814030657cf1afc0e4 diff --git a/global.json b/global.json index 8189e86cc2..c2f97acec1 100644 --- a/global.json +++ b/global.json @@ -15,6 +15,6 @@ "msbuild-sdks": { "Microsoft.Build.NoTargets": "3.7.0", "Microsoft.Build.Traversal": "3.4.0", - "Microsoft.DotNet.Arcade.Sdk": "10.0.0-beta.26413.3" + "Microsoft.DotNet.Arcade.Sdk": "10.0.0-beta.26414.3" } } From 23568b2b324435a302ef938db2583c565af1ed4b Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Wed, 19 Aug 2026 02:04:20 +0000 Subject: [PATCH 6/6] Update dependencies from https://github.com/dotnet/arcade build 20260818.1 On relative base path root Microsoft.DotNet.Arcade.Sdk , Microsoft.DotNet.CodeAnalysis , Microsoft.DotNet.RemoteExecutor From Version 10.0.0-beta.26406.9 -> To Version 10.0.0-beta.26418.1 --- eng/Version.Details.props | 6 +++--- eng/Version.Details.xml | 12 ++++++------ global.json | 2 +- 3 files changed, 10 insertions(+), 10 deletions(-) diff --git a/eng/Version.Details.props b/eng/Version.Details.props index 32d54c704e..da7b7912dc 100644 --- a/eng/Version.Details.props +++ b/eng/Version.Details.props @@ -8,9 +8,9 @@ This file should be imported by eng/Versions.props 1.0.105-preview.225 - 10.0.0-beta.26414.3 - 10.0.0-beta.26414.3 - 10.0.0-beta.26414.3 + 10.0.0-beta.26418.1 + 10.0.0-beta.26418.1 + 10.0.0-beta.26418.1 2.0.0-beta5.25210.1 diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 253dea55e3..5f16d95cb7 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -19,17 +19,17 @@ - + https://github.com/dotnet/arcade - caa49f7726ab75f513f2fb814030657cf1afc0e4 + 3a42a582cd5a4df28c12ae662d7f32b89ec1ba91 - + https://github.com/dotnet/arcade - caa49f7726ab75f513f2fb814030657cf1afc0e4 + 3a42a582cd5a4df28c12ae662d7f32b89ec1ba91 - + https://github.com/dotnet/arcade - caa49f7726ab75f513f2fb814030657cf1afc0e4 + 3a42a582cd5a4df28c12ae662d7f32b89ec1ba91 diff --git a/global.json b/global.json index c2f97acec1..257bf00aae 100644 --- a/global.json +++ b/global.json @@ -15,6 +15,6 @@ "msbuild-sdks": { "Microsoft.Build.NoTargets": "3.7.0", "Microsoft.Build.Traversal": "3.4.0", - "Microsoft.DotNet.Arcade.Sdk": "10.0.0-beta.26414.3" + "Microsoft.DotNet.Arcade.Sdk": "10.0.0-beta.26418.1" } }