From c30e414dfe3b8c0e00c354f78cbcf8528bc0bd65 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Thu, 6 Nov 2025 20:10:12 +0000 Subject: [PATCH 01/39] Update dependencies from https://github.com/dotnet/dotnet build 20251106.5 On relative base path root Microsoft.DotNet.Arcade.Sdk , Microsoft.DotNet.Helix.Sdk From Version 11.0.0-beta.25555.107 -> To Version 11.0.0-beta.25556.105 Microsoft.Extensions.Logging , Microsoft.NET.ILLink , Microsoft.NET.ILLink.Tasks , Microsoft.NET.Runtime.Emscripten.3.1.56.Node.win-x64 , Microsoft.NETCore.App.Ref , Microsoft.WindowsDesktop.App.Ref , System.Threading.Channels From Version 10.0.0-rc.1.25555.107 -> To Version 10.0.0-rc.1.25556.105 Microsoft.NET.Sdk From Version 10.0.100-rc.2.25555.107 -> To Version 10.0.100-rc.2.25556.105 --- eng/Version.Details.xml | 40 +++++++++---------- eng/Versions.props | 10 ++--- .../steps/install-microbuild.yml | 15 +++---- global.json | 4 +- 4 files changed, 35 insertions(+), 34 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index fac3805e54a..8b3edf50aec 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,39 +1,39 @@ - + https://github.com/dotnet/dotnet - 994d9ebe9f3f4216d7b125738cf5c19adaf674d3 + 49d9841a4ab60189eef934f8736c2752f75f8e8d - + https://github.com/dotnet/dotnet - 994d9ebe9f3f4216d7b125738cf5c19adaf674d3 + 49d9841a4ab60189eef934f8736c2752f75f8e8d - + https://github.com/dotnet/dotnet - 994d9ebe9f3f4216d7b125738cf5c19adaf674d3 + 49d9841a4ab60189eef934f8736c2752f75f8e8d - + https://github.com/dotnet/dotnet - 994d9ebe9f3f4216d7b125738cf5c19adaf674d3 + 49d9841a4ab60189eef934f8736c2752f75f8e8d - + https://github.com/dotnet/dotnet - 994d9ebe9f3f4216d7b125738cf5c19adaf674d3 + 49d9841a4ab60189eef934f8736c2752f75f8e8d - + https://github.com/dotnet/dotnet - 994d9ebe9f3f4216d7b125738cf5c19adaf674d3 + 49d9841a4ab60189eef934f8736c2752f75f8e8d - + https://github.com/dotnet/dotnet - 994d9ebe9f3f4216d7b125738cf5c19adaf674d3 + 49d9841a4ab60189eef934f8736c2752f75f8e8d - + https://github.com/dotnet/dotnet - 994d9ebe9f3f4216d7b125738cf5c19adaf674d3 + 49d9841a4ab60189eef934f8736c2752f75f8e8d https://github.com/dotnet/xharness @@ -55,12 +55,12 @@ 88c2c7ae772437921d85186318dd4320c4848618 https://github.com/dotnet/maui - - 994d9ebe9f3f4216d7b125738cf5c19adaf674d3 + + 49d9841a4ab60189eef934f8736c2752f75f8e8d https://github.com/dotnet/dotnet - - 994d9ebe9f3f4216d7b125738cf5c19adaf674d3 + + 49d9841a4ab60189eef934f8736c2752f75f8e8d https://github.com/dotnet/dotnet diff --git a/eng/Versions.props b/eng/Versions.props index a17ea75eefb..b4df3adcf57 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -7,12 +7,12 @@ - 10.0.0-rc.1.25555.107 - 10.0.0-rc.1.25555.107 - 10.0.0-rc.1.25555.107 - 10.0.0-rc.1.25555.107 + 10.0.0-rc.1.25556.105 + 10.0.0-rc.1.25556.105 + 10.0.0-rc.1.25556.105 + 10.0.0-rc.1.25556.105 0.14.1-nightly.20250107.205 - 10.0.0-rc.1.25555.107 + 10.0.0-rc.1.25556.105 10.0.0-prerelease.25475.1 diff --git a/eng/common/core-templates/steps/install-microbuild.yml b/eng/common/core-templates/steps/install-microbuild.yml index 3d42d9a5661..bdebec0eaa9 100644 --- a/eng/common/core-templates/steps/install-microbuild.yml +++ b/eng/common/core-templates/steps/install-microbuild.yml @@ -13,6 +13,9 @@ parameters: # Unfortunately, _SignType can't be used to exclude the use of the service connection in non-real sign scenarios. The # variable is not available in template expression. _SignType has a very large proliferation across .NET, so replacing it is tough. microbuildUseESRP: true + # Location of the MicroBuild output folder + # NOTE: There's something that relies on this being in the "default" source directory for tasks such as Signing to work properly. + microBuildOutputFolder: '$(Build.SourcesDirectory)' # Microbuild version microbuildPluginVersion: 'latest' @@ -21,16 +24,14 @@ parameters: steps: - ${{ if eq(parameters.enableMicrobuild, 'true') }}: - ${{ if eq(parameters.enableMicrobuildForMacAndLinux, 'true') }}: - # Installing .NET 8 is required to use the MicroBuild signing plugin on non-Windows platforms + # Needed to download the MicroBuild plugin nupkgs on Mac and Linux when nuget.exe is unavailable - task: UseDotNet@2 displayName: Install .NET 8.0 SDK for MicroBuild Plugin inputs: packageType: sdk version: 8.0.x - # Installing the SDK in a '.dotnet-microbuild' directory is required for signing. - # See target FindDotNetPathForMicroBuild in arcade/src/Microsoft.DotNet.Arcade.Sdk/tools/Sign.proj - # Do not remove '.dotnet-microbuild' from the path without changing the corresponding logic. - installationPath: $(Agent.TempDirectory)/.dotnet-microbuild + installationPath: ${{ parameters.microBuildOutputFolder }}/.dotnet + workingDirectory: ${{ parameters.microBuildOutputFolder }} condition: and(succeeded(), ne(variables['Agent.Os'], 'Windows_NT')) - script: | @@ -70,7 +71,7 @@ steps: ConnectedPMEServiceName: 248d384a-b39b-46e3-8ad5-c2c210d5e7ca microbuildEnv: TeamName: $(_TeamName) - MicroBuildOutputFolderOverride: $(Agent.TempDirectory)/MicroBuild + MicroBuildOutputFolderOverride: ${{ parameters.microBuildOutputFolder }} SYSTEM_ACCESSTOKEN: $(System.AccessToken) continueOnError: ${{ parameters.continueOnError }} condition: and(succeeded(), eq(variables['Agent.Os'], 'Windows_NT'), in(variables['_SignType'], 'real', 'test')) @@ -92,7 +93,7 @@ steps: ConnectedPMEServiceName: c24de2a5-cc7a-493d-95e4-8e5ff5cad2bc microbuildEnv: TeamName: $(_TeamName) - MicroBuildOutputFolderOverride: $(Agent.TempDirectory)/MicroBuild + MicroBuildOutputFolderOverride: ${{ parameters.microBuildOutputFolder }} SYSTEM_ACCESSTOKEN: $(System.AccessToken) continueOnError: ${{ parameters.continueOnError }} condition: and(succeeded(), ne(variables['Agent.Os'], 'Windows_NT'), eq(variables['_SignType'], 'real')) diff --git a/global.json b/global.json index 968bdbe1c5c..6f04b7e1fa2 100644 --- a/global.json +++ b/global.json @@ -8,8 +8,8 @@ "dotnet": "10.0.100-rc.2.25502.107" }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "11.0.0-beta.25555.107", - "Microsoft.DotNet.Helix.Sdk": "11.0.0-beta.25555.107" + "Microsoft.DotNet.Arcade.Sdk": "11.0.0-beta.25556.105", + "Microsoft.DotNet.Helix.Sdk": "11.0.0-beta.25556.105" }, "native-tools": { "python3": "3.7.1" From 9f6907e3ddd037937489c4ceebdaa2e495a8e97e Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Fri, 7 Nov 2025 01:04:49 +0000 Subject: [PATCH 02/39] Update dependencies from https://github.com/dotnet/dotnet build 20251106.11 On relative base path root Microsoft.DotNet.Arcade.Sdk , Microsoft.DotNet.Helix.Sdk From Version 11.0.0-beta.25555.107 -> To Version 11.0.0-beta.25556.111 Microsoft.Extensions.Logging , Microsoft.NET.ILLink , Microsoft.NET.ILLink.Tasks , Microsoft.NET.Runtime.Emscripten.3.1.56.Node.win-x64 , Microsoft.NETCore.App.Ref , Microsoft.WindowsDesktop.App.Ref , System.Threading.Channels From Version 10.0.0-rc.1.25555.107 -> To Version 10.0.0-rc.3.25556.111 Microsoft.NET.Sdk From Version 10.0.100-rc.2.25555.107 -> To Version 10.0.100-rc.3.25556.111 --- eng/Version.Details.xml | 40 ++++++++++++++++++++-------------------- eng/Versions.props | 10 +++++----- global.json | 4 ++-- 3 files changed, 27 insertions(+), 27 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 8b3edf50aec..66849a2c9e2 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,39 +1,39 @@ - + https://github.com/dotnet/dotnet - 49d9841a4ab60189eef934f8736c2752f75f8e8d + 77ee357638bcd8fa66a1c16fa588dcd5818068d2 - + https://github.com/dotnet/dotnet - 49d9841a4ab60189eef934f8736c2752f75f8e8d + 77ee357638bcd8fa66a1c16fa588dcd5818068d2 - + https://github.com/dotnet/dotnet - 49d9841a4ab60189eef934f8736c2752f75f8e8d + 77ee357638bcd8fa66a1c16fa588dcd5818068d2 - + https://github.com/dotnet/dotnet - 49d9841a4ab60189eef934f8736c2752f75f8e8d + 77ee357638bcd8fa66a1c16fa588dcd5818068d2 - + https://github.com/dotnet/dotnet - 49d9841a4ab60189eef934f8736c2752f75f8e8d + 77ee357638bcd8fa66a1c16fa588dcd5818068d2 - + https://github.com/dotnet/dotnet - 49d9841a4ab60189eef934f8736c2752f75f8e8d + 77ee357638bcd8fa66a1c16fa588dcd5818068d2 - + https://github.com/dotnet/dotnet - 49d9841a4ab60189eef934f8736c2752f75f8e8d + 77ee357638bcd8fa66a1c16fa588dcd5818068d2 - + https://github.com/dotnet/dotnet - 49d9841a4ab60189eef934f8736c2752f75f8e8d + 77ee357638bcd8fa66a1c16fa588dcd5818068d2 https://github.com/dotnet/xharness @@ -55,12 +55,12 @@ 88c2c7ae772437921d85186318dd4320c4848618 https://github.com/dotnet/maui - - 49d9841a4ab60189eef934f8736c2752f75f8e8d + + 77ee357638bcd8fa66a1c16fa588dcd5818068d2 https://github.com/dotnet/dotnet - - 49d9841a4ab60189eef934f8736c2752f75f8e8d + + 77ee357638bcd8fa66a1c16fa588dcd5818068d2 https://github.com/dotnet/dotnet diff --git a/eng/Versions.props b/eng/Versions.props index b4df3adcf57..4fe98a8e5d4 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -7,12 +7,12 @@ - 10.0.0-rc.1.25556.105 - 10.0.0-rc.1.25556.105 - 10.0.0-rc.1.25556.105 - 10.0.0-rc.1.25556.105 + 10.0.0-rc.3.25556.111 + 10.0.0-rc.3.25556.111 + 10.0.0-rc.3.25556.111 + 10.0.0-rc.3.25556.111 0.14.1-nightly.20250107.205 - 10.0.0-rc.1.25556.105 + 10.0.0-rc.3.25556.111 10.0.0-prerelease.25475.1 diff --git a/global.json b/global.json index 6f04b7e1fa2..b916b6c08a7 100644 --- a/global.json +++ b/global.json @@ -8,8 +8,8 @@ "dotnet": "10.0.100-rc.2.25502.107" }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "11.0.0-beta.25556.105", - "Microsoft.DotNet.Helix.Sdk": "11.0.0-beta.25556.105" + "Microsoft.DotNet.Arcade.Sdk": "11.0.0-beta.25556.111", + "Microsoft.DotNet.Helix.Sdk": "11.0.0-beta.25556.111" }, "native-tools": { "python3": "3.7.1" From 1d7d6d602dcc171af2f51e9e0d1cc8bffcc56844 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Tue, 11 Nov 2025 03:34:23 +0000 Subject: [PATCH 03/39] Update dependencies from https://github.com/dotnet/dotnet build 20251110.7 On relative base path root Microsoft.DotNet.Arcade.Sdk , Microsoft.DotNet.Helix.Sdk From Version 11.0.0-beta.25555.107 -> To Version 11.0.0-beta.25560.107 Microsoft.Extensions.Logging , Microsoft.NET.ILLink , Microsoft.NET.ILLink.Tasks , Microsoft.NET.Runtime.Emscripten.3.1.56.Node.win-x64 , Microsoft.NETCore.App.Ref , Microsoft.WindowsDesktop.App.Ref , System.Threading.Channels From Version 10.0.0-rc.1.25555.107 -> To Version 10.0.0-rc.3.25560.107 Microsoft.NET.Sdk From Version 10.0.100-rc.2.25555.107 -> To Version 10.0.100-rc.3.25560.107 --- eng/Version.Details.xml | 40 +++++++++---------- eng/Versions.props | 10 ++--- eng/common/build.cmd | 3 ++ .../job/publish-build-assets.yml | 6 +-- .../core-templates/post-build/post-build.yml | 2 +- .../core-templates/steps/publish-logs.yml | 4 +- .../steps/source-index-stage1-publish.yml | 4 +- eng/common/cross/arm/tizen/tizen.patch | 9 +++++ eng/common/cross/arm64/tizen/tizen.patch | 9 +++++ eng/common/cross/x64/tizen/tizen.patch | 9 +++++ eng/common/cross/x86/tizen/tizen.patch | 9 +++++ eng/common/dotnet.cmd | 7 ++++ eng/common/native/install-dependencies.sh | 2 +- global.json | 4 +- 14 files changed, 82 insertions(+), 36 deletions(-) create mode 100644 eng/common/build.cmd create mode 100644 eng/common/cross/arm/tizen/tizen.patch create mode 100644 eng/common/cross/arm64/tizen/tizen.patch create mode 100644 eng/common/cross/x64/tizen/tizen.patch create mode 100644 eng/common/cross/x86/tizen/tizen.patch create mode 100644 eng/common/dotnet.cmd diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 66849a2c9e2..7330f0fcc6f 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,39 +1,39 @@ - + https://github.com/dotnet/dotnet - 77ee357638bcd8fa66a1c16fa588dcd5818068d2 + 899e5c7257f561d6733139c5f36ba2ff15e83a65 - + https://github.com/dotnet/dotnet - 77ee357638bcd8fa66a1c16fa588dcd5818068d2 + 899e5c7257f561d6733139c5f36ba2ff15e83a65 - + https://github.com/dotnet/dotnet - 77ee357638bcd8fa66a1c16fa588dcd5818068d2 + 899e5c7257f561d6733139c5f36ba2ff15e83a65 - + https://github.com/dotnet/dotnet - 77ee357638bcd8fa66a1c16fa588dcd5818068d2 + 899e5c7257f561d6733139c5f36ba2ff15e83a65 - + https://github.com/dotnet/dotnet - 77ee357638bcd8fa66a1c16fa588dcd5818068d2 + 899e5c7257f561d6733139c5f36ba2ff15e83a65 - + https://github.com/dotnet/dotnet - 77ee357638bcd8fa66a1c16fa588dcd5818068d2 + 899e5c7257f561d6733139c5f36ba2ff15e83a65 - + https://github.com/dotnet/dotnet - 77ee357638bcd8fa66a1c16fa588dcd5818068d2 + 899e5c7257f561d6733139c5f36ba2ff15e83a65 - + https://github.com/dotnet/dotnet - 77ee357638bcd8fa66a1c16fa588dcd5818068d2 + 899e5c7257f561d6733139c5f36ba2ff15e83a65 https://github.com/dotnet/xharness @@ -55,12 +55,12 @@ 88c2c7ae772437921d85186318dd4320c4848618 https://github.com/dotnet/maui - - 77ee357638bcd8fa66a1c16fa588dcd5818068d2 + + 899e5c7257f561d6733139c5f36ba2ff15e83a65 https://github.com/dotnet/dotnet - - 77ee357638bcd8fa66a1c16fa588dcd5818068d2 + + 899e5c7257f561d6733139c5f36ba2ff15e83a65 https://github.com/dotnet/dotnet diff --git a/eng/Versions.props b/eng/Versions.props index 4fe98a8e5d4..9fe3d6f97ca 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -7,12 +7,12 @@ - 10.0.0-rc.3.25556.111 - 10.0.0-rc.3.25556.111 - 10.0.0-rc.3.25556.111 - 10.0.0-rc.3.25556.111 + 10.0.0-rc.3.25560.107 + 10.0.0-rc.3.25560.107 + 10.0.0-rc.3.25560.107 + 10.0.0-rc.3.25560.107 0.14.1-nightly.20250107.205 - 10.0.0-rc.3.25556.111 + 10.0.0-rc.3.25560.107 10.0.0-prerelease.25475.1 diff --git a/eng/common/build.cmd b/eng/common/build.cmd new file mode 100644 index 00000000000..99daf368aba --- /dev/null +++ b/eng/common/build.cmd @@ -0,0 +1,3 @@ +@echo off +powershell -ExecutionPolicy ByPass -NoProfile -command "& """%~dp0build.ps1""" %*" +exit /b %ErrorLevel% diff --git a/eng/common/core-templates/job/publish-build-assets.yml b/eng/common/core-templates/job/publish-build-assets.yml index 4d282377c18..4a417e003c7 100644 --- a/eng/common/core-templates/job/publish-build-assets.yml +++ b/eng/common/core-templates/job/publish-build-assets.yml @@ -140,7 +140,7 @@ jobs: /p:MaestroApiEndpoint=https://maestro.dot.net /p:OfficialBuildId=$(OfficialBuildId) -runtimeSourceFeed https://ci.dot.net/internal - -runtimeSourceFeedKey $(dotnetbuilds-internal-container-read-token-base64) + -runtimeSourceFeedKey '$(dotnetbuilds-internal-container-read-token-base64)' condition: ${{ parameters.condition }} continueOnError: ${{ parameters.continueOnError }} @@ -210,8 +210,8 @@ jobs: -ArtifactsPublishingAdditionalParameters '${{ parameters.artifactsPublishingAdditionalParameters }}' -SymbolPublishingAdditionalParameters '${{ parameters.symbolPublishingAdditionalParameters }}' -SkipAssetsPublishing '${{ parameters.isAssetlessBuild }}' - -runtimeSourceFeed https://ci.dot.net/internal - -runtimeSourceFeedKey $(dotnetbuilds-internal-container-read-token-base64) + -runtimeSourceFeed https://ci.dot.net/internal + -runtimeSourceFeedKey '$(dotnetbuilds-internal-container-read-token-base64)' - ${{ if eq(parameters.enablePublishBuildArtifacts, 'true') }}: - template: /eng/common/core-templates/steps/publish-logs.yml diff --git a/eng/common/core-templates/post-build/post-build.yml b/eng/common/core-templates/post-build/post-build.yml index 0af41fe5f9f..27763a825b9 100644 --- a/eng/common/core-templates/post-build/post-build.yml +++ b/eng/common/core-templates/post-build/post-build.yml @@ -334,4 +334,4 @@ stages: -SymbolPublishingAdditionalParameters '${{ parameters.symbolPublishingAdditionalParameters }}' -SkipAssetsPublishing '${{ parameters.isAssetlessBuild }}' -runtimeSourceFeed https://ci.dot.net/internal - -runtimeSourceFeedKey $(dotnetbuilds-internal-container-read-token-base64) + -runtimeSourceFeedKey '$(dotnetbuilds-internal-container-read-token-base64)' diff --git a/eng/common/core-templates/steps/publish-logs.yml b/eng/common/core-templates/steps/publish-logs.yml index 0664c343b2a..5a927b4c7bc 100644 --- a/eng/common/core-templates/steps/publish-logs.yml +++ b/eng/common/core-templates/steps/publish-logs.yml @@ -26,10 +26,10 @@ steps: # 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}} + -BinlogToolVersion '${{parameters.BinlogToolVersion}}' -TokensFilePath '$(System.DefaultWorkingDirectory)/eng/BinlogSecretsRedactionFile.txt' -runtimeSourceFeed https://ci.dot.net/internal - -runtimeSourceFeedKey $(dotnetbuilds-internal-container-read-token-base64) + -runtimeSourceFeedKey '$(dotnetbuilds-internal-container-read-token-base64)' '$(publishing-dnceng-devdiv-code-r-build-re)' '$(MaestroAccessToken)' '$(dn-bot-all-orgs-artifact-feeds-rw)' diff --git a/eng/common/core-templates/steps/source-index-stage1-publish.yml b/eng/common/core-templates/steps/source-index-stage1-publish.yml index eff4573c6e5..ac019e2d033 100644 --- a/eng/common/core-templates/steps/source-index-stage1-publish.yml +++ b/eng/common/core-templates/steps/source-index-stage1-publish.yml @@ -14,8 +14,8 @@ steps: workingDirectory: $(Agent.TempDirectory) - script: | - $(Agent.TempDirectory)/dotnet/dotnet tool install BinLogToSln --version ${{parameters.sourceIndexProcessBinlogPackageVersion}} --add-source ${{parameters.SourceIndexPackageSource}} --tool-path $(Agent.TempDirectory)/.source-index/tools - $(Agent.TempDirectory)/dotnet/dotnet tool install UploadIndexStage1 --version ${{parameters.sourceIndexUploadPackageVersion}} --add-source ${{parameters.SourceIndexPackageSource}} --tool-path $(Agent.TempDirectory)/.source-index/tools + $(Agent.TempDirectory)/dotnet/dotnet tool install BinLogToSln --version ${{parameters.sourceIndexProcessBinlogPackageVersion}} --source ${{parameters.SourceIndexPackageSource}} --tool-path $(Agent.TempDirectory)/.source-index/tools + $(Agent.TempDirectory)/dotnet/dotnet tool install UploadIndexStage1 --version ${{parameters.sourceIndexUploadPackageVersion}} --source ${{parameters.SourceIndexPackageSource}} --tool-path $(Agent.TempDirectory)/.source-index/tools displayName: "Source Index: Download netsourceindex Tools" # Set working directory to temp directory so 'dotnet' doesn't try to use global.json and use the repo's sdk. workingDirectory: $(Agent.TempDirectory) diff --git a/eng/common/cross/arm/tizen/tizen.patch b/eng/common/cross/arm/tizen/tizen.patch new file mode 100644 index 00000000000..fb12ade7250 --- /dev/null +++ b/eng/common/cross/arm/tizen/tizen.patch @@ -0,0 +1,9 @@ +diff -u -r a/usr/lib/libc.so b/usr/lib/libc.so +--- a/usr/lib/libc.so 2016-12-30 23:00:08.284951863 +0900 ++++ b/usr/lib/libc.so 2016-12-30 23:00:32.140951815 +0900 +@@ -2,4 +2,4 @@ + Use the shared library, but some functions are only in + the static library, so try that secondarily. */ + OUTPUT_FORMAT(elf32-littlearm) +-GROUP ( /lib/libc.so.6 /usr/lib/libc_nonshared.a AS_NEEDED ( /lib/ld-linux-armhf.so.3 ) ) ++GROUP ( libc.so.6 libc_nonshared.a AS_NEEDED ( ld-linux-armhf.so.3 ) ) diff --git a/eng/common/cross/arm64/tizen/tizen.patch b/eng/common/cross/arm64/tizen/tizen.patch new file mode 100644 index 00000000000..2cebc547382 --- /dev/null +++ b/eng/common/cross/arm64/tizen/tizen.patch @@ -0,0 +1,9 @@ +diff -u -r a/usr/lib/libc.so b/usr/lib/libc.so +--- a/usr/lib64/libc.so 2016-12-30 23:00:08.284951863 +0900 ++++ b/usr/lib64/libc.so 2016-12-30 23:00:32.140951815 +0900 +@@ -2,4 +2,4 @@ + Use the shared library, but some functions are only in + the static library, so try that secondarily. */ + OUTPUT_FORMAT(elf64-littleaarch64) +-GROUP ( /lib64/libc.so.6 /usr/lib64/libc_nonshared.a AS_NEEDED ( /lib64/ld-linux-aarch64.so.1 ) ) ++GROUP ( libc.so.6 libc_nonshared.a AS_NEEDED ( ld-linux-aarch64.so.1 ) ) diff --git a/eng/common/cross/x64/tizen/tizen.patch b/eng/common/cross/x64/tizen/tizen.patch new file mode 100644 index 00000000000..56fbc881095 --- /dev/null +++ b/eng/common/cross/x64/tizen/tizen.patch @@ -0,0 +1,9 @@ +diff -u -r a/usr/lib64/libc.so b/usr/lib64/libc.so +--- a/usr/lib64/libc.so 2016-12-30 23:00:08.284951863 +0900 ++++ b/usr/lib64/libc.so 2016-12-30 23:00:32.140951815 +0900 +@@ -2,4 +2,4 @@ + Use the shared library, but some functions are only in + the static library, so try that secondarily. */ + OUTPUT_FORMAT(elf64-x86-64) +-GROUP ( /lib64/libc.so.6 /usr/lib64/libc_nonshared.a AS_NEEDED ( /lib64/ld-linux-x86-64.so.2 ) ) ++GROUP ( libc.so.6 libc_nonshared.a AS_NEEDED ( ld-linux-x86-64.so.2 ) ) diff --git a/eng/common/cross/x86/tizen/tizen.patch b/eng/common/cross/x86/tizen/tizen.patch new file mode 100644 index 00000000000..f4fe8838ad6 --- /dev/null +++ b/eng/common/cross/x86/tizen/tizen.patch @@ -0,0 +1,9 @@ +diff -u -r a/usr/lib/libc.so b/usr/lib/libc.so +--- a/usr/lib/libc.so 2016-12-30 23:00:08.284951863 +0900 ++++ b/usr/lib/libc.so 2016-12-30 23:00:32.140951815 +0900 +@@ -2,4 +2,4 @@ + Use the shared library, but some functions are only in + the static library, so try that secondarily. */ + OUTPUT_FORMAT(elf32-i386) +-GROUP ( /lib/libc.so.6 /usr/lib/libc_nonshared.a AS_NEEDED ( /lib/ld-linux.so.2 ) ) ++GROUP ( libc.so.6 libc_nonshared.a AS_NEEDED ( ld-linux.so.2 ) ) diff --git a/eng/common/dotnet.cmd b/eng/common/dotnet.cmd new file mode 100644 index 00000000000..527fa4bb38f --- /dev/null +++ b/eng/common/dotnet.cmd @@ -0,0 +1,7 @@ +@echo off + +:: This script is used to install the .NET SDK. +:: It will also invoke the SDK with any provided arguments. + +powershell -ExecutionPolicy ByPass -NoProfile -command "& """%~dp0dotnet.ps1""" %*" +exit /b %ErrorLevel% diff --git a/eng/common/native/install-dependencies.sh b/eng/common/native/install-dependencies.sh index f7bd4af0c8d..64b87d0bcc3 100644 --- a/eng/common/native/install-dependencies.sh +++ b/eng/common/native/install-dependencies.sh @@ -27,7 +27,7 @@ case "$os" in libssl-dev libkrb5-dev pigz cpio localedef -i en_US -c -f UTF-8 -A /usr/share/locale/locale.alias en_US.UTF-8 - elif [ "$ID" = "fedora" ] || [ "$ID" = "rhel" ] || [ "$ID" = "azurelinux" ]; then + elif [ "$ID" = "fedora" ] || [ "$ID" = "rhel" ] || [ "$ID" = "azurelinux" ] || [ "$ID" = "centos"]; then pkg_mgr="$(command -v tdnf 2>/dev/null || command -v dnf)" $pkg_mgr install -y cmake llvm lld lldb clang python curl libicu-devel openssl-devel krb5-devel lttng-ust-devel pigz cpio elif [ "$ID" = "amzn" ]; then diff --git a/global.json b/global.json index b916b6c08a7..64b1e8cfacf 100644 --- a/global.json +++ b/global.json @@ -8,8 +8,8 @@ "dotnet": "10.0.100-rc.2.25502.107" }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "11.0.0-beta.25556.111", - "Microsoft.DotNet.Helix.Sdk": "11.0.0-beta.25556.111" + "Microsoft.DotNet.Arcade.Sdk": "11.0.0-beta.25560.107", + "Microsoft.DotNet.Helix.Sdk": "11.0.0-beta.25560.107" }, "native-tools": { "python3": "3.7.1" From a2092571ced8959055c2f39cb757b496a1ebde9c Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Tue, 11 Nov 2025 08:29:43 +0000 Subject: [PATCH 04/39] Update dependencies from https://github.com/dotnet/dotnet build 20251110.8 On relative base path root Microsoft.DotNet.Arcade.Sdk , Microsoft.DotNet.Helix.Sdk From Version 11.0.0-beta.25555.107 -> To Version 11.0.0-beta.25560.108 Microsoft.Extensions.Logging , Microsoft.NET.ILLink , Microsoft.NET.ILLink.Tasks , Microsoft.NET.Runtime.Emscripten.3.1.56.Node.win-x64 , Microsoft.NETCore.App.Ref , Microsoft.WindowsDesktop.App.Ref , System.Threading.Channels From Version 10.0.0-rc.1.25555.107 -> To Version 10.0.0-rc.3.25560.108 Microsoft.NET.Sdk From Version 10.0.100-rc.2.25555.107 -> To Version 10.0.100-rc.3.25560.108 --- eng/Version.Details.xml | 40 ++++++++++++++++++++-------------------- eng/Versions.props | 10 +++++----- global.json | 4 ++-- 3 files changed, 27 insertions(+), 27 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 7330f0fcc6f..dc74cb97e4e 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,39 +1,39 @@ - + https://github.com/dotnet/dotnet - 899e5c7257f561d6733139c5f36ba2ff15e83a65 + 02022b2fe7037ef7a4af4b899c6d2c2353f94196 - + https://github.com/dotnet/dotnet - 899e5c7257f561d6733139c5f36ba2ff15e83a65 + 02022b2fe7037ef7a4af4b899c6d2c2353f94196 - + https://github.com/dotnet/dotnet - 899e5c7257f561d6733139c5f36ba2ff15e83a65 + 02022b2fe7037ef7a4af4b899c6d2c2353f94196 - + https://github.com/dotnet/dotnet - 899e5c7257f561d6733139c5f36ba2ff15e83a65 + 02022b2fe7037ef7a4af4b899c6d2c2353f94196 - + https://github.com/dotnet/dotnet - 899e5c7257f561d6733139c5f36ba2ff15e83a65 + 02022b2fe7037ef7a4af4b899c6d2c2353f94196 - + https://github.com/dotnet/dotnet - 899e5c7257f561d6733139c5f36ba2ff15e83a65 + 02022b2fe7037ef7a4af4b899c6d2c2353f94196 - + https://github.com/dotnet/dotnet - 899e5c7257f561d6733139c5f36ba2ff15e83a65 + 02022b2fe7037ef7a4af4b899c6d2c2353f94196 - + https://github.com/dotnet/dotnet - 899e5c7257f561d6733139c5f36ba2ff15e83a65 + 02022b2fe7037ef7a4af4b899c6d2c2353f94196 https://github.com/dotnet/xharness @@ -55,12 +55,12 @@ 88c2c7ae772437921d85186318dd4320c4848618 https://github.com/dotnet/maui - - 899e5c7257f561d6733139c5f36ba2ff15e83a65 + + 02022b2fe7037ef7a4af4b899c6d2c2353f94196 https://github.com/dotnet/dotnet - - 899e5c7257f561d6733139c5f36ba2ff15e83a65 + + 02022b2fe7037ef7a4af4b899c6d2c2353f94196 https://github.com/dotnet/dotnet diff --git a/eng/Versions.props b/eng/Versions.props index 9fe3d6f97ca..6372604bdf7 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -7,12 +7,12 @@ - 10.0.0-rc.3.25560.107 - 10.0.0-rc.3.25560.107 - 10.0.0-rc.3.25560.107 - 10.0.0-rc.3.25560.107 + 10.0.0-rc.3.25560.108 + 10.0.0-rc.3.25560.108 + 10.0.0-rc.3.25560.108 + 10.0.0-rc.3.25560.108 0.14.1-nightly.20250107.205 - 10.0.0-rc.3.25560.107 + 10.0.0-rc.3.25560.108 10.0.0-prerelease.25475.1 diff --git a/global.json b/global.json index 64b1e8cfacf..3ead50658ed 100644 --- a/global.json +++ b/global.json @@ -8,8 +8,8 @@ "dotnet": "10.0.100-rc.2.25502.107" }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "11.0.0-beta.25560.107", - "Microsoft.DotNet.Helix.Sdk": "11.0.0-beta.25560.107" + "Microsoft.DotNet.Arcade.Sdk": "11.0.0-beta.25560.108", + "Microsoft.DotNet.Helix.Sdk": "11.0.0-beta.25560.108" }, "native-tools": { "python3": "3.7.1" From 092c141dcc6cd2f3cbfe17839ed84ebbc7a4591b Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Wed, 12 Nov 2025 15:40:01 +0000 Subject: [PATCH 05/39] Update dependencies from https://github.com/dotnet/dotnet build 20251112.2 On relative base path root Microsoft.DotNet.Arcade.Sdk , Microsoft.DotNet.Helix.Sdk From Version 11.0.0-beta.25555.107 -> To Version 11.0.0-beta.25562.102 Microsoft.Extensions.Logging , Microsoft.NET.ILLink , Microsoft.NET.ILLink.Tasks , Microsoft.NET.Runtime.Emscripten.3.1.56.Node.win-x64 , Microsoft.NETCore.App.Ref , Microsoft.WindowsDesktop.App.Ref , System.Threading.Channels From Version 10.0.0-rc.1.25555.107 -> To Version 10.0.0-rc.3.25562.102 Microsoft.NET.Sdk From Version 10.0.100-rc.2.25555.107 -> To Version 10.0.100-rc.3.25562.102 --- eng/Version.Details.xml | 40 ++++++++++++++++++++-------------------- eng/Versions.props | 10 +++++----- global.json | 4 ++-- 3 files changed, 27 insertions(+), 27 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index dc74cb97e4e..2057ece674d 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,39 +1,39 @@ - + https://github.com/dotnet/dotnet - 02022b2fe7037ef7a4af4b899c6d2c2353f94196 + c78244f2dd40d11772abaae1b13939557de2e136 - + https://github.com/dotnet/dotnet - 02022b2fe7037ef7a4af4b899c6d2c2353f94196 + c78244f2dd40d11772abaae1b13939557de2e136 - + https://github.com/dotnet/dotnet - 02022b2fe7037ef7a4af4b899c6d2c2353f94196 + c78244f2dd40d11772abaae1b13939557de2e136 - + https://github.com/dotnet/dotnet - 02022b2fe7037ef7a4af4b899c6d2c2353f94196 + c78244f2dd40d11772abaae1b13939557de2e136 - + https://github.com/dotnet/dotnet - 02022b2fe7037ef7a4af4b899c6d2c2353f94196 + c78244f2dd40d11772abaae1b13939557de2e136 - + https://github.com/dotnet/dotnet - 02022b2fe7037ef7a4af4b899c6d2c2353f94196 + c78244f2dd40d11772abaae1b13939557de2e136 - + https://github.com/dotnet/dotnet - 02022b2fe7037ef7a4af4b899c6d2c2353f94196 + c78244f2dd40d11772abaae1b13939557de2e136 - + https://github.com/dotnet/dotnet - 02022b2fe7037ef7a4af4b899c6d2c2353f94196 + c78244f2dd40d11772abaae1b13939557de2e136 https://github.com/dotnet/xharness @@ -55,12 +55,12 @@ 88c2c7ae772437921d85186318dd4320c4848618 https://github.com/dotnet/maui - - 02022b2fe7037ef7a4af4b899c6d2c2353f94196 + + c78244f2dd40d11772abaae1b13939557de2e136 https://github.com/dotnet/dotnet - - 02022b2fe7037ef7a4af4b899c6d2c2353f94196 + + c78244f2dd40d11772abaae1b13939557de2e136 https://github.com/dotnet/dotnet diff --git a/eng/Versions.props b/eng/Versions.props index 6372604bdf7..b195ec34767 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -7,12 +7,12 @@ - 10.0.0-rc.3.25560.108 - 10.0.0-rc.3.25560.108 - 10.0.0-rc.3.25560.108 - 10.0.0-rc.3.25560.108 + 10.0.0-rc.3.25562.102 + 10.0.0-rc.3.25562.102 + 10.0.0-rc.3.25562.102 + 10.0.0-rc.3.25562.102 0.14.1-nightly.20250107.205 - 10.0.0-rc.3.25560.108 + 10.0.0-rc.3.25562.102 10.0.0-prerelease.25475.1 diff --git a/global.json b/global.json index 3ead50658ed..5ebd6d1d3f0 100644 --- a/global.json +++ b/global.json @@ -8,8 +8,8 @@ "dotnet": "10.0.100-rc.2.25502.107" }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "11.0.0-beta.25560.108", - "Microsoft.DotNet.Helix.Sdk": "11.0.0-beta.25560.108" + "Microsoft.DotNet.Arcade.Sdk": "11.0.0-beta.25562.102", + "Microsoft.DotNet.Helix.Sdk": "11.0.0-beta.25562.102" }, "native-tools": { "python3": "3.7.1" From 828034cda1c3c1a057111f18d40a9c7071a02e85 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Thu, 13 Nov 2025 02:46:57 +0000 Subject: [PATCH 06/39] Update dependencies from https://github.com/dotnet/dotnet build 20251112.3 On relative base path root Microsoft.DotNet.Arcade.Sdk , Microsoft.DotNet.Helix.Sdk From Version 11.0.0-beta.25555.107 -> To Version 11.0.0-beta.25562.103 Microsoft.Extensions.Logging , Microsoft.NET.ILLink , Microsoft.NET.ILLink.Tasks , Microsoft.NET.Runtime.Emscripten.3.1.56.Node.win-x64 , Microsoft.NETCore.App.Ref , Microsoft.WindowsDesktop.App.Ref , System.Threading.Channels From Version 10.0.0-rc.1.25555.107 -> To Version 10.0.0-rc.3.25562.103 Microsoft.NET.Sdk From Version 10.0.100-rc.2.25555.107 -> To Version 10.0.100-rc.3.25562.103 --- eng/Version.Details.xml | 40 ++++++++++++++++++++-------------------- eng/Versions.props | 10 +++++----- global.json | 4 ++-- 3 files changed, 27 insertions(+), 27 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 2057ece674d..33ff8db031a 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,39 +1,39 @@ - + https://github.com/dotnet/dotnet - c78244f2dd40d11772abaae1b13939557de2e136 + 366b569c69b86a7d256a941fb9249705f57bf8cf - + https://github.com/dotnet/dotnet - c78244f2dd40d11772abaae1b13939557de2e136 + 366b569c69b86a7d256a941fb9249705f57bf8cf - + https://github.com/dotnet/dotnet - c78244f2dd40d11772abaae1b13939557de2e136 + 366b569c69b86a7d256a941fb9249705f57bf8cf - + https://github.com/dotnet/dotnet - c78244f2dd40d11772abaae1b13939557de2e136 + 366b569c69b86a7d256a941fb9249705f57bf8cf - + https://github.com/dotnet/dotnet - c78244f2dd40d11772abaae1b13939557de2e136 + 366b569c69b86a7d256a941fb9249705f57bf8cf - + https://github.com/dotnet/dotnet - c78244f2dd40d11772abaae1b13939557de2e136 + 366b569c69b86a7d256a941fb9249705f57bf8cf - + https://github.com/dotnet/dotnet - c78244f2dd40d11772abaae1b13939557de2e136 + 366b569c69b86a7d256a941fb9249705f57bf8cf - + https://github.com/dotnet/dotnet - c78244f2dd40d11772abaae1b13939557de2e136 + 366b569c69b86a7d256a941fb9249705f57bf8cf https://github.com/dotnet/xharness @@ -55,12 +55,12 @@ 88c2c7ae772437921d85186318dd4320c4848618 https://github.com/dotnet/maui - - c78244f2dd40d11772abaae1b13939557de2e136 + + 366b569c69b86a7d256a941fb9249705f57bf8cf https://github.com/dotnet/dotnet - - c78244f2dd40d11772abaae1b13939557de2e136 + + 366b569c69b86a7d256a941fb9249705f57bf8cf https://github.com/dotnet/dotnet diff --git a/eng/Versions.props b/eng/Versions.props index b195ec34767..643eabc75d1 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -7,12 +7,12 @@ - 10.0.0-rc.3.25562.102 - 10.0.0-rc.3.25562.102 - 10.0.0-rc.3.25562.102 - 10.0.0-rc.3.25562.102 + 10.0.0-rc.3.25562.103 + 10.0.0-rc.3.25562.103 + 10.0.0-rc.3.25562.103 + 10.0.0-rc.3.25562.103 0.14.1-nightly.20250107.205 - 10.0.0-rc.3.25562.102 + 10.0.0-rc.3.25562.103 10.0.0-prerelease.25475.1 diff --git a/global.json b/global.json index 5ebd6d1d3f0..61c0f21ee09 100644 --- a/global.json +++ b/global.json @@ -8,8 +8,8 @@ "dotnet": "10.0.100-rc.2.25502.107" }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "11.0.0-beta.25562.102", - "Microsoft.DotNet.Helix.Sdk": "11.0.0-beta.25562.102" + "Microsoft.DotNet.Arcade.Sdk": "11.0.0-beta.25562.103", + "Microsoft.DotNet.Helix.Sdk": "11.0.0-beta.25562.103" }, "native-tools": { "python3": "3.7.1" From 572706634f58056b2f5d5ccaef2363c69d68b180 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Thu, 13 Nov 2025 11:53:38 +0000 Subject: [PATCH 07/39] Update dependencies from https://github.com/dotnet/dotnet build 20251112.9 On relative base path root Microsoft.DotNet.Arcade.Sdk , Microsoft.DotNet.Helix.Sdk From Version 11.0.0-beta.25555.107 -> To Version 11.0.0-beta.25562.109 Microsoft.Extensions.Logging , Microsoft.NET.ILLink , Microsoft.NET.ILLink.Tasks , Microsoft.NET.Runtime.Emscripten.3.1.56.Node.win-x64 , Microsoft.NETCore.App.Ref , Microsoft.WindowsDesktop.App.Ref , System.Threading.Channels From Version 10.0.0-rc.1.25555.107 -> To Version 10.0.0-rc.3.25562.109 Microsoft.NET.Sdk From Version 10.0.100-rc.2.25555.107 -> To Version 10.0.100-rc.3.25562.109 --- eng/Version.Details.xml | 40 ++++++++++++++++++++-------------------- eng/Versions.props | 10 +++++----- global.json | 4 ++-- 3 files changed, 27 insertions(+), 27 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 33ff8db031a..26292254876 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,39 +1,39 @@ - + https://github.com/dotnet/dotnet - 366b569c69b86a7d256a941fb9249705f57bf8cf + f54307a7b9f0a745520863d2b8cdd6f468fd787c - + https://github.com/dotnet/dotnet - 366b569c69b86a7d256a941fb9249705f57bf8cf + f54307a7b9f0a745520863d2b8cdd6f468fd787c - + https://github.com/dotnet/dotnet - 366b569c69b86a7d256a941fb9249705f57bf8cf + f54307a7b9f0a745520863d2b8cdd6f468fd787c - + https://github.com/dotnet/dotnet - 366b569c69b86a7d256a941fb9249705f57bf8cf + f54307a7b9f0a745520863d2b8cdd6f468fd787c - + https://github.com/dotnet/dotnet - 366b569c69b86a7d256a941fb9249705f57bf8cf + f54307a7b9f0a745520863d2b8cdd6f468fd787c - + https://github.com/dotnet/dotnet - 366b569c69b86a7d256a941fb9249705f57bf8cf + f54307a7b9f0a745520863d2b8cdd6f468fd787c - + https://github.com/dotnet/dotnet - 366b569c69b86a7d256a941fb9249705f57bf8cf + f54307a7b9f0a745520863d2b8cdd6f468fd787c - + https://github.com/dotnet/dotnet - 366b569c69b86a7d256a941fb9249705f57bf8cf + f54307a7b9f0a745520863d2b8cdd6f468fd787c https://github.com/dotnet/xharness @@ -55,12 +55,12 @@ 88c2c7ae772437921d85186318dd4320c4848618 https://github.com/dotnet/maui - - 366b569c69b86a7d256a941fb9249705f57bf8cf + + f54307a7b9f0a745520863d2b8cdd6f468fd787c https://github.com/dotnet/dotnet - - 366b569c69b86a7d256a941fb9249705f57bf8cf + + f54307a7b9f0a745520863d2b8cdd6f468fd787c https://github.com/dotnet/dotnet diff --git a/eng/Versions.props b/eng/Versions.props index 643eabc75d1..93cf0be4a1f 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -7,12 +7,12 @@ - 10.0.0-rc.3.25562.103 - 10.0.0-rc.3.25562.103 - 10.0.0-rc.3.25562.103 - 10.0.0-rc.3.25562.103 + 10.0.0-rc.3.25562.109 + 10.0.0-rc.3.25562.109 + 10.0.0-rc.3.25562.109 + 10.0.0-rc.3.25562.109 0.14.1-nightly.20250107.205 - 10.0.0-rc.3.25562.103 + 10.0.0-rc.3.25562.109 10.0.0-prerelease.25475.1 diff --git a/global.json b/global.json index 61c0f21ee09..c7143a57111 100644 --- a/global.json +++ b/global.json @@ -8,8 +8,8 @@ "dotnet": "10.0.100-rc.2.25502.107" }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "11.0.0-beta.25562.103", - "Microsoft.DotNet.Helix.Sdk": "11.0.0-beta.25562.103" + "Microsoft.DotNet.Arcade.Sdk": "11.0.0-beta.25562.109", + "Microsoft.DotNet.Helix.Sdk": "11.0.0-beta.25562.109" }, "native-tools": { "python3": "3.7.1" From 94d7c1a15eda8d618d2920c109e90b3c2e120de3 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Fri, 14 Nov 2025 02:58:24 +0000 Subject: [PATCH 08/39] Update dependencies from https://github.com/dotnet/dotnet build 20251113.3 On relative base path root Microsoft.DotNet.Arcade.Sdk , Microsoft.DotNet.Helix.Sdk From Version 11.0.0-beta.25555.107 -> To Version 11.0.0-beta.25563.103 Microsoft.Extensions.Logging , Microsoft.NET.ILLink , Microsoft.NET.ILLink.Tasks , Microsoft.NET.Runtime.Emscripten.3.1.56.Node.win-x64 , Microsoft.NETCore.App.Ref , Microsoft.WindowsDesktop.App.Ref , System.Threading.Channels From Version 10.0.0-rc.1.25555.107 -> To Version 10.0.0-rc.3.25563.103 Microsoft.NET.Sdk From Version 10.0.100-rc.2.25555.107 -> To Version 10.0.100-rc.3.25563.103 --- eng/Version.Details.xml | 40 ++++++++++++++++++++-------------------- eng/Versions.props | 10 +++++----- global.json | 4 ++-- 3 files changed, 27 insertions(+), 27 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 26292254876..4c8a1b3c6fa 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,39 +1,39 @@ - + https://github.com/dotnet/dotnet - f54307a7b9f0a745520863d2b8cdd6f468fd787c + 679ec822750ef4a645af43de164852f3c7ed9fdc - + https://github.com/dotnet/dotnet - f54307a7b9f0a745520863d2b8cdd6f468fd787c + 679ec822750ef4a645af43de164852f3c7ed9fdc - + https://github.com/dotnet/dotnet - f54307a7b9f0a745520863d2b8cdd6f468fd787c + 679ec822750ef4a645af43de164852f3c7ed9fdc - + https://github.com/dotnet/dotnet - f54307a7b9f0a745520863d2b8cdd6f468fd787c + 679ec822750ef4a645af43de164852f3c7ed9fdc - + https://github.com/dotnet/dotnet - f54307a7b9f0a745520863d2b8cdd6f468fd787c + 679ec822750ef4a645af43de164852f3c7ed9fdc - + https://github.com/dotnet/dotnet - f54307a7b9f0a745520863d2b8cdd6f468fd787c + 679ec822750ef4a645af43de164852f3c7ed9fdc - + https://github.com/dotnet/dotnet - f54307a7b9f0a745520863d2b8cdd6f468fd787c + 679ec822750ef4a645af43de164852f3c7ed9fdc - + https://github.com/dotnet/dotnet - f54307a7b9f0a745520863d2b8cdd6f468fd787c + 679ec822750ef4a645af43de164852f3c7ed9fdc https://github.com/dotnet/xharness @@ -55,12 +55,12 @@ 88c2c7ae772437921d85186318dd4320c4848618 https://github.com/dotnet/maui - - f54307a7b9f0a745520863d2b8cdd6f468fd787c + + 679ec822750ef4a645af43de164852f3c7ed9fdc https://github.com/dotnet/dotnet - - f54307a7b9f0a745520863d2b8cdd6f468fd787c + + 679ec822750ef4a645af43de164852f3c7ed9fdc https://github.com/dotnet/dotnet diff --git a/eng/Versions.props b/eng/Versions.props index 93cf0be4a1f..1396209bbc9 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -7,12 +7,12 @@ - 10.0.0-rc.3.25562.109 - 10.0.0-rc.3.25562.109 - 10.0.0-rc.3.25562.109 - 10.0.0-rc.3.25562.109 + 10.0.0-rc.3.25563.103 + 10.0.0-rc.3.25563.103 + 10.0.0-rc.3.25563.103 + 10.0.0-rc.3.25563.103 0.14.1-nightly.20250107.205 - 10.0.0-rc.3.25562.109 + 10.0.0-rc.3.25563.103 10.0.0-prerelease.25475.1 diff --git a/global.json b/global.json index c7143a57111..3cd09220a3a 100644 --- a/global.json +++ b/global.json @@ -8,8 +8,8 @@ "dotnet": "10.0.100-rc.2.25502.107" }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "11.0.0-beta.25562.109", - "Microsoft.DotNet.Helix.Sdk": "11.0.0-beta.25562.109" + "Microsoft.DotNet.Arcade.Sdk": "11.0.0-beta.25563.103", + "Microsoft.DotNet.Helix.Sdk": "11.0.0-beta.25563.103" }, "native-tools": { "python3": "3.7.1" From 21c83c4775b74de370f26288b39c53f301107ba9 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Sat, 15 Nov 2025 18:37:20 +0000 Subject: [PATCH 09/39] Update dependencies from https://github.com/dotnet/dotnet build 20251115.4 On relative base path root Microsoft.DotNet.Arcade.Sdk , Microsoft.DotNet.Helix.Sdk From Version 11.0.0-beta.25555.107 -> To Version 11.0.0-beta.25565.104 Microsoft.Extensions.Logging , Microsoft.NET.ILLink , Microsoft.NET.ILLink.Tasks , Microsoft.NET.Runtime.Emscripten.3.1.56.Node.win-x64 , Microsoft.NETCore.App.Ref , Microsoft.WindowsDesktop.App.Ref , System.Threading.Channels From Version 10.0.0-rc.1.25555.107 -> To Version 10.0.0-rc.3.25565.104 Microsoft.NET.Sdk From Version 10.0.100-rc.2.25555.107 -> To Version 10.0.100-rc.3.25565.104 --- eng/Version.Details.xml | 40 ++++++++++++++++++++-------------------- eng/Versions.props | 10 +++++----- global.json | 4 ++-- 3 files changed, 27 insertions(+), 27 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 4c8a1b3c6fa..8f78ff2a219 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,39 +1,39 @@ - + https://github.com/dotnet/dotnet - 679ec822750ef4a645af43de164852f3c7ed9fdc + 88c87899e74aebbd27371d84597630ba3c25d4fd - + https://github.com/dotnet/dotnet - 679ec822750ef4a645af43de164852f3c7ed9fdc + 88c87899e74aebbd27371d84597630ba3c25d4fd - + https://github.com/dotnet/dotnet - 679ec822750ef4a645af43de164852f3c7ed9fdc + 88c87899e74aebbd27371d84597630ba3c25d4fd - + https://github.com/dotnet/dotnet - 679ec822750ef4a645af43de164852f3c7ed9fdc + 88c87899e74aebbd27371d84597630ba3c25d4fd - + https://github.com/dotnet/dotnet - 679ec822750ef4a645af43de164852f3c7ed9fdc + 88c87899e74aebbd27371d84597630ba3c25d4fd - + https://github.com/dotnet/dotnet - 679ec822750ef4a645af43de164852f3c7ed9fdc + 88c87899e74aebbd27371d84597630ba3c25d4fd - + https://github.com/dotnet/dotnet - 679ec822750ef4a645af43de164852f3c7ed9fdc + 88c87899e74aebbd27371d84597630ba3c25d4fd - + https://github.com/dotnet/dotnet - 679ec822750ef4a645af43de164852f3c7ed9fdc + 88c87899e74aebbd27371d84597630ba3c25d4fd https://github.com/dotnet/xharness @@ -55,12 +55,12 @@ 88c2c7ae772437921d85186318dd4320c4848618 https://github.com/dotnet/maui - - 679ec822750ef4a645af43de164852f3c7ed9fdc + + 88c87899e74aebbd27371d84597630ba3c25d4fd https://github.com/dotnet/dotnet - - 679ec822750ef4a645af43de164852f3c7ed9fdc + + 88c87899e74aebbd27371d84597630ba3c25d4fd https://github.com/dotnet/dotnet diff --git a/eng/Versions.props b/eng/Versions.props index 1396209bbc9..65cd43eb897 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -7,12 +7,12 @@ - 10.0.0-rc.3.25563.103 - 10.0.0-rc.3.25563.103 - 10.0.0-rc.3.25563.103 - 10.0.0-rc.3.25563.103 + 10.0.0-rc.3.25565.104 + 10.0.0-rc.3.25565.104 + 10.0.0-rc.3.25565.104 + 10.0.0-rc.3.25565.104 0.14.1-nightly.20250107.205 - 10.0.0-rc.3.25563.103 + 10.0.0-rc.3.25565.104 10.0.0-prerelease.25475.1 diff --git a/global.json b/global.json index 3cd09220a3a..89396b9c445 100644 --- a/global.json +++ b/global.json @@ -8,8 +8,8 @@ "dotnet": "10.0.100-rc.2.25502.107" }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "11.0.0-beta.25563.103", - "Microsoft.DotNet.Helix.Sdk": "11.0.0-beta.25563.103" + "Microsoft.DotNet.Arcade.Sdk": "11.0.0-beta.25565.104", + "Microsoft.DotNet.Helix.Sdk": "11.0.0-beta.25565.104" }, "native-tools": { "python3": "3.7.1" From 2b44e6ba350b439f83b346f2832e28b31a7b57cf Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Mon, 17 Nov 2025 13:18:50 +0000 Subject: [PATCH 10/39] Update dependencies from https://github.com/dotnet/dotnet build 20251117.1 On relative base path root Microsoft.DotNet.Arcade.Sdk , Microsoft.DotNet.Helix.Sdk From Version 11.0.0-beta.25555.107 -> To Version 11.0.0-beta.25567.101 Microsoft.Extensions.Logging , Microsoft.NET.ILLink , Microsoft.NET.ILLink.Tasks , Microsoft.NET.Runtime.Emscripten.3.1.56.Node.win-x64 , Microsoft.NETCore.App.Ref , Microsoft.WindowsDesktop.App.Ref , System.Threading.Channels From Version 10.0.0-rc.1.25555.107 -> To Version 10.0.0-rc.3.25567.101 Microsoft.NET.Sdk From Version 10.0.100-rc.2.25555.107 -> To Version 10.0.100-rc.3.25567.101 --- eng/Version.Details.xml | 40 ++++++++++++++++++++-------------------- eng/Versions.props | 10 +++++----- global.json | 4 ++-- 3 files changed, 27 insertions(+), 27 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 8f78ff2a219..d0e4280317b 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,39 +1,39 @@ - + https://github.com/dotnet/dotnet - 88c87899e74aebbd27371d84597630ba3c25d4fd + f67b36f27be47c1fe753f85bfd86ba10fcdf4c4e - + https://github.com/dotnet/dotnet - 88c87899e74aebbd27371d84597630ba3c25d4fd + f67b36f27be47c1fe753f85bfd86ba10fcdf4c4e - + https://github.com/dotnet/dotnet - 88c87899e74aebbd27371d84597630ba3c25d4fd + f67b36f27be47c1fe753f85bfd86ba10fcdf4c4e - + https://github.com/dotnet/dotnet - 88c87899e74aebbd27371d84597630ba3c25d4fd + f67b36f27be47c1fe753f85bfd86ba10fcdf4c4e - + https://github.com/dotnet/dotnet - 88c87899e74aebbd27371d84597630ba3c25d4fd + f67b36f27be47c1fe753f85bfd86ba10fcdf4c4e - + https://github.com/dotnet/dotnet - 88c87899e74aebbd27371d84597630ba3c25d4fd + f67b36f27be47c1fe753f85bfd86ba10fcdf4c4e - + https://github.com/dotnet/dotnet - 88c87899e74aebbd27371d84597630ba3c25d4fd + f67b36f27be47c1fe753f85bfd86ba10fcdf4c4e - + https://github.com/dotnet/dotnet - 88c87899e74aebbd27371d84597630ba3c25d4fd + f67b36f27be47c1fe753f85bfd86ba10fcdf4c4e https://github.com/dotnet/xharness @@ -55,12 +55,12 @@ 88c2c7ae772437921d85186318dd4320c4848618 https://github.com/dotnet/maui - - 88c87899e74aebbd27371d84597630ba3c25d4fd + + f67b36f27be47c1fe753f85bfd86ba10fcdf4c4e https://github.com/dotnet/dotnet - - 88c87899e74aebbd27371d84597630ba3c25d4fd + + f67b36f27be47c1fe753f85bfd86ba10fcdf4c4e https://github.com/dotnet/dotnet diff --git a/eng/Versions.props b/eng/Versions.props index 65cd43eb897..1b6291a1684 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -7,12 +7,12 @@ - 10.0.0-rc.3.25565.104 - 10.0.0-rc.3.25565.104 - 10.0.0-rc.3.25565.104 - 10.0.0-rc.3.25565.104 + 10.0.0-rc.3.25567.101 + 10.0.0-rc.3.25567.101 + 10.0.0-rc.3.25567.101 + 10.0.0-rc.3.25567.101 0.14.1-nightly.20250107.205 - 10.0.0-rc.3.25565.104 + 10.0.0-rc.3.25567.101 10.0.0-prerelease.25475.1 diff --git a/global.json b/global.json index 89396b9c445..bf7ff221730 100644 --- a/global.json +++ b/global.json @@ -8,8 +8,8 @@ "dotnet": "10.0.100-rc.2.25502.107" }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "11.0.0-beta.25565.104", - "Microsoft.DotNet.Helix.Sdk": "11.0.0-beta.25565.104" + "Microsoft.DotNet.Arcade.Sdk": "11.0.0-beta.25567.101", + "Microsoft.DotNet.Helix.Sdk": "11.0.0-beta.25567.101" }, "native-tools": { "python3": "3.7.1" From ede3781aafb71a99010f2c07aca0d061a7870026 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Mon, 17 Nov 2025 17:52:08 +0000 Subject: [PATCH 11/39] Update dependencies from https://github.com/dotnet/dotnet build 20251117.6 On relative base path root Microsoft.DotNet.Arcade.Sdk , Microsoft.DotNet.Helix.Sdk From Version 11.0.0-beta.25555.107 -> To Version 11.0.0-beta.25567.106 Microsoft.Extensions.Logging , Microsoft.NET.ILLink , Microsoft.NET.ILLink.Tasks , Microsoft.NET.Runtime.Emscripten.3.1.56.Node.win-x64 , Microsoft.NETCore.App.Ref , Microsoft.WindowsDesktop.App.Ref , System.Threading.Channels From Version 10.0.0-rc.1.25555.107 -> To Version 10.0.0-rc.3.25567.106 Microsoft.NET.Sdk From Version 10.0.100-rc.2.25555.107 -> To Version 10.0.100-rc.3.25567.106 --- eng/Version.Details.xml | 40 ++++++++++++++++++++-------------------- eng/Versions.props | 10 +++++----- global.json | 4 ++-- 3 files changed, 27 insertions(+), 27 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index d0e4280317b..37d2aacee96 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,39 +1,39 @@ - + https://github.com/dotnet/dotnet - f67b36f27be47c1fe753f85bfd86ba10fcdf4c4e + feff871cec763e9a9f8e9ace212f0fd6041d479f - + https://github.com/dotnet/dotnet - f67b36f27be47c1fe753f85bfd86ba10fcdf4c4e + feff871cec763e9a9f8e9ace212f0fd6041d479f - + https://github.com/dotnet/dotnet - f67b36f27be47c1fe753f85bfd86ba10fcdf4c4e + feff871cec763e9a9f8e9ace212f0fd6041d479f - + https://github.com/dotnet/dotnet - f67b36f27be47c1fe753f85bfd86ba10fcdf4c4e + feff871cec763e9a9f8e9ace212f0fd6041d479f - + https://github.com/dotnet/dotnet - f67b36f27be47c1fe753f85bfd86ba10fcdf4c4e + feff871cec763e9a9f8e9ace212f0fd6041d479f - + https://github.com/dotnet/dotnet - f67b36f27be47c1fe753f85bfd86ba10fcdf4c4e + feff871cec763e9a9f8e9ace212f0fd6041d479f - + https://github.com/dotnet/dotnet - f67b36f27be47c1fe753f85bfd86ba10fcdf4c4e + feff871cec763e9a9f8e9ace212f0fd6041d479f - + https://github.com/dotnet/dotnet - f67b36f27be47c1fe753f85bfd86ba10fcdf4c4e + feff871cec763e9a9f8e9ace212f0fd6041d479f https://github.com/dotnet/xharness @@ -55,12 +55,12 @@ 88c2c7ae772437921d85186318dd4320c4848618 https://github.com/dotnet/maui - - f67b36f27be47c1fe753f85bfd86ba10fcdf4c4e + + feff871cec763e9a9f8e9ace212f0fd6041d479f https://github.com/dotnet/dotnet - - f67b36f27be47c1fe753f85bfd86ba10fcdf4c4e + + feff871cec763e9a9f8e9ace212f0fd6041d479f https://github.com/dotnet/dotnet diff --git a/eng/Versions.props b/eng/Versions.props index 1b6291a1684..8f0a13f829c 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -7,12 +7,12 @@ - 10.0.0-rc.3.25567.101 - 10.0.0-rc.3.25567.101 - 10.0.0-rc.3.25567.101 - 10.0.0-rc.3.25567.101 + 10.0.0-rc.3.25567.106 + 10.0.0-rc.3.25567.106 + 10.0.0-rc.3.25567.106 + 10.0.0-rc.3.25567.106 0.14.1-nightly.20250107.205 - 10.0.0-rc.3.25567.101 + 10.0.0-rc.3.25567.106 10.0.0-prerelease.25475.1 diff --git a/global.json b/global.json index bf7ff221730..78d829961bc 100644 --- a/global.json +++ b/global.json @@ -8,8 +8,8 @@ "dotnet": "10.0.100-rc.2.25502.107" }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "11.0.0-beta.25567.101", - "Microsoft.DotNet.Helix.Sdk": "11.0.0-beta.25567.101" + "Microsoft.DotNet.Arcade.Sdk": "11.0.0-beta.25567.106", + "Microsoft.DotNet.Helix.Sdk": "11.0.0-beta.25567.106" }, "native-tools": { "python3": "3.7.1" From 637a855b6c566d74c501540dbf86cca820d6ecd1 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Tue, 18 Nov 2025 12:12:51 +0000 Subject: [PATCH 12/39] Update dependencies from https://github.com/dotnet/dotnet build 20251117.14 On relative base path root Microsoft.DotNet.Arcade.Sdk , Microsoft.DotNet.Helix.Sdk From Version 11.0.0-beta.25555.107 -> To Version 11.0.0-beta.25567.114 Microsoft.Extensions.Logging , Microsoft.NET.ILLink , Microsoft.NET.ILLink.Tasks , Microsoft.NET.Runtime.Emscripten.3.1.56.Node.win-x64 , Microsoft.NETCore.App.Ref , Microsoft.WindowsDesktop.App.Ref , System.Threading.Channels From Version 10.0.0-rc.1.25555.107 -> To Version 10.0.0-rc.3.25567.114 Microsoft.NET.Sdk From Version 10.0.100-rc.2.25555.107 -> To Version 10.0.100-rc.3.25567.114 --- eng/Version.Details.xml | 40 ++++++++++++++++++++-------------------- eng/Versions.props | 10 +++++----- global.json | 4 ++-- 3 files changed, 27 insertions(+), 27 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 37d2aacee96..21679e57a79 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,39 +1,39 @@ - + https://github.com/dotnet/dotnet - feff871cec763e9a9f8e9ace212f0fd6041d479f + f2d77cc70d399c3297fa56842652d83802d13788 - + https://github.com/dotnet/dotnet - feff871cec763e9a9f8e9ace212f0fd6041d479f + f2d77cc70d399c3297fa56842652d83802d13788 - + https://github.com/dotnet/dotnet - feff871cec763e9a9f8e9ace212f0fd6041d479f + f2d77cc70d399c3297fa56842652d83802d13788 - + https://github.com/dotnet/dotnet - feff871cec763e9a9f8e9ace212f0fd6041d479f + f2d77cc70d399c3297fa56842652d83802d13788 - + https://github.com/dotnet/dotnet - feff871cec763e9a9f8e9ace212f0fd6041d479f + f2d77cc70d399c3297fa56842652d83802d13788 - + https://github.com/dotnet/dotnet - feff871cec763e9a9f8e9ace212f0fd6041d479f + f2d77cc70d399c3297fa56842652d83802d13788 - + https://github.com/dotnet/dotnet - feff871cec763e9a9f8e9ace212f0fd6041d479f + f2d77cc70d399c3297fa56842652d83802d13788 - + https://github.com/dotnet/dotnet - feff871cec763e9a9f8e9ace212f0fd6041d479f + f2d77cc70d399c3297fa56842652d83802d13788 https://github.com/dotnet/xharness @@ -55,12 +55,12 @@ 88c2c7ae772437921d85186318dd4320c4848618 https://github.com/dotnet/maui - - feff871cec763e9a9f8e9ace212f0fd6041d479f + + f2d77cc70d399c3297fa56842652d83802d13788 https://github.com/dotnet/dotnet - - feff871cec763e9a9f8e9ace212f0fd6041d479f + + f2d77cc70d399c3297fa56842652d83802d13788 https://github.com/dotnet/dotnet diff --git a/eng/Versions.props b/eng/Versions.props index 8f0a13f829c..d7e6882e474 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -7,12 +7,12 @@ - 10.0.0-rc.3.25567.106 - 10.0.0-rc.3.25567.106 - 10.0.0-rc.3.25567.106 - 10.0.0-rc.3.25567.106 + 10.0.0-rc.3.25567.114 + 10.0.0-rc.3.25567.114 + 10.0.0-rc.3.25567.114 + 10.0.0-rc.3.25567.114 0.14.1-nightly.20250107.205 - 10.0.0-rc.3.25567.106 + 10.0.0-rc.3.25567.114 10.0.0-prerelease.25475.1 diff --git a/global.json b/global.json index 78d829961bc..818c3470899 100644 --- a/global.json +++ b/global.json @@ -8,8 +8,8 @@ "dotnet": "10.0.100-rc.2.25502.107" }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "11.0.0-beta.25567.106", - "Microsoft.DotNet.Helix.Sdk": "11.0.0-beta.25567.106" + "Microsoft.DotNet.Arcade.Sdk": "11.0.0-beta.25567.114", + "Microsoft.DotNet.Helix.Sdk": "11.0.0-beta.25567.114" }, "native-tools": { "python3": "3.7.1" From a0f8627e741c96d3a5335d7603c15fbed819ab9f Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Tue, 18 Nov 2025 19:07:43 +0000 Subject: [PATCH 13/39] Update dependencies from https://github.com/dotnet/dotnet build 20251117.7 On relative base path root Microsoft.DotNet.Arcade.Sdk , Microsoft.DotNet.Helix.Sdk From Version 11.0.0-beta.25555.107 -> To Version 11.0.0-beta.25567.107 Microsoft.Extensions.Logging , Microsoft.NET.ILLink , Microsoft.NET.ILLink.Tasks , Microsoft.NET.Runtime.Emscripten.3.1.56.Node.win-x64 , Microsoft.NETCore.App.Ref , Microsoft.WindowsDesktop.App.Ref , System.Threading.Channels From Version 10.0.0-rc.1.25555.107 -> To Version 10.0.0-rc.3.25567.107 Microsoft.NET.Sdk From Version 10.0.100-rc.2.25555.107 -> To Version 10.0.100-rc.3.25567.107 --- eng/Version.Details.xml | 40 ++++++++++++++++++++-------------------- eng/Versions.props | 10 +++++----- global.json | 4 ++-- 3 files changed, 27 insertions(+), 27 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 21679e57a79..4e4664e6da7 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,39 +1,39 @@ - + https://github.com/dotnet/dotnet - f2d77cc70d399c3297fa56842652d83802d13788 + 853f4ff20e8209938d9517c7823b44c034deecd1 - + https://github.com/dotnet/dotnet - f2d77cc70d399c3297fa56842652d83802d13788 + 853f4ff20e8209938d9517c7823b44c034deecd1 - + https://github.com/dotnet/dotnet - f2d77cc70d399c3297fa56842652d83802d13788 + 853f4ff20e8209938d9517c7823b44c034deecd1 - + https://github.com/dotnet/dotnet - f2d77cc70d399c3297fa56842652d83802d13788 + 853f4ff20e8209938d9517c7823b44c034deecd1 - + https://github.com/dotnet/dotnet - f2d77cc70d399c3297fa56842652d83802d13788 + 853f4ff20e8209938d9517c7823b44c034deecd1 - + https://github.com/dotnet/dotnet - f2d77cc70d399c3297fa56842652d83802d13788 + 853f4ff20e8209938d9517c7823b44c034deecd1 - + https://github.com/dotnet/dotnet - f2d77cc70d399c3297fa56842652d83802d13788 + 853f4ff20e8209938d9517c7823b44c034deecd1 - + https://github.com/dotnet/dotnet - f2d77cc70d399c3297fa56842652d83802d13788 + 853f4ff20e8209938d9517c7823b44c034deecd1 https://github.com/dotnet/xharness @@ -55,12 +55,12 @@ 88c2c7ae772437921d85186318dd4320c4848618 https://github.com/dotnet/maui - - f2d77cc70d399c3297fa56842652d83802d13788 + + 853f4ff20e8209938d9517c7823b44c034deecd1 https://github.com/dotnet/dotnet - - f2d77cc70d399c3297fa56842652d83802d13788 + + 853f4ff20e8209938d9517c7823b44c034deecd1 https://github.com/dotnet/dotnet diff --git a/eng/Versions.props b/eng/Versions.props index d7e6882e474..ccbcec155f9 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -7,12 +7,12 @@ - 10.0.0-rc.3.25567.114 - 10.0.0-rc.3.25567.114 - 10.0.0-rc.3.25567.114 - 10.0.0-rc.3.25567.114 + 10.0.0-rc.3.25567.107 + 10.0.0-rc.3.25567.107 + 10.0.0-rc.3.25567.107 + 10.0.0-rc.3.25567.107 0.14.1-nightly.20250107.205 - 10.0.0-rc.3.25567.114 + 10.0.0-rc.3.25567.107 10.0.0-prerelease.25475.1 diff --git a/global.json b/global.json index 818c3470899..463855f3dfe 100644 --- a/global.json +++ b/global.json @@ -8,8 +8,8 @@ "dotnet": "10.0.100-rc.2.25502.107" }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "11.0.0-beta.25567.114", - "Microsoft.DotNet.Helix.Sdk": "11.0.0-beta.25567.114" + "Microsoft.DotNet.Arcade.Sdk": "11.0.0-beta.25567.107", + "Microsoft.DotNet.Helix.Sdk": "11.0.0-beta.25567.107" }, "native-tools": { "python3": "3.7.1" From 7830b3038289804d1a790265236158d2f2963341 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Tue, 18 Nov 2025 20:30:10 +0000 Subject: [PATCH 14/39] Update dependencies from https://github.com/dotnet/dotnet build 20251118.6 On relative base path root Microsoft.DotNet.Arcade.Sdk , Microsoft.DotNet.Helix.Sdk From Version 11.0.0-beta.25555.107 -> To Version 11.0.0-beta.25568.106 Microsoft.Extensions.Logging , Microsoft.NET.ILLink , Microsoft.NET.ILLink.Tasks , Microsoft.NET.Runtime.Emscripten.3.1.56.Node.win-x64 , Microsoft.NETCore.App.Ref , Microsoft.WindowsDesktop.App.Ref , System.Threading.Channels From Version 10.0.0-rc.1.25555.107 -> To Version 10.0.0-rc.3.25568.106 Microsoft.NET.Sdk From Version 10.0.100-rc.2.25555.107 -> To Version 10.0.100-rc.3.25568.106 --- eng/Version.Details.xml | 40 ++++++++++++++++++++-------------------- eng/Versions.props | 10 +++++----- global.json | 4 ++-- 3 files changed, 27 insertions(+), 27 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 4e4664e6da7..2fe2bd600ce 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,39 +1,39 @@ - + https://github.com/dotnet/dotnet - 853f4ff20e8209938d9517c7823b44c034deecd1 + a6515a01e4ca4e127024192732e386b80de84589 - + https://github.com/dotnet/dotnet - 853f4ff20e8209938d9517c7823b44c034deecd1 + a6515a01e4ca4e127024192732e386b80de84589 - + https://github.com/dotnet/dotnet - 853f4ff20e8209938d9517c7823b44c034deecd1 + a6515a01e4ca4e127024192732e386b80de84589 - + https://github.com/dotnet/dotnet - 853f4ff20e8209938d9517c7823b44c034deecd1 + a6515a01e4ca4e127024192732e386b80de84589 - + https://github.com/dotnet/dotnet - 853f4ff20e8209938d9517c7823b44c034deecd1 + a6515a01e4ca4e127024192732e386b80de84589 - + https://github.com/dotnet/dotnet - 853f4ff20e8209938d9517c7823b44c034deecd1 + a6515a01e4ca4e127024192732e386b80de84589 - + https://github.com/dotnet/dotnet - 853f4ff20e8209938d9517c7823b44c034deecd1 + a6515a01e4ca4e127024192732e386b80de84589 - + https://github.com/dotnet/dotnet - 853f4ff20e8209938d9517c7823b44c034deecd1 + a6515a01e4ca4e127024192732e386b80de84589 https://github.com/dotnet/xharness @@ -55,12 +55,12 @@ 88c2c7ae772437921d85186318dd4320c4848618 https://github.com/dotnet/maui - - 853f4ff20e8209938d9517c7823b44c034deecd1 + + a6515a01e4ca4e127024192732e386b80de84589 https://github.com/dotnet/dotnet - - 853f4ff20e8209938d9517c7823b44c034deecd1 + + a6515a01e4ca4e127024192732e386b80de84589 https://github.com/dotnet/dotnet diff --git a/eng/Versions.props b/eng/Versions.props index ccbcec155f9..58636f56021 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -7,12 +7,12 @@ - 10.0.0-rc.3.25567.107 - 10.0.0-rc.3.25567.107 - 10.0.0-rc.3.25567.107 - 10.0.0-rc.3.25567.107 + 10.0.0-rc.3.25568.106 + 10.0.0-rc.3.25568.106 + 10.0.0-rc.3.25568.106 + 10.0.0-rc.3.25568.106 0.14.1-nightly.20250107.205 - 10.0.0-rc.3.25567.107 + 10.0.0-rc.3.25568.106 10.0.0-prerelease.25475.1 diff --git a/global.json b/global.json index 463855f3dfe..732641c242c 100644 --- a/global.json +++ b/global.json @@ -8,8 +8,8 @@ "dotnet": "10.0.100-rc.2.25502.107" }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "11.0.0-beta.25567.107", - "Microsoft.DotNet.Helix.Sdk": "11.0.0-beta.25567.107" + "Microsoft.DotNet.Arcade.Sdk": "11.0.0-beta.25568.106", + "Microsoft.DotNet.Helix.Sdk": "11.0.0-beta.25568.106" }, "native-tools": { "python3": "3.7.1" From acd39bed7a14a1571a75be4c2b43404c9047c41b Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Wed, 19 Nov 2025 01:32:13 +0000 Subject: [PATCH 15/39] Update dependencies from https://github.com/dotnet/dotnet build 20251118.10 On relative base path root Microsoft.DotNet.Arcade.Sdk , Microsoft.DotNet.Helix.Sdk From Version 11.0.0-beta.25555.107 -> To Version 11.0.0-beta.25568.110 Microsoft.Extensions.Logging , Microsoft.NET.ILLink , Microsoft.NET.ILLink.Tasks , Microsoft.NET.Runtime.Emscripten.3.1.56.Node.win-x64 , Microsoft.NETCore.App.Ref , Microsoft.WindowsDesktop.App.Ref , System.Threading.Channels From Version 10.0.0-rc.1.25555.107 -> To Version 10.0.0-rc.3.25568.110 Microsoft.NET.Sdk From Version 10.0.100-rc.2.25555.107 -> To Version 10.0.100-rc.3.25568.110 --- eng/Version.Details.xml | 40 ++++++++++++++++++++-------------------- eng/Versions.props | 10 +++++----- global.json | 4 ++-- 3 files changed, 27 insertions(+), 27 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 2fe2bd600ce..d978612c3c6 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,39 +1,39 @@ - + https://github.com/dotnet/dotnet - a6515a01e4ca4e127024192732e386b80de84589 + 9447c7095aa247775e2a4b1cf6bd29c3dd7a32fb - + https://github.com/dotnet/dotnet - a6515a01e4ca4e127024192732e386b80de84589 + 9447c7095aa247775e2a4b1cf6bd29c3dd7a32fb - + https://github.com/dotnet/dotnet - a6515a01e4ca4e127024192732e386b80de84589 + 9447c7095aa247775e2a4b1cf6bd29c3dd7a32fb - + https://github.com/dotnet/dotnet - a6515a01e4ca4e127024192732e386b80de84589 + 9447c7095aa247775e2a4b1cf6bd29c3dd7a32fb - + https://github.com/dotnet/dotnet - a6515a01e4ca4e127024192732e386b80de84589 + 9447c7095aa247775e2a4b1cf6bd29c3dd7a32fb - + https://github.com/dotnet/dotnet - a6515a01e4ca4e127024192732e386b80de84589 + 9447c7095aa247775e2a4b1cf6bd29c3dd7a32fb - + https://github.com/dotnet/dotnet - a6515a01e4ca4e127024192732e386b80de84589 + 9447c7095aa247775e2a4b1cf6bd29c3dd7a32fb - + https://github.com/dotnet/dotnet - a6515a01e4ca4e127024192732e386b80de84589 + 9447c7095aa247775e2a4b1cf6bd29c3dd7a32fb https://github.com/dotnet/xharness @@ -55,12 +55,12 @@ 88c2c7ae772437921d85186318dd4320c4848618 https://github.com/dotnet/maui - - a6515a01e4ca4e127024192732e386b80de84589 + + 9447c7095aa247775e2a4b1cf6bd29c3dd7a32fb https://github.com/dotnet/dotnet - - a6515a01e4ca4e127024192732e386b80de84589 + + 9447c7095aa247775e2a4b1cf6bd29c3dd7a32fb https://github.com/dotnet/dotnet diff --git a/eng/Versions.props b/eng/Versions.props index 58636f56021..2e929455b28 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -7,12 +7,12 @@ - 10.0.0-rc.3.25568.106 - 10.0.0-rc.3.25568.106 - 10.0.0-rc.3.25568.106 - 10.0.0-rc.3.25568.106 + 10.0.0-rc.3.25568.110 + 10.0.0-rc.3.25568.110 + 10.0.0-rc.3.25568.110 + 10.0.0-rc.3.25568.110 0.14.1-nightly.20250107.205 - 10.0.0-rc.3.25568.106 + 10.0.0-rc.3.25568.110 10.0.0-prerelease.25475.1 diff --git a/global.json b/global.json index 732641c242c..332095fa1ee 100644 --- a/global.json +++ b/global.json @@ -8,8 +8,8 @@ "dotnet": "10.0.100-rc.2.25502.107" }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "11.0.0-beta.25568.106", - "Microsoft.DotNet.Helix.Sdk": "11.0.0-beta.25568.106" + "Microsoft.DotNet.Arcade.Sdk": "11.0.0-beta.25568.110", + "Microsoft.DotNet.Helix.Sdk": "11.0.0-beta.25568.110" }, "native-tools": { "python3": "3.7.1" From 76653e2884b869e3a15da9fa0e57b1e225443317 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Thu, 20 Nov 2025 01:28:37 +0000 Subject: [PATCH 16/39] Update dependencies from https://github.com/dotnet/dotnet build 20251119.10 On relative base path root Microsoft.DotNet.Arcade.Sdk , Microsoft.DotNet.Helix.Sdk From Version 11.0.0-beta.25555.107 -> To Version 11.0.0-beta.25569.110 Microsoft.Extensions.Logging , Microsoft.NET.ILLink , Microsoft.NET.ILLink.Tasks , Microsoft.NET.Runtime.Emscripten.3.1.56.Node.win-x64 , Microsoft.NETCore.App.Ref , Microsoft.WindowsDesktop.App.Ref , System.Threading.Channels From Version 10.0.0-rc.1.25555.107 -> To Version 10.0.0-rc.3.25569.110 Microsoft.NET.Sdk From Version 10.0.100-rc.2.25555.107 -> To Version 10.0.100-rc.3.25569.110 --- eng/Version.Details.xml | 40 ++++++------- eng/Versions.props | 10 ++-- eng/common/core-templates/job/job.yml | 4 -- .../job/publish-build-assets.yml | 2 +- .../steps/component-governance.yml | 16 ----- .../core-templates/steps/generate-sbom.yml | 60 ++++--------------- .../core-templates/steps/source-build.yml | 2 +- eng/common/generate-sbom-prep.ps1 | 29 --------- eng/common/generate-sbom-prep.sh | 39 ------------ eng/common/template-guidance.md | 2 - eng/common/templates-official/job/job.yml | 30 +++------- .../steps/component-governance.yml | 7 --- .../steps/publish-pipeline-artifacts.yml | 2 + eng/common/templates/job/job.yml | 31 ++++------ .../templates/steps/component-governance.yml | 7 --- global.json | 4 +- 16 files changed, 60 insertions(+), 225 deletions(-) delete mode 100644 eng/common/core-templates/steps/component-governance.yml delete mode 100644 eng/common/generate-sbom-prep.ps1 delete mode 100644 eng/common/generate-sbom-prep.sh delete mode 100644 eng/common/templates-official/steps/component-governance.yml delete mode 100644 eng/common/templates/steps/component-governance.yml diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index d978612c3c6..65f9cce40b4 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,39 +1,39 @@ - + https://github.com/dotnet/dotnet - 9447c7095aa247775e2a4b1cf6bd29c3dd7a32fb + ea77dd1498eeaae360c4309d07ccd68c8936fe48 - + https://github.com/dotnet/dotnet - 9447c7095aa247775e2a4b1cf6bd29c3dd7a32fb + ea77dd1498eeaae360c4309d07ccd68c8936fe48 - + https://github.com/dotnet/dotnet - 9447c7095aa247775e2a4b1cf6bd29c3dd7a32fb + ea77dd1498eeaae360c4309d07ccd68c8936fe48 - + https://github.com/dotnet/dotnet - 9447c7095aa247775e2a4b1cf6bd29c3dd7a32fb + ea77dd1498eeaae360c4309d07ccd68c8936fe48 - + https://github.com/dotnet/dotnet - 9447c7095aa247775e2a4b1cf6bd29c3dd7a32fb + ea77dd1498eeaae360c4309d07ccd68c8936fe48 - + https://github.com/dotnet/dotnet - 9447c7095aa247775e2a4b1cf6bd29c3dd7a32fb + ea77dd1498eeaae360c4309d07ccd68c8936fe48 - + https://github.com/dotnet/dotnet - 9447c7095aa247775e2a4b1cf6bd29c3dd7a32fb + ea77dd1498eeaae360c4309d07ccd68c8936fe48 - + https://github.com/dotnet/dotnet - 9447c7095aa247775e2a4b1cf6bd29c3dd7a32fb + ea77dd1498eeaae360c4309d07ccd68c8936fe48 https://github.com/dotnet/xharness @@ -55,12 +55,12 @@ 88c2c7ae772437921d85186318dd4320c4848618 https://github.com/dotnet/maui - - 9447c7095aa247775e2a4b1cf6bd29c3dd7a32fb + + ea77dd1498eeaae360c4309d07ccd68c8936fe48 https://github.com/dotnet/dotnet - - 9447c7095aa247775e2a4b1cf6bd29c3dd7a32fb + + ea77dd1498eeaae360c4309d07ccd68c8936fe48 https://github.com/dotnet/dotnet diff --git a/eng/Versions.props b/eng/Versions.props index 2e929455b28..f54e260e848 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -7,12 +7,12 @@ - 10.0.0-rc.3.25568.110 - 10.0.0-rc.3.25568.110 - 10.0.0-rc.3.25568.110 - 10.0.0-rc.3.25568.110 + 10.0.0-rc.3.25569.110 + 10.0.0-rc.3.25569.110 + 10.0.0-rc.3.25569.110 + 10.0.0-rc.3.25569.110 0.14.1-nightly.20250107.205 - 10.0.0-rc.3.25568.110 + 10.0.0-rc.3.25569.110 10.0.0-prerelease.25475.1 diff --git a/eng/common/core-templates/job/job.yml b/eng/common/core-templates/job/job.yml index cb4ccc023a3..3921b407bc9 100644 --- a/eng/common/core-templates/job/job.yml +++ b/eng/common/core-templates/job/job.yml @@ -31,7 +31,6 @@ parameters: testRunTitle: '' testResultsFormat: '' name: '' - componentGovernanceSteps: [] preSteps: [] artifactPublishSteps: [] runAsPublic: false @@ -150,9 +149,6 @@ jobs: - ${{ each step in parameters.steps }}: - ${{ step }} - - ${{ each step in parameters.componentGovernanceSteps }}: - - ${{ step }} - - ${{ if and(eq(parameters.runAsPublic, 'false'), ne(variables['System.TeamProject'], 'public'), notin(variables['Build.Reason'], 'PullRequest')) }}: - template: /eng/common/core-templates/steps/cleanup-microbuild.yml parameters: diff --git a/eng/common/core-templates/job/publish-build-assets.yml b/eng/common/core-templates/job/publish-build-assets.yml index 4a417e003c7..a23657cd716 100644 --- a/eng/common/core-templates/job/publish-build-assets.yml +++ b/eng/common/core-templates/job/publish-build-assets.yml @@ -172,7 +172,7 @@ jobs: artifactName: AssetManifests displayName: 'Publish Merged Manifest' retryCountOnTaskFailure: 10 # for any logs being locked - sbomEnabled: false # we don't need SBOM for logs + isProduction: false - template: /eng/common/core-templates/steps/publish-build-artifacts.yml parameters: diff --git a/eng/common/core-templates/steps/component-governance.yml b/eng/common/core-templates/steps/component-governance.yml deleted file mode 100644 index cf0649aa956..00000000000 --- a/eng/common/core-templates/steps/component-governance.yml +++ /dev/null @@ -1,16 +0,0 @@ -parameters: - disableComponentGovernance: false - componentGovernanceIgnoreDirectories: '' - is1ESPipeline: false - displayName: 'Component Detection' - -steps: -- ${{ if eq(parameters.disableComponentGovernance, 'true') }}: - - script: echo "##vso[task.setvariable variable=skipComponentGovernanceDetection]true" - displayName: Set skipComponentGovernanceDetection variable -- ${{ if ne(parameters.disableComponentGovernance, 'true') }}: - - task: ComponentGovernanceComponentDetection@0 - continueOnError: true - displayName: ${{ parameters.displayName }} - inputs: - ignoreDirectories: ${{ parameters.componentGovernanceIgnoreDirectories }} diff --git a/eng/common/core-templates/steps/generate-sbom.yml b/eng/common/core-templates/steps/generate-sbom.yml index 003f7eae0fa..aad0a8aeda3 100644 --- a/eng/common/core-templates/steps/generate-sbom.yml +++ b/eng/common/core-templates/steps/generate-sbom.yml @@ -1,54 +1,14 @@ -# BuildDropPath - The root folder of the drop directory for which the manifest file will be generated. -# PackageName - The name of the package this SBOM represents. -# PackageVersion - The version of the package this SBOM represents. -# ManifestDirPath - The path of the directory where the generated manifest files will be placed -# IgnoreDirectories - Directories to ignore for SBOM generation. This will be passed through to the CG component detector. - parameters: - PackageVersion: 11.0.0 - BuildDropPath: '$(System.DefaultWorkingDirectory)/artifacts' - PackageName: '.NET' - ManifestDirPath: $(Build.ArtifactStagingDirectory)/sbom - IgnoreDirectories: '' - sbomContinueOnError: true - is1ESPipeline: false - # disable publishArtifacts if some other step is publishing the artifacts (like job.yml). - publishArtifacts: true + PackageVersion: unused + BuildDropPath: unused + PackageName: unused + ManifestDirPath: unused + IgnoreDirectories: unused + sbomContinueOnError: unused + is1ESPipeline: unused + publishArtifacts: unused steps: -- task: PowerShell@2 - displayName: Prep for SBOM generation in (Non-linux) - condition: or(eq(variables['Agent.Os'], 'Windows_NT'), eq(variables['Agent.Os'], 'Darwin')) - inputs: - filePath: ./eng/common/generate-sbom-prep.ps1 - arguments: ${{parameters.manifestDirPath}} - -# Chmodding is a workaround for https://github.com/dotnet/arcade/issues/8461 - script: | - chmod +x ./eng/common/generate-sbom-prep.sh - ./eng/common/generate-sbom-prep.sh ${{parameters.manifestDirPath}} - displayName: Prep for SBOM generation in (Linux) - condition: eq(variables['Agent.Os'], 'Linux') - continueOnError: ${{ parameters.sbomContinueOnError }} - -- task: AzureArtifacts.manifest-generator-task.manifest-generator-task.ManifestGeneratorTask@0 - displayName: 'Generate SBOM manifest' - continueOnError: ${{ parameters.sbomContinueOnError }} - inputs: - PackageName: ${{ parameters.packageName }} - BuildDropPath: ${{ parameters.buildDropPath }} - PackageVersion: ${{ parameters.packageVersion }} - ManifestDirPath: ${{ parameters.manifestDirPath }}/$(ARTIFACT_NAME) - ${{ if ne(parameters.IgnoreDirectories, '') }}: - AdditionalComponentDetectorArgs: '--IgnoreDirectories ${{ parameters.IgnoreDirectories }}' - -- ${{ if eq(parameters.publishArtifacts, 'true')}}: - - template: /eng/common/core-templates/steps/publish-pipeline-artifacts.yml - parameters: - is1ESPipeline: ${{ parameters.is1ESPipeline }} - args: - displayName: Publish SBOM manifest - continueOnError: ${{parameters.sbomContinueOnError}} - targetPath: '${{ parameters.manifestDirPath }}' - artifactName: $(ARTIFACT_NAME) - + echo "##vso[task.logissue type=warning]Including generate-sbom.yml is deprecated, SBOM generation is handled 1ES PT now. Remove this include." + displayName: Issue generate-sbom.yml deprecation warning diff --git a/eng/common/core-templates/steps/source-build.yml b/eng/common/core-templates/steps/source-build.yml index acf16ed3496..40b6c4c320f 100644 --- a/eng/common/core-templates/steps/source-build.yml +++ b/eng/common/core-templates/steps/source-build.yml @@ -62,4 +62,4 @@ steps: artifactName: BuildLogs_SourceBuild_${{ parameters.platform.name }}_Attempt$(System.JobAttempt) continueOnError: true condition: succeededOrFailed() - sbomEnabled: false # we don't need SBOM for logs + isProduction: false diff --git a/eng/common/generate-sbom-prep.ps1 b/eng/common/generate-sbom-prep.ps1 deleted file mode 100644 index a0c7d792a76..00000000000 --- a/eng/common/generate-sbom-prep.ps1 +++ /dev/null @@ -1,29 +0,0 @@ -Param( - [Parameter(Mandatory=$true)][string] $ManifestDirPath # Manifest directory where sbom will be placed -) - -. $PSScriptRoot\pipeline-logging-functions.ps1 - -# Normally - we'd listen to the manifest path given, but 1ES templates will overwrite if this level gets uploaded directly -# with their own overwriting ours. So we create it as a sub directory of the requested manifest path. -$ArtifactName = "${env:SYSTEM_STAGENAME}_${env:AGENT_JOBNAME}_SBOM" -$SafeArtifactName = $ArtifactName -replace '["/:<>\\|?@*"() ]', '_' -$SbomGenerationDir = Join-Path $ManifestDirPath $SafeArtifactName - -Write-Host "Artifact name before : $ArtifactName" -Write-Host "Artifact name after : $SafeArtifactName" - -Write-Host "Creating dir $ManifestDirPath" - -# create directory for sbom manifest to be placed -if (!(Test-Path -path $SbomGenerationDir)) -{ - New-Item -ItemType Directory -path $SbomGenerationDir - Write-Host "Successfully created directory $SbomGenerationDir" -} -else{ - Write-PipelineTelemetryError -category 'Build' "Unable to create sbom folder." -} - -Write-Host "Updating artifact name" -Write-Host "##vso[task.setvariable variable=ARTIFACT_NAME]$SafeArtifactName" diff --git a/eng/common/generate-sbom-prep.sh b/eng/common/generate-sbom-prep.sh deleted file mode 100644 index b8ecca72bbf..00000000000 --- a/eng/common/generate-sbom-prep.sh +++ /dev/null @@ -1,39 +0,0 @@ -#!/usr/bin/env bash - -source="${BASH_SOURCE[0]}" - -# resolve $SOURCE until the file is no longer a symlink -while [[ -h $source ]]; do - scriptroot="$( cd -P "$( dirname "$source" )" && pwd )" - source="$(readlink "$source")" - - # if $source was a relative symlink, we need to resolve it relative to the path where the - # symlink file was located - [[ $source != /* ]] && source="$scriptroot/$source" -done -scriptroot="$( cd -P "$( dirname "$source" )" && pwd )" -. $scriptroot/pipeline-logging-functions.sh - - -# replace all special characters with _, some builds use special characters like : in Agent.Jobname, that is not a permissible name while uploading artifacts. -artifact_name=$SYSTEM_STAGENAME"_"$AGENT_JOBNAME"_SBOM" -safe_artifact_name="${artifact_name//["/:<>\\|?@*$" ]/_}" -manifest_dir=$1 - -# Normally - we'd listen to the manifest path given, but 1ES templates will overwrite if this level gets uploaded directly -# with their own overwriting ours. So we create it as a sub directory of the requested manifest path. -sbom_generation_dir="$manifest_dir/$safe_artifact_name" - -if [ ! -d "$sbom_generation_dir" ] ; then - mkdir -p "$sbom_generation_dir" - echo "Sbom directory created." $sbom_generation_dir -else - Write-PipelineTelemetryError -category 'Build' "Unable to create sbom folder." -fi - -echo "Artifact name before : "$artifact_name -echo "Artifact name after : "$safe_artifact_name -export ARTIFACT_NAME=$safe_artifact_name -echo "##vso[task.setvariable variable=ARTIFACT_NAME]$safe_artifact_name" - -exit 0 diff --git a/eng/common/template-guidance.md b/eng/common/template-guidance.md index 4bf4cf41bd7..e2b07a865f1 100644 --- a/eng/common/template-guidance.md +++ b/eng/common/template-guidance.md @@ -82,7 +82,6 @@ eng\common\ publish-build-artifacts.yml (logic) publish-pipeline-artifacts.yml (logic) component-governance.yml (shim) - generate-sbom.yml (shim) publish-logs.yml (shim) retain-build.yml (shim) send-to-helix.yml (shim) @@ -107,7 +106,6 @@ eng\common\ setup-maestro-vars.yml (logic) steps\ component-governance.yml (logic) - generate-sbom.yml (logic) publish-build-artifacts.yml (redirect) publish-logs.yml (logic) publish-pipeline-artifacts.yml (redirect) diff --git a/eng/common/templates-official/job/job.yml b/eng/common/templates-official/job/job.yml index 92a0664f564..fed3caaea70 100644 --- a/eng/common/templates-official/job/job.yml +++ b/eng/common/templates-official/job/job.yml @@ -1,24 +1,15 @@ parameters: -# Sbom related params - enableSbom: true runAsPublic: false - PackageVersion: 9.0.0 - BuildDropPath: '$(System.DefaultWorkingDirectory)/artifacts' +# Sbom related params, unused now and can eventually be removed + enableSbom: unused + PackageVersion: unused + BuildDropPath: unused jobs: - template: /eng/common/core-templates/job/job.yml parameters: is1ESPipeline: true - componentGovernanceSteps: - - ${{ if and(eq(parameters.runAsPublic, 'false'), ne(variables['System.TeamProject'], 'public'), notin(variables['Build.Reason'], 'PullRequest'), eq(parameters.enableSbom, 'true')) }}: - - template: /eng/common/templates/steps/generate-sbom.yml - parameters: - PackageVersion: ${{ parameters.packageVersion }} - BuildDropPath: ${{ parameters.buildDropPath }} - ManifestDirPath: $(Build.ArtifactStagingDirectory)/sbom - publishArtifacts: false - # publish artifacts # for 1ES managed templates, use the templateContext.output to handle multiple outputs. templateContext: @@ -41,7 +32,7 @@ jobs: continueOnError: true condition: always() retryCountOnTaskFailure: 10 # for any logs being locked - sbomEnabled: false # we don't need SBOM for logs + isProduction: false - ${{ if eq(parameters.enablePublishBuildArtifacts, true) }}: - output: buildArtifacts @@ -51,7 +42,7 @@ jobs: ArtifactName: ${{ coalesce(parameters.enablePublishBuildArtifacts.artifactName, '$(Agent.Os)_$(Agent.JobName)_Attempt$(System.JobAttempt)' ) }} continueOnError: true condition: always() - sbomEnabled: false # we don't need SBOM for logs + #isProduction: false - ${{ if eq(parameters.enableBuildRetry, 'true') }}: - output: pipelineArtifact @@ -59,14 +50,7 @@ jobs: artifactName: 'BuildConfiguration' displayName: 'Publish build retry configuration' continueOnError: true - sbomEnabled: false # we don't need SBOM for BuildConfiguration - - - ${{ if and(eq(parameters.runAsPublic, 'false'), ne(variables['System.TeamProject'], 'public'), notin(variables['Build.Reason'], 'PullRequest'), eq(parameters.enableSbom, 'true')) }}: - - output: pipelineArtifact - displayName: Publish SBOM manifest - continueOnError: true - targetPath: $(Build.ArtifactStagingDirectory)/sbom - artifactName: $(ARTIFACT_NAME) + isProduction: false # add any outputs provided via root yaml - ${{ if ne(parameters.templateContext.outputs, '') }}: diff --git a/eng/common/templates-official/steps/component-governance.yml b/eng/common/templates-official/steps/component-governance.yml deleted file mode 100644 index 30bb3985ca2..00000000000 --- a/eng/common/templates-official/steps/component-governance.yml +++ /dev/null @@ -1,7 +0,0 @@ -steps: -- template: /eng/common/core-templates/steps/component-governance.yml - parameters: - is1ESPipeline: true - - ${{ each parameter in parameters }}: - ${{ parameter.key }}: ${{ parameter.value }} diff --git a/eng/common/templates-official/steps/publish-pipeline-artifacts.yml b/eng/common/templates-official/steps/publish-pipeline-artifacts.yml index 172f9f0fdc9..6a652ae1cfe 100644 --- a/eng/common/templates-official/steps/publish-pipeline-artifacts.yml +++ b/eng/common/templates-official/steps/publish-pipeline-artifacts.yml @@ -26,3 +26,5 @@ steps: properties: ${{ parameters.args.properties }} ${{ if parameters.args.sbomEnabled }}: sbomEnabled: ${{ parameters.args.sbomEnabled }} + ${{ if parameters.args.isProduction }}: + isProduction: ${{ parameters.args.isProduction }} diff --git a/eng/common/templates/job/job.yml b/eng/common/templates/job/job.yml index 238fa0818f7..d1b2352798f 100644 --- a/eng/common/templates/job/job.yml +++ b/eng/common/templates/job/job.yml @@ -1,12 +1,12 @@ parameters: enablePublishBuildArtifacts: false - disableComponentGovernance: '' - componentGovernanceIgnoreDirectories: '' -# Sbom related params - enableSbom: true runAsPublic: false - PackageVersion: 9.0.0 - BuildDropPath: '$(System.DefaultWorkingDirectory)/artifacts' +# CG related params, unused now and can eventually be removed + disableComponentGovernance: unused +# Sbom related params, unused now and can eventually be removed + enableSbom: unused + PackageVersion: unused + BuildDropPath: unused jobs: - template: /eng/common/core-templates/job/job.yml @@ -21,17 +21,10 @@ jobs: - ${{ each step in parameters.steps }}: - ${{ step }} - componentGovernanceSteps: - - template: /eng/common/templates/steps/component-governance.yml - parameters: - ${{ if eq(parameters.disableComponentGovernance, '') }}: - ${{ if and(ne(variables['System.TeamProject'], 'public'), notin(variables['Build.Reason'], 'PullRequest'), eq(parameters.runAsPublic, 'false'), or(startsWith(variables['Build.SourceBranch'], 'refs/heads/release/'), startsWith(variables['Build.SourceBranch'], 'refs/heads/dotnet/'), startsWith(variables['Build.SourceBranch'], 'refs/heads/microsoft/'), eq(variables['Build.SourceBranch'], 'refs/heads/main'))) }}: - disableComponentGovernance: false - ${{ else }}: - disableComponentGovernance: true - ${{ else }}: - disableComponentGovernance: ${{ parameters.disableComponentGovernance }} - componentGovernanceIgnoreDirectories: ${{ parameters.componentGovernanceIgnoreDirectories }} + # we don't run CG in public + - ${{ if eq(variables['System.TeamProject'], 'public') }}: + - script: echo "##vso[task.setvariable variable=skipComponentGovernanceDetection]true" + displayName: Set skipComponentGovernanceDetection variable artifactPublishSteps: - ${{ if ne(parameters.artifacts.publish, '') }}: @@ -58,7 +51,7 @@ jobs: continueOnError: true condition: always() retryCountOnTaskFailure: 10 # for any logs being locked - sbomEnabled: false # we don't need SBOM for logs + isProduction: false - ${{ if ne(parameters.enablePublishBuildArtifacts, 'false') }}: - template: /eng/common/core-templates/steps/publish-build-artifacts.yml @@ -81,4 +74,4 @@ jobs: artifactName: 'BuildConfiguration' displayName: 'Publish build retry configuration' continueOnError: true - sbomEnabled: false # we don't need SBOM for BuildConfiguration + isProduction: false diff --git a/eng/common/templates/steps/component-governance.yml b/eng/common/templates/steps/component-governance.yml deleted file mode 100644 index c12a5f8d21d..00000000000 --- a/eng/common/templates/steps/component-governance.yml +++ /dev/null @@ -1,7 +0,0 @@ -steps: -- template: /eng/common/core-templates/steps/component-governance.yml - parameters: - is1ESPipeline: false - - ${{ each parameter in parameters }}: - ${{ parameter.key }}: ${{ parameter.value }} diff --git a/global.json b/global.json index 332095fa1ee..324a5d986b5 100644 --- a/global.json +++ b/global.json @@ -8,8 +8,8 @@ "dotnet": "10.0.100-rc.2.25502.107" }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "11.0.0-beta.25568.110", - "Microsoft.DotNet.Helix.Sdk": "11.0.0-beta.25568.110" + "Microsoft.DotNet.Arcade.Sdk": "11.0.0-beta.25569.110", + "Microsoft.DotNet.Helix.Sdk": "11.0.0-beta.25569.110" }, "native-tools": { "python3": "3.7.1" From 2f404fa66520d5f1260d696883b26694cb1892a5 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Thu, 20 Nov 2025 13:03:25 +0000 Subject: [PATCH 17/39] Update dependencies from https://github.com/dotnet/dotnet build 20251120.1 On relative base path root Microsoft.DotNet.Arcade.Sdk , Microsoft.DotNet.Helix.Sdk From Version 11.0.0-beta.25555.107 -> To Version 11.0.0-beta.25570.101 Microsoft.Extensions.Logging , Microsoft.NET.ILLink , Microsoft.NET.ILLink.Tasks , Microsoft.NET.Runtime.Emscripten.3.1.56.Node.win-x64 , Microsoft.NETCore.App.Ref , Microsoft.WindowsDesktop.App.Ref , System.Threading.Channels From Version 10.0.0-rc.1.25555.107 -> To Version 10.0.0-rc.3.25570.101 Microsoft.NET.Sdk From Version 10.0.100-rc.2.25555.107 -> To Version 10.0.100-rc.3.25570.101 --- eng/Version.Details.xml | 40 ++++++------- eng/Versions.props | 10 ++-- eng/common/core-templates/job/job.yml | 4 ++ .../job/publish-build-assets.yml | 7 ++- .../core-templates/job/source-build.yml | 2 +- .../core-templates/post-build/post-build.yml | 3 +- .../steps/component-governance.yml | 16 +++++ .../core-templates/steps/generate-sbom.yml | 60 +++++++++++++++---- .../core-templates/steps/source-build.yml | 2 +- eng/common/generate-sbom-prep.ps1 | 29 +++++++++ eng/common/generate-sbom-prep.sh | 39 ++++++++++++ eng/common/template-guidance.md | 2 + eng/common/templates-official/job/job.yml | 30 +++++++--- .../steps/component-governance.yml | 7 +++ .../steps/publish-pipeline-artifacts.yml | 2 - eng/common/templates/job/job.yml | 31 ++++++---- .../templates/steps/component-governance.yml | 7 +++ global.json | 4 +- 18 files changed, 231 insertions(+), 64 deletions(-) create mode 100644 eng/common/core-templates/steps/component-governance.yml create mode 100644 eng/common/generate-sbom-prep.ps1 create mode 100644 eng/common/generate-sbom-prep.sh create mode 100644 eng/common/templates-official/steps/component-governance.yml create mode 100644 eng/common/templates/steps/component-governance.yml diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 65f9cce40b4..43f355f91c9 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,39 +1,39 @@ - + https://github.com/dotnet/dotnet - ea77dd1498eeaae360c4309d07ccd68c8936fe48 + e9a2ab63ad60de1afff34ddc3f09257093ea034a - + https://github.com/dotnet/dotnet - ea77dd1498eeaae360c4309d07ccd68c8936fe48 + e9a2ab63ad60de1afff34ddc3f09257093ea034a - + https://github.com/dotnet/dotnet - ea77dd1498eeaae360c4309d07ccd68c8936fe48 + e9a2ab63ad60de1afff34ddc3f09257093ea034a - + https://github.com/dotnet/dotnet - ea77dd1498eeaae360c4309d07ccd68c8936fe48 + e9a2ab63ad60de1afff34ddc3f09257093ea034a - + https://github.com/dotnet/dotnet - ea77dd1498eeaae360c4309d07ccd68c8936fe48 + e9a2ab63ad60de1afff34ddc3f09257093ea034a - + https://github.com/dotnet/dotnet - ea77dd1498eeaae360c4309d07ccd68c8936fe48 + e9a2ab63ad60de1afff34ddc3f09257093ea034a - + https://github.com/dotnet/dotnet - ea77dd1498eeaae360c4309d07ccd68c8936fe48 + e9a2ab63ad60de1afff34ddc3f09257093ea034a - + https://github.com/dotnet/dotnet - ea77dd1498eeaae360c4309d07ccd68c8936fe48 + e9a2ab63ad60de1afff34ddc3f09257093ea034a https://github.com/dotnet/xharness @@ -55,12 +55,12 @@ 88c2c7ae772437921d85186318dd4320c4848618 https://github.com/dotnet/maui - - ea77dd1498eeaae360c4309d07ccd68c8936fe48 + + e9a2ab63ad60de1afff34ddc3f09257093ea034a https://github.com/dotnet/dotnet - - ea77dd1498eeaae360c4309d07ccd68c8936fe48 + + e9a2ab63ad60de1afff34ddc3f09257093ea034a https://github.com/dotnet/dotnet diff --git a/eng/Versions.props b/eng/Versions.props index f54e260e848..13e34325741 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -7,12 +7,12 @@ - 10.0.0-rc.3.25569.110 - 10.0.0-rc.3.25569.110 - 10.0.0-rc.3.25569.110 - 10.0.0-rc.3.25569.110 + 10.0.0-rc.3.25570.101 + 10.0.0-rc.3.25570.101 + 10.0.0-rc.3.25570.101 + 10.0.0-rc.3.25570.101 0.14.1-nightly.20250107.205 - 10.0.0-rc.3.25569.110 + 10.0.0-rc.3.25570.101 10.0.0-prerelease.25475.1 diff --git a/eng/common/core-templates/job/job.yml b/eng/common/core-templates/job/job.yml index 3921b407bc9..cb4ccc023a3 100644 --- a/eng/common/core-templates/job/job.yml +++ b/eng/common/core-templates/job/job.yml @@ -31,6 +31,7 @@ parameters: testRunTitle: '' testResultsFormat: '' name: '' + componentGovernanceSteps: [] preSteps: [] artifactPublishSteps: [] runAsPublic: false @@ -149,6 +150,9 @@ jobs: - ${{ each step in parameters.steps }}: - ${{ step }} + - ${{ each step in parameters.componentGovernanceSteps }}: + - ${{ step }} + - ${{ if and(eq(parameters.runAsPublic, 'false'), ne(variables['System.TeamProject'], 'public'), notin(variables['Build.Reason'], 'PullRequest')) }}: - template: /eng/common/core-templates/steps/cleanup-microbuild.yml parameters: diff --git a/eng/common/core-templates/job/publish-build-assets.yml b/eng/common/core-templates/job/publish-build-assets.yml index a23657cd716..8b5c635fe80 100644 --- a/eng/common/core-templates/job/publish-build-assets.yml +++ b/eng/common/core-templates/job/publish-build-assets.yml @@ -122,8 +122,9 @@ jobs: # Populate internal runtime variables. - template: /eng/common/templates/steps/enable-internal-sources.yml - parameters: - legacyCredential: $(dn-bot-dnceng-artifact-feeds-rw) + ${{ if eq(variables['System.TeamProject'], 'DevDiv') }}: + parameters: + legacyCredential: $(dn-bot-dnceng-artifact-feeds-rw) - template: /eng/common/templates/steps/enable-internal-runtimes.yml @@ -172,7 +173,7 @@ jobs: artifactName: AssetManifests displayName: 'Publish Merged Manifest' retryCountOnTaskFailure: 10 # for any logs being locked - isProduction: false + sbomEnabled: false # we don't need SBOM for logs - template: /eng/common/core-templates/steps/publish-build-artifacts.yml parameters: diff --git a/eng/common/core-templates/job/source-build.yml b/eng/common/core-templates/job/source-build.yml index d805d5faeb9..9f6b3ee9e46 100644 --- a/eng/common/core-templates/job/source-build.yml +++ b/eng/common/core-templates/job/source-build.yml @@ -60,7 +60,7 @@ jobs: pool: ${{ if eq(variables['System.TeamProject'], 'public') }}: name: $[replace(replace(eq(contains(coalesce(variables['System.PullRequest.TargetBranch'], variables['Build.SourceBranch'], 'refs/heads/main'), 'release'), 'true'), True, 'NetCore-Svc-Public' ), False, 'NetCore-Public')] - demands: ImageOverride -equals build.ubuntu.2004.amd64 + demands: ImageOverride -equals build.ubuntu.2204.amd64 ${{ if eq(variables['System.TeamProject'], 'internal') }}: name: $[replace(replace(eq(contains(coalesce(variables['System.PullRequest.TargetBranch'], variables['Build.SourceBranch'], 'refs/heads/main'), 'release'), 'true'), True, 'NetCore1ESPool-Svc-Internal'), False, 'NetCore1ESPool-Internal')] image: 1es-mariner-2 diff --git a/eng/common/core-templates/post-build/post-build.yml b/eng/common/core-templates/post-build/post-build.yml index 27763a825b9..6f0929c039b 100644 --- a/eng/common/core-templates/post-build/post-build.yml +++ b/eng/common/core-templates/post-build/post-build.yml @@ -305,8 +305,9 @@ stages: PromoteToChannelIds: ${{ parameters.PromoteToChannelIds }} is1ESPipeline: ${{ parameters.is1ESPipeline }} - - task: NuGetAuthenticate@1 # Populate internal runtime variables. + - task: NuGetAuthenticate@1 + # Populate internal runtime variables. - template: /eng/common/templates/steps/enable-internal-sources.yml parameters: legacyCredential: $(dn-bot-dnceng-artifact-feeds-rw) diff --git a/eng/common/core-templates/steps/component-governance.yml b/eng/common/core-templates/steps/component-governance.yml new file mode 100644 index 00000000000..cf0649aa956 --- /dev/null +++ b/eng/common/core-templates/steps/component-governance.yml @@ -0,0 +1,16 @@ +parameters: + disableComponentGovernance: false + componentGovernanceIgnoreDirectories: '' + is1ESPipeline: false + displayName: 'Component Detection' + +steps: +- ${{ if eq(parameters.disableComponentGovernance, 'true') }}: + - script: echo "##vso[task.setvariable variable=skipComponentGovernanceDetection]true" + displayName: Set skipComponentGovernanceDetection variable +- ${{ if ne(parameters.disableComponentGovernance, 'true') }}: + - task: ComponentGovernanceComponentDetection@0 + continueOnError: true + displayName: ${{ parameters.displayName }} + inputs: + ignoreDirectories: ${{ parameters.componentGovernanceIgnoreDirectories }} diff --git a/eng/common/core-templates/steps/generate-sbom.yml b/eng/common/core-templates/steps/generate-sbom.yml index aad0a8aeda3..003f7eae0fa 100644 --- a/eng/common/core-templates/steps/generate-sbom.yml +++ b/eng/common/core-templates/steps/generate-sbom.yml @@ -1,14 +1,54 @@ +# BuildDropPath - The root folder of the drop directory for which the manifest file will be generated. +# PackageName - The name of the package this SBOM represents. +# PackageVersion - The version of the package this SBOM represents. +# ManifestDirPath - The path of the directory where the generated manifest files will be placed +# IgnoreDirectories - Directories to ignore for SBOM generation. This will be passed through to the CG component detector. + parameters: - PackageVersion: unused - BuildDropPath: unused - PackageName: unused - ManifestDirPath: unused - IgnoreDirectories: unused - sbomContinueOnError: unused - is1ESPipeline: unused - publishArtifacts: unused + PackageVersion: 11.0.0 + BuildDropPath: '$(System.DefaultWorkingDirectory)/artifacts' + PackageName: '.NET' + ManifestDirPath: $(Build.ArtifactStagingDirectory)/sbom + IgnoreDirectories: '' + sbomContinueOnError: true + is1ESPipeline: false + # disable publishArtifacts if some other step is publishing the artifacts (like job.yml). + publishArtifacts: true steps: +- task: PowerShell@2 + displayName: Prep for SBOM generation in (Non-linux) + condition: or(eq(variables['Agent.Os'], 'Windows_NT'), eq(variables['Agent.Os'], 'Darwin')) + inputs: + filePath: ./eng/common/generate-sbom-prep.ps1 + arguments: ${{parameters.manifestDirPath}} + +# Chmodding is a workaround for https://github.com/dotnet/arcade/issues/8461 - script: | - echo "##vso[task.logissue type=warning]Including generate-sbom.yml is deprecated, SBOM generation is handled 1ES PT now. Remove this include." - displayName: Issue generate-sbom.yml deprecation warning + chmod +x ./eng/common/generate-sbom-prep.sh + ./eng/common/generate-sbom-prep.sh ${{parameters.manifestDirPath}} + displayName: Prep for SBOM generation in (Linux) + condition: eq(variables['Agent.Os'], 'Linux') + continueOnError: ${{ parameters.sbomContinueOnError }} + +- task: AzureArtifacts.manifest-generator-task.manifest-generator-task.ManifestGeneratorTask@0 + displayName: 'Generate SBOM manifest' + continueOnError: ${{ parameters.sbomContinueOnError }} + inputs: + PackageName: ${{ parameters.packageName }} + BuildDropPath: ${{ parameters.buildDropPath }} + PackageVersion: ${{ parameters.packageVersion }} + ManifestDirPath: ${{ parameters.manifestDirPath }}/$(ARTIFACT_NAME) + ${{ if ne(parameters.IgnoreDirectories, '') }}: + AdditionalComponentDetectorArgs: '--IgnoreDirectories ${{ parameters.IgnoreDirectories }}' + +- ${{ if eq(parameters.publishArtifacts, 'true')}}: + - template: /eng/common/core-templates/steps/publish-pipeline-artifacts.yml + parameters: + is1ESPipeline: ${{ parameters.is1ESPipeline }} + args: + displayName: Publish SBOM manifest + continueOnError: ${{parameters.sbomContinueOnError}} + targetPath: '${{ parameters.manifestDirPath }}' + artifactName: $(ARTIFACT_NAME) + diff --git a/eng/common/core-templates/steps/source-build.yml b/eng/common/core-templates/steps/source-build.yml index 40b6c4c320f..acf16ed3496 100644 --- a/eng/common/core-templates/steps/source-build.yml +++ b/eng/common/core-templates/steps/source-build.yml @@ -62,4 +62,4 @@ steps: artifactName: BuildLogs_SourceBuild_${{ parameters.platform.name }}_Attempt$(System.JobAttempt) continueOnError: true condition: succeededOrFailed() - isProduction: false + sbomEnabled: false # we don't need SBOM for logs diff --git a/eng/common/generate-sbom-prep.ps1 b/eng/common/generate-sbom-prep.ps1 new file mode 100644 index 00000000000..a0c7d792a76 --- /dev/null +++ b/eng/common/generate-sbom-prep.ps1 @@ -0,0 +1,29 @@ +Param( + [Parameter(Mandatory=$true)][string] $ManifestDirPath # Manifest directory where sbom will be placed +) + +. $PSScriptRoot\pipeline-logging-functions.ps1 + +# Normally - we'd listen to the manifest path given, but 1ES templates will overwrite if this level gets uploaded directly +# with their own overwriting ours. So we create it as a sub directory of the requested manifest path. +$ArtifactName = "${env:SYSTEM_STAGENAME}_${env:AGENT_JOBNAME}_SBOM" +$SafeArtifactName = $ArtifactName -replace '["/:<>\\|?@*"() ]', '_' +$SbomGenerationDir = Join-Path $ManifestDirPath $SafeArtifactName + +Write-Host "Artifact name before : $ArtifactName" +Write-Host "Artifact name after : $SafeArtifactName" + +Write-Host "Creating dir $ManifestDirPath" + +# create directory for sbom manifest to be placed +if (!(Test-Path -path $SbomGenerationDir)) +{ + New-Item -ItemType Directory -path $SbomGenerationDir + Write-Host "Successfully created directory $SbomGenerationDir" +} +else{ + Write-PipelineTelemetryError -category 'Build' "Unable to create sbom folder." +} + +Write-Host "Updating artifact name" +Write-Host "##vso[task.setvariable variable=ARTIFACT_NAME]$SafeArtifactName" diff --git a/eng/common/generate-sbom-prep.sh b/eng/common/generate-sbom-prep.sh new file mode 100644 index 00000000000..b8ecca72bbf --- /dev/null +++ b/eng/common/generate-sbom-prep.sh @@ -0,0 +1,39 @@ +#!/usr/bin/env bash + +source="${BASH_SOURCE[0]}" + +# resolve $SOURCE until the file is no longer a symlink +while [[ -h $source ]]; do + scriptroot="$( cd -P "$( dirname "$source" )" && pwd )" + source="$(readlink "$source")" + + # if $source was a relative symlink, we need to resolve it relative to the path where the + # symlink file was located + [[ $source != /* ]] && source="$scriptroot/$source" +done +scriptroot="$( cd -P "$( dirname "$source" )" && pwd )" +. $scriptroot/pipeline-logging-functions.sh + + +# replace all special characters with _, some builds use special characters like : in Agent.Jobname, that is not a permissible name while uploading artifacts. +artifact_name=$SYSTEM_STAGENAME"_"$AGENT_JOBNAME"_SBOM" +safe_artifact_name="${artifact_name//["/:<>\\|?@*$" ]/_}" +manifest_dir=$1 + +# Normally - we'd listen to the manifest path given, but 1ES templates will overwrite if this level gets uploaded directly +# with their own overwriting ours. So we create it as a sub directory of the requested manifest path. +sbom_generation_dir="$manifest_dir/$safe_artifact_name" + +if [ ! -d "$sbom_generation_dir" ] ; then + mkdir -p "$sbom_generation_dir" + echo "Sbom directory created." $sbom_generation_dir +else + Write-PipelineTelemetryError -category 'Build' "Unable to create sbom folder." +fi + +echo "Artifact name before : "$artifact_name +echo "Artifact name after : "$safe_artifact_name +export ARTIFACT_NAME=$safe_artifact_name +echo "##vso[task.setvariable variable=ARTIFACT_NAME]$safe_artifact_name" + +exit 0 diff --git a/eng/common/template-guidance.md b/eng/common/template-guidance.md index e2b07a865f1..4bf4cf41bd7 100644 --- a/eng/common/template-guidance.md +++ b/eng/common/template-guidance.md @@ -82,6 +82,7 @@ eng\common\ publish-build-artifacts.yml (logic) publish-pipeline-artifacts.yml (logic) component-governance.yml (shim) + generate-sbom.yml (shim) publish-logs.yml (shim) retain-build.yml (shim) send-to-helix.yml (shim) @@ -106,6 +107,7 @@ eng\common\ setup-maestro-vars.yml (logic) steps\ component-governance.yml (logic) + generate-sbom.yml (logic) publish-build-artifacts.yml (redirect) publish-logs.yml (logic) publish-pipeline-artifacts.yml (redirect) diff --git a/eng/common/templates-official/job/job.yml b/eng/common/templates-official/job/job.yml index fed3caaea70..92a0664f564 100644 --- a/eng/common/templates-official/job/job.yml +++ b/eng/common/templates-official/job/job.yml @@ -1,15 +1,24 @@ parameters: +# Sbom related params + enableSbom: true runAsPublic: false -# Sbom related params, unused now and can eventually be removed - enableSbom: unused - PackageVersion: unused - BuildDropPath: unused + PackageVersion: 9.0.0 + BuildDropPath: '$(System.DefaultWorkingDirectory)/artifacts' jobs: - template: /eng/common/core-templates/job/job.yml parameters: is1ESPipeline: true + componentGovernanceSteps: + - ${{ if and(eq(parameters.runAsPublic, 'false'), ne(variables['System.TeamProject'], 'public'), notin(variables['Build.Reason'], 'PullRequest'), eq(parameters.enableSbom, 'true')) }}: + - template: /eng/common/templates/steps/generate-sbom.yml + parameters: + PackageVersion: ${{ parameters.packageVersion }} + BuildDropPath: ${{ parameters.buildDropPath }} + ManifestDirPath: $(Build.ArtifactStagingDirectory)/sbom + publishArtifacts: false + # publish artifacts # for 1ES managed templates, use the templateContext.output to handle multiple outputs. templateContext: @@ -32,7 +41,7 @@ jobs: continueOnError: true condition: always() retryCountOnTaskFailure: 10 # for any logs being locked - isProduction: false + sbomEnabled: false # we don't need SBOM for logs - ${{ if eq(parameters.enablePublishBuildArtifacts, true) }}: - output: buildArtifacts @@ -42,7 +51,7 @@ jobs: ArtifactName: ${{ coalesce(parameters.enablePublishBuildArtifacts.artifactName, '$(Agent.Os)_$(Agent.JobName)_Attempt$(System.JobAttempt)' ) }} continueOnError: true condition: always() - #isProduction: false + sbomEnabled: false # we don't need SBOM for logs - ${{ if eq(parameters.enableBuildRetry, 'true') }}: - output: pipelineArtifact @@ -50,7 +59,14 @@ jobs: artifactName: 'BuildConfiguration' displayName: 'Publish build retry configuration' continueOnError: true - isProduction: false + sbomEnabled: false # we don't need SBOM for BuildConfiguration + + - ${{ if and(eq(parameters.runAsPublic, 'false'), ne(variables['System.TeamProject'], 'public'), notin(variables['Build.Reason'], 'PullRequest'), eq(parameters.enableSbom, 'true')) }}: + - output: pipelineArtifact + displayName: Publish SBOM manifest + continueOnError: true + targetPath: $(Build.ArtifactStagingDirectory)/sbom + artifactName: $(ARTIFACT_NAME) # add any outputs provided via root yaml - ${{ if ne(parameters.templateContext.outputs, '') }}: diff --git a/eng/common/templates-official/steps/component-governance.yml b/eng/common/templates-official/steps/component-governance.yml new file mode 100644 index 00000000000..30bb3985ca2 --- /dev/null +++ b/eng/common/templates-official/steps/component-governance.yml @@ -0,0 +1,7 @@ +steps: +- template: /eng/common/core-templates/steps/component-governance.yml + parameters: + is1ESPipeline: true + + ${{ each parameter in parameters }}: + ${{ parameter.key }}: ${{ parameter.value }} diff --git a/eng/common/templates-official/steps/publish-pipeline-artifacts.yml b/eng/common/templates-official/steps/publish-pipeline-artifacts.yml index 6a652ae1cfe..172f9f0fdc9 100644 --- a/eng/common/templates-official/steps/publish-pipeline-artifacts.yml +++ b/eng/common/templates-official/steps/publish-pipeline-artifacts.yml @@ -26,5 +26,3 @@ steps: properties: ${{ parameters.args.properties }} ${{ if parameters.args.sbomEnabled }}: sbomEnabled: ${{ parameters.args.sbomEnabled }} - ${{ if parameters.args.isProduction }}: - isProduction: ${{ parameters.args.isProduction }} diff --git a/eng/common/templates/job/job.yml b/eng/common/templates/job/job.yml index d1b2352798f..238fa0818f7 100644 --- a/eng/common/templates/job/job.yml +++ b/eng/common/templates/job/job.yml @@ -1,12 +1,12 @@ parameters: enablePublishBuildArtifacts: false + disableComponentGovernance: '' + componentGovernanceIgnoreDirectories: '' +# Sbom related params + enableSbom: true runAsPublic: false -# CG related params, unused now and can eventually be removed - disableComponentGovernance: unused -# Sbom related params, unused now and can eventually be removed - enableSbom: unused - PackageVersion: unused - BuildDropPath: unused + PackageVersion: 9.0.0 + BuildDropPath: '$(System.DefaultWorkingDirectory)/artifacts' jobs: - template: /eng/common/core-templates/job/job.yml @@ -21,10 +21,17 @@ jobs: - ${{ each step in parameters.steps }}: - ${{ step }} - # we don't run CG in public - - ${{ if eq(variables['System.TeamProject'], 'public') }}: - - script: echo "##vso[task.setvariable variable=skipComponentGovernanceDetection]true" - displayName: Set skipComponentGovernanceDetection variable + componentGovernanceSteps: + - template: /eng/common/templates/steps/component-governance.yml + parameters: + ${{ if eq(parameters.disableComponentGovernance, '') }}: + ${{ if and(ne(variables['System.TeamProject'], 'public'), notin(variables['Build.Reason'], 'PullRequest'), eq(parameters.runAsPublic, 'false'), or(startsWith(variables['Build.SourceBranch'], 'refs/heads/release/'), startsWith(variables['Build.SourceBranch'], 'refs/heads/dotnet/'), startsWith(variables['Build.SourceBranch'], 'refs/heads/microsoft/'), eq(variables['Build.SourceBranch'], 'refs/heads/main'))) }}: + disableComponentGovernance: false + ${{ else }}: + disableComponentGovernance: true + ${{ else }}: + disableComponentGovernance: ${{ parameters.disableComponentGovernance }} + componentGovernanceIgnoreDirectories: ${{ parameters.componentGovernanceIgnoreDirectories }} artifactPublishSteps: - ${{ if ne(parameters.artifacts.publish, '') }}: @@ -51,7 +58,7 @@ jobs: continueOnError: true condition: always() retryCountOnTaskFailure: 10 # for any logs being locked - isProduction: false + sbomEnabled: false # we don't need SBOM for logs - ${{ if ne(parameters.enablePublishBuildArtifacts, 'false') }}: - template: /eng/common/core-templates/steps/publish-build-artifacts.yml @@ -74,4 +81,4 @@ jobs: artifactName: 'BuildConfiguration' displayName: 'Publish build retry configuration' continueOnError: true - isProduction: false + sbomEnabled: false # we don't need SBOM for BuildConfiguration diff --git a/eng/common/templates/steps/component-governance.yml b/eng/common/templates/steps/component-governance.yml new file mode 100644 index 00000000000..c12a5f8d21d --- /dev/null +++ b/eng/common/templates/steps/component-governance.yml @@ -0,0 +1,7 @@ +steps: +- template: /eng/common/core-templates/steps/component-governance.yml + parameters: + is1ESPipeline: false + + ${{ each parameter in parameters }}: + ${{ parameter.key }}: ${{ parameter.value }} diff --git a/global.json b/global.json index 324a5d986b5..a373f5fad3f 100644 --- a/global.json +++ b/global.json @@ -8,8 +8,8 @@ "dotnet": "10.0.100-rc.2.25502.107" }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "11.0.0-beta.25569.110", - "Microsoft.DotNet.Helix.Sdk": "11.0.0-beta.25569.110" + "Microsoft.DotNet.Arcade.Sdk": "11.0.0-beta.25570.101", + "Microsoft.DotNet.Helix.Sdk": "11.0.0-beta.25570.101" }, "native-tools": { "python3": "3.7.1" From 853dfb580648ac590d4162a6794c4c7881830bd8 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Fri, 21 Nov 2025 04:23:20 +0000 Subject: [PATCH 18/39] Update dependencies from https://github.com/dotnet/dotnet build 20251120.9 On relative base path root Microsoft.DotNet.Arcade.Sdk , Microsoft.DotNet.Helix.Sdk From Version 11.0.0-beta.25555.107 -> To Version 11.0.0-beta.25570.109 Microsoft.Extensions.Logging , Microsoft.NET.ILLink , Microsoft.NET.ILLink.Tasks , Microsoft.NET.Runtime.Emscripten.3.1.56.Node.win-x64 , Microsoft.NETCore.App.Ref , Microsoft.WindowsDesktop.App.Ref , System.Threading.Channels From Version 10.0.0-rc.1.25555.107 -> To Version 10.0.0-rc.3.25570.109 Microsoft.NET.Sdk From Version 10.0.100-rc.2.25555.107 -> To Version 10.0.100-rc.3.25570.109 --- eng/Version.Details.xml | 40 ++++++++++++++++++++-------------------- eng/Versions.props | 10 +++++----- global.json | 4 ++-- 3 files changed, 27 insertions(+), 27 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 43f355f91c9..ed402563f6c 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,39 +1,39 @@ - + https://github.com/dotnet/dotnet - e9a2ab63ad60de1afff34ddc3f09257093ea034a + 814a68562ae2df4e716cc0022394703aa6dc6258 - + https://github.com/dotnet/dotnet - e9a2ab63ad60de1afff34ddc3f09257093ea034a + 814a68562ae2df4e716cc0022394703aa6dc6258 - + https://github.com/dotnet/dotnet - e9a2ab63ad60de1afff34ddc3f09257093ea034a + 814a68562ae2df4e716cc0022394703aa6dc6258 - + https://github.com/dotnet/dotnet - e9a2ab63ad60de1afff34ddc3f09257093ea034a + 814a68562ae2df4e716cc0022394703aa6dc6258 - + https://github.com/dotnet/dotnet - e9a2ab63ad60de1afff34ddc3f09257093ea034a + 814a68562ae2df4e716cc0022394703aa6dc6258 - + https://github.com/dotnet/dotnet - e9a2ab63ad60de1afff34ddc3f09257093ea034a + 814a68562ae2df4e716cc0022394703aa6dc6258 - + https://github.com/dotnet/dotnet - e9a2ab63ad60de1afff34ddc3f09257093ea034a + 814a68562ae2df4e716cc0022394703aa6dc6258 - + https://github.com/dotnet/dotnet - e9a2ab63ad60de1afff34ddc3f09257093ea034a + 814a68562ae2df4e716cc0022394703aa6dc6258 https://github.com/dotnet/xharness @@ -55,12 +55,12 @@ 88c2c7ae772437921d85186318dd4320c4848618 https://github.com/dotnet/maui - - e9a2ab63ad60de1afff34ddc3f09257093ea034a + + 814a68562ae2df4e716cc0022394703aa6dc6258 https://github.com/dotnet/dotnet - - e9a2ab63ad60de1afff34ddc3f09257093ea034a + + 814a68562ae2df4e716cc0022394703aa6dc6258 https://github.com/dotnet/dotnet diff --git a/eng/Versions.props b/eng/Versions.props index 13e34325741..abb88af39d8 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -7,12 +7,12 @@ - 10.0.0-rc.3.25570.101 - 10.0.0-rc.3.25570.101 - 10.0.0-rc.3.25570.101 - 10.0.0-rc.3.25570.101 + 10.0.0-rc.3.25570.109 + 10.0.0-rc.3.25570.109 + 10.0.0-rc.3.25570.109 + 10.0.0-rc.3.25570.109 0.14.1-nightly.20250107.205 - 10.0.0-rc.3.25570.101 + 10.0.0-rc.3.25570.109 10.0.0-prerelease.25475.1 diff --git a/global.json b/global.json index a373f5fad3f..9f8c9b13845 100644 --- a/global.json +++ b/global.json @@ -8,8 +8,8 @@ "dotnet": "10.0.100-rc.2.25502.107" }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "11.0.0-beta.25570.101", - "Microsoft.DotNet.Helix.Sdk": "11.0.0-beta.25570.101" + "Microsoft.DotNet.Arcade.Sdk": "11.0.0-beta.25570.109", + "Microsoft.DotNet.Helix.Sdk": "11.0.0-beta.25570.109" }, "native-tools": { "python3": "3.7.1" From aa317af811acbbbf3d163cb604a02c0962082601 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Fri, 21 Nov 2025 09:03:09 +0000 Subject: [PATCH 19/39] Update dependencies from https://github.com/dotnet/dotnet build 20251120.11 On relative base path root Microsoft.DotNet.Arcade.Sdk , Microsoft.DotNet.Helix.Sdk From Version 11.0.0-beta.25555.107 -> To Version 11.0.0-beta.25570.111 Microsoft.Extensions.Logging , Microsoft.NET.ILLink , Microsoft.NET.ILLink.Tasks , Microsoft.NET.Runtime.Emscripten.3.1.56.Node.win-x64 , Microsoft.NETCore.App.Ref , Microsoft.WindowsDesktop.App.Ref , System.Threading.Channels From Version 10.0.0-rc.1.25555.107 -> To Version 10.0.0-rc.3.25570.111 Microsoft.NET.Sdk From Version 10.0.100-rc.2.25555.107 -> To Version 10.0.100-rc.3.25570.111 --- eng/Version.Details.xml | 40 ++++++++++++++++++++-------------------- eng/Versions.props | 10 +++++----- global.json | 4 ++-- 3 files changed, 27 insertions(+), 27 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index ed402563f6c..44f7e02697d 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,39 +1,39 @@ - + https://github.com/dotnet/dotnet - 814a68562ae2df4e716cc0022394703aa6dc6258 + 73f1996bebbb1c466b28e44c65e1d96ad871b308 - + https://github.com/dotnet/dotnet - 814a68562ae2df4e716cc0022394703aa6dc6258 + 73f1996bebbb1c466b28e44c65e1d96ad871b308 - + https://github.com/dotnet/dotnet - 814a68562ae2df4e716cc0022394703aa6dc6258 + 73f1996bebbb1c466b28e44c65e1d96ad871b308 - + https://github.com/dotnet/dotnet - 814a68562ae2df4e716cc0022394703aa6dc6258 + 73f1996bebbb1c466b28e44c65e1d96ad871b308 - + https://github.com/dotnet/dotnet - 814a68562ae2df4e716cc0022394703aa6dc6258 + 73f1996bebbb1c466b28e44c65e1d96ad871b308 - + https://github.com/dotnet/dotnet - 814a68562ae2df4e716cc0022394703aa6dc6258 + 73f1996bebbb1c466b28e44c65e1d96ad871b308 - + https://github.com/dotnet/dotnet - 814a68562ae2df4e716cc0022394703aa6dc6258 + 73f1996bebbb1c466b28e44c65e1d96ad871b308 - + https://github.com/dotnet/dotnet - 814a68562ae2df4e716cc0022394703aa6dc6258 + 73f1996bebbb1c466b28e44c65e1d96ad871b308 https://github.com/dotnet/xharness @@ -55,12 +55,12 @@ 88c2c7ae772437921d85186318dd4320c4848618 https://github.com/dotnet/maui - - 814a68562ae2df4e716cc0022394703aa6dc6258 + + 73f1996bebbb1c466b28e44c65e1d96ad871b308 https://github.com/dotnet/dotnet - - 814a68562ae2df4e716cc0022394703aa6dc6258 + + 73f1996bebbb1c466b28e44c65e1d96ad871b308 https://github.com/dotnet/dotnet diff --git a/eng/Versions.props b/eng/Versions.props index abb88af39d8..c947304c026 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -7,12 +7,12 @@ - 10.0.0-rc.3.25570.109 - 10.0.0-rc.3.25570.109 - 10.0.0-rc.3.25570.109 - 10.0.0-rc.3.25570.109 + 10.0.0-rc.3.25570.111 + 10.0.0-rc.3.25570.111 + 10.0.0-rc.3.25570.111 + 10.0.0-rc.3.25570.111 0.14.1-nightly.20250107.205 - 10.0.0-rc.3.25570.109 + 10.0.0-rc.3.25570.111 10.0.0-prerelease.25475.1 diff --git a/global.json b/global.json index 9f8c9b13845..99c8df9fca5 100644 --- a/global.json +++ b/global.json @@ -8,8 +8,8 @@ "dotnet": "10.0.100-rc.2.25502.107" }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "11.0.0-beta.25570.109", - "Microsoft.DotNet.Helix.Sdk": "11.0.0-beta.25570.109" + "Microsoft.DotNet.Arcade.Sdk": "11.0.0-beta.25570.111", + "Microsoft.DotNet.Helix.Sdk": "11.0.0-beta.25570.111" }, "native-tools": { "python3": "3.7.1" From 5fffb8e977ffbd16f97e321a140ad12593a5e80c Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Fri, 21 Nov 2025 15:47:32 +0000 Subject: [PATCH 20/39] Update dependencies from https://github.com/dotnet/dotnet build 20251121.4 On relative base path root Microsoft.DotNet.Arcade.Sdk , Microsoft.DotNet.Helix.Sdk From Version 11.0.0-beta.25555.107 -> To Version 11.0.0-beta.25571.104 Microsoft.Extensions.Logging , Microsoft.NET.ILLink , Microsoft.NET.ILLink.Tasks , Microsoft.NET.Runtime.Emscripten.3.1.56.Node.win-x64 , Microsoft.NETCore.App.Ref , Microsoft.WindowsDesktop.App.Ref , System.Threading.Channels From Version 10.0.0-rc.1.25555.107 -> To Version 10.0.0-rc.3.25571.104 Microsoft.NET.Sdk From Version 10.0.100-rc.2.25555.107 -> To Version 10.0.100-rc.3.25571.104 --- eng/Version.Details.xml | 40 ++++++++++++++++++++-------------------- eng/Versions.props | 10 +++++----- global.json | 4 ++-- 3 files changed, 27 insertions(+), 27 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 44f7e02697d..81fc9352632 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,39 +1,39 @@ - + https://github.com/dotnet/dotnet - 73f1996bebbb1c466b28e44c65e1d96ad871b308 + a38a5238714bcb6f228f0e3743c93a7c37bf9cad - + https://github.com/dotnet/dotnet - 73f1996bebbb1c466b28e44c65e1d96ad871b308 + a38a5238714bcb6f228f0e3743c93a7c37bf9cad - + https://github.com/dotnet/dotnet - 73f1996bebbb1c466b28e44c65e1d96ad871b308 + a38a5238714bcb6f228f0e3743c93a7c37bf9cad - + https://github.com/dotnet/dotnet - 73f1996bebbb1c466b28e44c65e1d96ad871b308 + a38a5238714bcb6f228f0e3743c93a7c37bf9cad - + https://github.com/dotnet/dotnet - 73f1996bebbb1c466b28e44c65e1d96ad871b308 + a38a5238714bcb6f228f0e3743c93a7c37bf9cad - + https://github.com/dotnet/dotnet - 73f1996bebbb1c466b28e44c65e1d96ad871b308 + a38a5238714bcb6f228f0e3743c93a7c37bf9cad - + https://github.com/dotnet/dotnet - 73f1996bebbb1c466b28e44c65e1d96ad871b308 + a38a5238714bcb6f228f0e3743c93a7c37bf9cad - + https://github.com/dotnet/dotnet - 73f1996bebbb1c466b28e44c65e1d96ad871b308 + a38a5238714bcb6f228f0e3743c93a7c37bf9cad https://github.com/dotnet/xharness @@ -55,12 +55,12 @@ 88c2c7ae772437921d85186318dd4320c4848618 https://github.com/dotnet/maui - - 73f1996bebbb1c466b28e44c65e1d96ad871b308 + + a38a5238714bcb6f228f0e3743c93a7c37bf9cad https://github.com/dotnet/dotnet - - 73f1996bebbb1c466b28e44c65e1d96ad871b308 + + a38a5238714bcb6f228f0e3743c93a7c37bf9cad https://github.com/dotnet/dotnet diff --git a/eng/Versions.props b/eng/Versions.props index c947304c026..df392e5a2b2 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -7,12 +7,12 @@ - 10.0.0-rc.3.25570.111 - 10.0.0-rc.3.25570.111 - 10.0.0-rc.3.25570.111 - 10.0.0-rc.3.25570.111 + 10.0.0-rc.3.25571.104 + 10.0.0-rc.3.25571.104 + 10.0.0-rc.3.25571.104 + 10.0.0-rc.3.25571.104 0.14.1-nightly.20250107.205 - 10.0.0-rc.3.25570.111 + 10.0.0-rc.3.25571.104 10.0.0-prerelease.25475.1 diff --git a/global.json b/global.json index 99c8df9fca5..8921647e676 100644 --- a/global.json +++ b/global.json @@ -8,8 +8,8 @@ "dotnet": "10.0.100-rc.2.25502.107" }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "11.0.0-beta.25570.111", - "Microsoft.DotNet.Helix.Sdk": "11.0.0-beta.25570.111" + "Microsoft.DotNet.Arcade.Sdk": "11.0.0-beta.25571.104", + "Microsoft.DotNet.Helix.Sdk": "11.0.0-beta.25571.104" }, "native-tools": { "python3": "3.7.1" From dc98f5d9dea8c2aebe984c8f48378876cd50c22e Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Fri, 21 Nov 2025 23:24:37 +0000 Subject: [PATCH 21/39] Update dependencies from https://github.com/dotnet/dotnet build 20251121.9 On relative base path root Microsoft.DotNet.Arcade.Sdk , Microsoft.DotNet.Helix.Sdk From Version 11.0.0-beta.25555.107 -> To Version 11.0.0-beta.25571.109 Microsoft.Extensions.Logging , Microsoft.NET.ILLink , Microsoft.NET.ILLink.Tasks , Microsoft.NET.Runtime.Emscripten.3.1.56.Node.win-x64 , Microsoft.NETCore.App.Ref , Microsoft.WindowsDesktop.App.Ref , System.Threading.Channels From Version 10.0.0-rc.1.25555.107 -> To Version 10.0.0-rc.3.25571.109 Microsoft.NET.Sdk From Version 10.0.100-rc.2.25555.107 -> To Version 10.0.100-rc.3.25571.109 --- eng/Version.Details.xml | 40 +++++++++---------- eng/Versions.props | 10 ++--- .../core-templates/job/source-build.yml | 2 +- global.json | 4 +- 4 files changed, 28 insertions(+), 28 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 81fc9352632..77d863926ed 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,39 +1,39 @@ - + https://github.com/dotnet/dotnet - a38a5238714bcb6f228f0e3743c93a7c37bf9cad + cc7f6e84d8dae36ad9ea51a5112627b8235982cc - + https://github.com/dotnet/dotnet - a38a5238714bcb6f228f0e3743c93a7c37bf9cad + cc7f6e84d8dae36ad9ea51a5112627b8235982cc - + https://github.com/dotnet/dotnet - a38a5238714bcb6f228f0e3743c93a7c37bf9cad + cc7f6e84d8dae36ad9ea51a5112627b8235982cc - + https://github.com/dotnet/dotnet - a38a5238714bcb6f228f0e3743c93a7c37bf9cad + cc7f6e84d8dae36ad9ea51a5112627b8235982cc - + https://github.com/dotnet/dotnet - a38a5238714bcb6f228f0e3743c93a7c37bf9cad + cc7f6e84d8dae36ad9ea51a5112627b8235982cc - + https://github.com/dotnet/dotnet - a38a5238714bcb6f228f0e3743c93a7c37bf9cad + cc7f6e84d8dae36ad9ea51a5112627b8235982cc - + https://github.com/dotnet/dotnet - a38a5238714bcb6f228f0e3743c93a7c37bf9cad + cc7f6e84d8dae36ad9ea51a5112627b8235982cc - + https://github.com/dotnet/dotnet - a38a5238714bcb6f228f0e3743c93a7c37bf9cad + cc7f6e84d8dae36ad9ea51a5112627b8235982cc https://github.com/dotnet/xharness @@ -55,12 +55,12 @@ 88c2c7ae772437921d85186318dd4320c4848618 https://github.com/dotnet/maui - - a38a5238714bcb6f228f0e3743c93a7c37bf9cad + + cc7f6e84d8dae36ad9ea51a5112627b8235982cc https://github.com/dotnet/dotnet - - a38a5238714bcb6f228f0e3743c93a7c37bf9cad + + cc7f6e84d8dae36ad9ea51a5112627b8235982cc https://github.com/dotnet/dotnet diff --git a/eng/Versions.props b/eng/Versions.props index df392e5a2b2..b3b5fb7fc50 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -7,12 +7,12 @@ - 10.0.0-rc.3.25571.104 - 10.0.0-rc.3.25571.104 - 10.0.0-rc.3.25571.104 - 10.0.0-rc.3.25571.104 + 10.0.0-rc.3.25571.109 + 10.0.0-rc.3.25571.109 + 10.0.0-rc.3.25571.109 + 10.0.0-rc.3.25571.109 0.14.1-nightly.20250107.205 - 10.0.0-rc.3.25571.104 + 10.0.0-rc.3.25571.109 10.0.0-prerelease.25475.1 diff --git a/eng/common/core-templates/job/source-build.yml b/eng/common/core-templates/job/source-build.yml index 9f6b3ee9e46..9d820f97421 100644 --- a/eng/common/core-templates/job/source-build.yml +++ b/eng/common/core-templates/job/source-build.yml @@ -63,7 +63,7 @@ jobs: demands: ImageOverride -equals build.ubuntu.2204.amd64 ${{ if eq(variables['System.TeamProject'], 'internal') }}: name: $[replace(replace(eq(contains(coalesce(variables['System.PullRequest.TargetBranch'], variables['Build.SourceBranch'], 'refs/heads/main'), 'release'), 'true'), True, 'NetCore1ESPool-Svc-Internal'), False, 'NetCore1ESPool-Internal')] - image: 1es-mariner-2 + image: 1es-azurelinux-3 os: linux ${{ else }}: pool: diff --git a/global.json b/global.json index 8921647e676..c076e6edd9d 100644 --- a/global.json +++ b/global.json @@ -8,8 +8,8 @@ "dotnet": "10.0.100-rc.2.25502.107" }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "11.0.0-beta.25571.104", - "Microsoft.DotNet.Helix.Sdk": "11.0.0-beta.25571.104" + "Microsoft.DotNet.Arcade.Sdk": "11.0.0-beta.25571.109", + "Microsoft.DotNet.Helix.Sdk": "11.0.0-beta.25571.109" }, "native-tools": { "python3": "3.7.1" From 01c321239b4d7fecf7ec4cc6bd4a92b91b1973c4 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Mon, 24 Nov 2025 17:16:44 +0000 Subject: [PATCH 22/39] Update dependencies from https://github.com/dotnet/dotnet build 20251124.1 On relative base path root Microsoft.DotNet.Arcade.Sdk , Microsoft.DotNet.Helix.Sdk From Version 11.0.0-beta.25555.107 -> To Version 11.0.0-beta.25574.101 Microsoft.Extensions.Logging , Microsoft.NET.ILLink , Microsoft.NET.ILLink.Tasks , Microsoft.NET.Runtime.Emscripten.3.1.56.Node.win-x64 , Microsoft.NETCore.App.Ref , Microsoft.WindowsDesktop.App.Ref , System.Threading.Channels From Version 10.0.0-rc.1.25555.107 -> To Version 10.0.0-rc.3.25574.101 Microsoft.NET.Sdk From Version 10.0.100-rc.2.25555.107 -> To Version 10.0.100-rc.3.25574.101 --- eng/Version.Details.xml | 40 ++++++++++++++++++++-------------------- eng/Versions.props | 10 +++++----- global.json | 4 ++-- 3 files changed, 27 insertions(+), 27 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 77d863926ed..67fe090bab5 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,39 +1,39 @@ - + https://github.com/dotnet/dotnet - cc7f6e84d8dae36ad9ea51a5112627b8235982cc + 1ee45853cdb0e46cc94de73620f87a8c4c968ab0 - + https://github.com/dotnet/dotnet - cc7f6e84d8dae36ad9ea51a5112627b8235982cc + 1ee45853cdb0e46cc94de73620f87a8c4c968ab0 - + https://github.com/dotnet/dotnet - cc7f6e84d8dae36ad9ea51a5112627b8235982cc + 1ee45853cdb0e46cc94de73620f87a8c4c968ab0 - + https://github.com/dotnet/dotnet - cc7f6e84d8dae36ad9ea51a5112627b8235982cc + 1ee45853cdb0e46cc94de73620f87a8c4c968ab0 - + https://github.com/dotnet/dotnet - cc7f6e84d8dae36ad9ea51a5112627b8235982cc + 1ee45853cdb0e46cc94de73620f87a8c4c968ab0 - + https://github.com/dotnet/dotnet - cc7f6e84d8dae36ad9ea51a5112627b8235982cc + 1ee45853cdb0e46cc94de73620f87a8c4c968ab0 - + https://github.com/dotnet/dotnet - cc7f6e84d8dae36ad9ea51a5112627b8235982cc + 1ee45853cdb0e46cc94de73620f87a8c4c968ab0 - + https://github.com/dotnet/dotnet - cc7f6e84d8dae36ad9ea51a5112627b8235982cc + 1ee45853cdb0e46cc94de73620f87a8c4c968ab0 https://github.com/dotnet/xharness @@ -55,12 +55,12 @@ 88c2c7ae772437921d85186318dd4320c4848618 https://github.com/dotnet/maui - - cc7f6e84d8dae36ad9ea51a5112627b8235982cc + + 1ee45853cdb0e46cc94de73620f87a8c4c968ab0 https://github.com/dotnet/dotnet - - cc7f6e84d8dae36ad9ea51a5112627b8235982cc + + 1ee45853cdb0e46cc94de73620f87a8c4c968ab0 https://github.com/dotnet/dotnet diff --git a/eng/Versions.props b/eng/Versions.props index b3b5fb7fc50..7d25a582e84 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -7,12 +7,12 @@ - 10.0.0-rc.3.25571.109 - 10.0.0-rc.3.25571.109 - 10.0.0-rc.3.25571.109 - 10.0.0-rc.3.25571.109 + 10.0.0-rc.3.25574.101 + 10.0.0-rc.3.25574.101 + 10.0.0-rc.3.25574.101 + 10.0.0-rc.3.25574.101 0.14.1-nightly.20250107.205 - 10.0.0-rc.3.25571.109 + 10.0.0-rc.3.25574.101 10.0.0-prerelease.25475.1 diff --git a/global.json b/global.json index c076e6edd9d..91a00d090e2 100644 --- a/global.json +++ b/global.json @@ -8,8 +8,8 @@ "dotnet": "10.0.100-rc.2.25502.107" }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "11.0.0-beta.25571.109", - "Microsoft.DotNet.Helix.Sdk": "11.0.0-beta.25571.109" + "Microsoft.DotNet.Arcade.Sdk": "11.0.0-beta.25574.101", + "Microsoft.DotNet.Helix.Sdk": "11.0.0-beta.25574.101" }, "native-tools": { "python3": "3.7.1" From 1cc8e48a916342034c2c264b6673fb11bcd95a0e Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Mon, 24 Nov 2025 23:40:31 +0000 Subject: [PATCH 23/39] Update dependencies from https://github.com/dotnet/dotnet build 20251124.8 On relative base path root Microsoft.DotNet.Arcade.Sdk , Microsoft.DotNet.Helix.Sdk From Version 11.0.0-beta.25555.107 -> To Version 11.0.0-beta.25574.108 Microsoft.Extensions.Logging , Microsoft.NET.ILLink , Microsoft.NET.ILLink.Tasks , Microsoft.NET.Runtime.Emscripten.3.1.56.Node.win-x64 , Microsoft.NETCore.App.Ref , Microsoft.WindowsDesktop.App.Ref , System.Threading.Channels From Version 10.0.0-rc.1.25555.107 -> To Version 10.0.0-rc.3.25574.108 Microsoft.NET.Sdk From Version 10.0.100-rc.2.25555.107 -> To Version 10.0.100-rc.3.25574.108 --- eng/Version.Details.xml | 40 +++++++++---------- eng/Versions.props | 10 ++--- .../steps/install-microbuild.yml | 29 +++++++++++--- global.json | 4 +- 4 files changed, 51 insertions(+), 32 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 67fe090bab5..85088016f98 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,39 +1,39 @@ - + https://github.com/dotnet/dotnet - 1ee45853cdb0e46cc94de73620f87a8c4c968ab0 + d119b40e8ff3b88f87ad60b04c807233a159b197 - + https://github.com/dotnet/dotnet - 1ee45853cdb0e46cc94de73620f87a8c4c968ab0 + d119b40e8ff3b88f87ad60b04c807233a159b197 - + https://github.com/dotnet/dotnet - 1ee45853cdb0e46cc94de73620f87a8c4c968ab0 + d119b40e8ff3b88f87ad60b04c807233a159b197 - + https://github.com/dotnet/dotnet - 1ee45853cdb0e46cc94de73620f87a8c4c968ab0 + d119b40e8ff3b88f87ad60b04c807233a159b197 - + https://github.com/dotnet/dotnet - 1ee45853cdb0e46cc94de73620f87a8c4c968ab0 + d119b40e8ff3b88f87ad60b04c807233a159b197 - + https://github.com/dotnet/dotnet - 1ee45853cdb0e46cc94de73620f87a8c4c968ab0 + d119b40e8ff3b88f87ad60b04c807233a159b197 - + https://github.com/dotnet/dotnet - 1ee45853cdb0e46cc94de73620f87a8c4c968ab0 + d119b40e8ff3b88f87ad60b04c807233a159b197 - + https://github.com/dotnet/dotnet - 1ee45853cdb0e46cc94de73620f87a8c4c968ab0 + d119b40e8ff3b88f87ad60b04c807233a159b197 https://github.com/dotnet/xharness @@ -55,12 +55,12 @@ 88c2c7ae772437921d85186318dd4320c4848618 https://github.com/dotnet/maui - - 1ee45853cdb0e46cc94de73620f87a8c4c968ab0 + + d119b40e8ff3b88f87ad60b04c807233a159b197 https://github.com/dotnet/dotnet - - 1ee45853cdb0e46cc94de73620f87a8c4c968ab0 + + d119b40e8ff3b88f87ad60b04c807233a159b197 https://github.com/dotnet/dotnet diff --git a/eng/Versions.props b/eng/Versions.props index 7d25a582e84..85e54591bc3 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -7,12 +7,12 @@ - 10.0.0-rc.3.25574.101 - 10.0.0-rc.3.25574.101 - 10.0.0-rc.3.25574.101 - 10.0.0-rc.3.25574.101 + 10.0.0-rc.3.25574.108 + 10.0.0-rc.3.25574.108 + 10.0.0-rc.3.25574.108 + 10.0.0-rc.3.25574.108 0.14.1-nightly.20250107.205 - 10.0.0-rc.3.25574.101 + 10.0.0-rc.3.25574.108 10.0.0-prerelease.25475.1 diff --git a/eng/common/core-templates/steps/install-microbuild.yml b/eng/common/core-templates/steps/install-microbuild.yml index bdebec0eaa9..4f4b56ed2a6 100644 --- a/eng/common/core-templates/steps/install-microbuild.yml +++ b/eng/common/core-templates/steps/install-microbuild.yml @@ -13,9 +13,8 @@ parameters: # Unfortunately, _SignType can't be used to exclude the use of the service connection in non-real sign scenarios. The # variable is not available in template expression. _SignType has a very large proliferation across .NET, so replacing it is tough. microbuildUseESRP: true - # Location of the MicroBuild output folder - # NOTE: There's something that relies on this being in the "default" source directory for tasks such as Signing to work properly. - microBuildOutputFolder: '$(Build.SourcesDirectory)' + # Microbuild installation directory + microBuildOutputFolder: $(Agent.TempDirectory)/MicroBuild # Microbuild version microbuildPluginVersion: 'latest' @@ -30,8 +29,27 @@ steps: inputs: packageType: sdk version: 8.0.x - installationPath: ${{ parameters.microBuildOutputFolder }}/.dotnet - workingDirectory: ${{ parameters.microBuildOutputFolder }} + installationPath: ${{ parameters.microBuildOutputFolder }}/.dotnet-microbuild + condition: and(succeeded(), ne(variables['Agent.Os'], 'Windows_NT')) + + - script: | + set -euo pipefail + + # UseDotNet@2 prepends the dotnet executable path to the PATH variable, so we can call dotnet directly + version=$(dotnet --version) + cat << 'EOF' > ${{ parameters.microBuildOutputFolder }}/global.json + { + "sdk": { + "version": "$version", + "paths": [ + "${{ parameters.microBuildOutputFolder }}/.dotnet-microbuild" + ], + "errorMessage": "The .NET SDK version $version is required to install the MicroBuild signing plugin." + } + } + EOF + displayName: 'Add global.json to MicroBuild Installation path' + workingDirectory: ${{ parameters.microBuildOutputFolder }} condition: and(succeeded(), ne(variables['Agent.Os'], 'Windows_NT')) - script: | @@ -85,6 +103,7 @@ steps: zipSources: false feedSource: https://dnceng.pkgs.visualstudio.com/_packaging/MicroBuildToolset/nuget/v3/index.json version: ${{ parameters.microbuildPluginVersion }} + workingDirectory: ${{ parameters.microBuildOutputFolder }} ${{ if eq(parameters.microbuildUseESRP, true) }}: ConnectedServiceName: 'MicroBuild Signing Task (DevDiv)' ${{ if eq(variables['System.TeamProject'], 'DevDiv') }}: diff --git a/global.json b/global.json index 91a00d090e2..3f99fcfdb8a 100644 --- a/global.json +++ b/global.json @@ -8,8 +8,8 @@ "dotnet": "10.0.100-rc.2.25502.107" }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "11.0.0-beta.25574.101", - "Microsoft.DotNet.Helix.Sdk": "11.0.0-beta.25574.101" + "Microsoft.DotNet.Arcade.Sdk": "11.0.0-beta.25574.108", + "Microsoft.DotNet.Helix.Sdk": "11.0.0-beta.25574.108" }, "native-tools": { "python3": "3.7.1" From 69944ca74c9fb669ca374236ad12667af2ead9ba Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Tue, 25 Nov 2025 14:00:06 +0000 Subject: [PATCH 24/39] Update dependencies from https://github.com/dotnet/dotnet build 20251125.2 On relative base path root Microsoft.DotNet.Arcade.Sdk , Microsoft.DotNet.Helix.Sdk From Version 11.0.0-beta.25555.107 -> To Version 11.0.0-beta.25575.102 Microsoft.Extensions.Logging , Microsoft.NET.ILLink , Microsoft.NET.ILLink.Tasks , Microsoft.NET.Runtime.Emscripten.3.1.56.Node.win-x64 , Microsoft.NETCore.App.Ref , Microsoft.WindowsDesktop.App.Ref , System.Threading.Channels From Version 10.0.0-rc.1.25555.107 -> To Version 10.0.0-rc.3.25575.102 Microsoft.NET.Sdk From Version 10.0.100-rc.2.25555.107 -> To Version 10.0.100-rc.3.25575.102 --- eng/Version.Details.xml | 40 ++++++++++++++++++++-------------------- eng/Versions.props | 10 +++++----- eng/common/sdk-task.ps1 | 2 +- eng/common/tools.ps1 | 4 ++-- global.json | 4 ++-- 5 files changed, 30 insertions(+), 30 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 85088016f98..fd540590405 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,39 +1,39 @@ - + https://github.com/dotnet/dotnet - d119b40e8ff3b88f87ad60b04c807233a159b197 + 59bfd08e96379f48acc1a8dc93454a44b9ad8402 - + https://github.com/dotnet/dotnet - d119b40e8ff3b88f87ad60b04c807233a159b197 + 59bfd08e96379f48acc1a8dc93454a44b9ad8402 - + https://github.com/dotnet/dotnet - d119b40e8ff3b88f87ad60b04c807233a159b197 + 59bfd08e96379f48acc1a8dc93454a44b9ad8402 - + https://github.com/dotnet/dotnet - d119b40e8ff3b88f87ad60b04c807233a159b197 + 59bfd08e96379f48acc1a8dc93454a44b9ad8402 - + https://github.com/dotnet/dotnet - d119b40e8ff3b88f87ad60b04c807233a159b197 + 59bfd08e96379f48acc1a8dc93454a44b9ad8402 - + https://github.com/dotnet/dotnet - d119b40e8ff3b88f87ad60b04c807233a159b197 + 59bfd08e96379f48acc1a8dc93454a44b9ad8402 - + https://github.com/dotnet/dotnet - d119b40e8ff3b88f87ad60b04c807233a159b197 + 59bfd08e96379f48acc1a8dc93454a44b9ad8402 - + https://github.com/dotnet/dotnet - d119b40e8ff3b88f87ad60b04c807233a159b197 + 59bfd08e96379f48acc1a8dc93454a44b9ad8402 https://github.com/dotnet/xharness @@ -55,12 +55,12 @@ 88c2c7ae772437921d85186318dd4320c4848618 https://github.com/dotnet/maui - - d119b40e8ff3b88f87ad60b04c807233a159b197 + + 59bfd08e96379f48acc1a8dc93454a44b9ad8402 https://github.com/dotnet/dotnet - - d119b40e8ff3b88f87ad60b04c807233a159b197 + + 59bfd08e96379f48acc1a8dc93454a44b9ad8402 https://github.com/dotnet/dotnet diff --git a/eng/Versions.props b/eng/Versions.props index 85e54591bc3..3f5388ddedf 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -7,12 +7,12 @@ - 10.0.0-rc.3.25574.108 - 10.0.0-rc.3.25574.108 - 10.0.0-rc.3.25574.108 - 10.0.0-rc.3.25574.108 + 10.0.0-rc.3.25575.102 + 10.0.0-rc.3.25575.102 + 10.0.0-rc.3.25575.102 + 10.0.0-rc.3.25575.102 0.14.1-nightly.20250107.205 - 10.0.0-rc.3.25574.108 + 10.0.0-rc.3.25575.102 10.0.0-prerelease.25475.1 diff --git a/eng/common/sdk-task.ps1 b/eng/common/sdk-task.ps1 index 9ae443f1c36..b64b66a6275 100644 --- a/eng/common/sdk-task.ps1 +++ b/eng/common/sdk-task.ps1 @@ -70,7 +70,7 @@ try { $GlobalJson.tools | Add-Member -Name "vs" -Value (ConvertFrom-Json "{ `"version`": `"16.5`" }") -MemberType NoteProperty } if( -not ($GlobalJson.tools.PSObject.Properties.Name -match "xcopy-msbuild" )) { - $GlobalJson.tools | Add-Member -Name "xcopy-msbuild" -Value "17.14.16" -MemberType NoteProperty + $GlobalJson.tools | Add-Member -Name "xcopy-msbuild" -Value "18.0.0" -MemberType NoteProperty } if ($GlobalJson.tools."xcopy-msbuild".Trim() -ine "none") { $xcopyMSBuildToolsFolder = InitializeXCopyMSBuild $GlobalJson.tools."xcopy-msbuild" -install $true diff --git a/eng/common/tools.ps1 b/eng/common/tools.ps1 index 4bc50bd568c..578705ee4db 100644 --- a/eng/common/tools.ps1 +++ b/eng/common/tools.ps1 @@ -394,8 +394,8 @@ function InitializeVisualStudioMSBuild([bool]$install, [object]$vsRequirements = # If the version of msbuild is going to be xcopied, # use this version. Version matches a package here: - # https://dev.azure.com/dnceng/public/_artifacts/feed/dotnet-eng/NuGet/Microsoft.DotNet.Arcade.MSBuild.Xcopy/versions/17.14.16 - $defaultXCopyMSBuildVersion = '17.14.16' + # https://dev.azure.com/dnceng/public/_artifacts/feed/dotnet-eng/NuGet/Microsoft.DotNet.Arcade.MSBuild.Xcopy/versions/18.0.0 + $defaultXCopyMSBuildVersion = '18.0.0' if (!$vsRequirements) { if (Get-Member -InputObject $GlobalJson.tools -Name 'vs') { diff --git a/global.json b/global.json index 3f99fcfdb8a..83ab08c7644 100644 --- a/global.json +++ b/global.json @@ -8,8 +8,8 @@ "dotnet": "10.0.100-rc.2.25502.107" }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "11.0.0-beta.25574.108", - "Microsoft.DotNet.Helix.Sdk": "11.0.0-beta.25574.108" + "Microsoft.DotNet.Arcade.Sdk": "11.0.0-beta.25575.102", + "Microsoft.DotNet.Helix.Sdk": "11.0.0-beta.25575.102" }, "native-tools": { "python3": "3.7.1" From abc109ecad27256d01d58f534f52ef333f26723e Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Wed, 26 Nov 2025 01:59:02 +0000 Subject: [PATCH 25/39] Update dependencies from https://github.com/dotnet/dotnet build 20251125.10 On relative base path root Microsoft.DotNet.Arcade.Sdk , Microsoft.DotNet.Helix.Sdk From Version 11.0.0-beta.25555.107 -> To Version 11.0.0-beta.25575.110 Microsoft.Extensions.Logging , Microsoft.NET.ILLink , Microsoft.NET.ILLink.Tasks , Microsoft.NET.Runtime.Emscripten.3.1.56.Node.win-x64 , Microsoft.NETCore.App.Ref , Microsoft.WindowsDesktop.App.Ref , System.Threading.Channels From Version 10.0.0-rc.1.25555.107 -> To Version 10.0.0-rc.3.25575.110 Microsoft.NET.Sdk From Version 10.0.100-rc.2.25555.107 -> To Version 10.0.100-rc.3.25575.110 --- eng/Version.Details.xml | 40 ++++++++++++++++++++-------------------- eng/Versions.props | 10 +++++----- global.json | 4 ++-- 3 files changed, 27 insertions(+), 27 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index fd540590405..8ba27992184 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,39 +1,39 @@ - + https://github.com/dotnet/dotnet - 59bfd08e96379f48acc1a8dc93454a44b9ad8402 + de417a619f09820da5e8403783f56cdcbafbae9c - + https://github.com/dotnet/dotnet - 59bfd08e96379f48acc1a8dc93454a44b9ad8402 + de417a619f09820da5e8403783f56cdcbafbae9c - + https://github.com/dotnet/dotnet - 59bfd08e96379f48acc1a8dc93454a44b9ad8402 + de417a619f09820da5e8403783f56cdcbafbae9c - + https://github.com/dotnet/dotnet - 59bfd08e96379f48acc1a8dc93454a44b9ad8402 + de417a619f09820da5e8403783f56cdcbafbae9c - + https://github.com/dotnet/dotnet - 59bfd08e96379f48acc1a8dc93454a44b9ad8402 + de417a619f09820da5e8403783f56cdcbafbae9c - + https://github.com/dotnet/dotnet - 59bfd08e96379f48acc1a8dc93454a44b9ad8402 + de417a619f09820da5e8403783f56cdcbafbae9c - + https://github.com/dotnet/dotnet - 59bfd08e96379f48acc1a8dc93454a44b9ad8402 + de417a619f09820da5e8403783f56cdcbafbae9c - + https://github.com/dotnet/dotnet - 59bfd08e96379f48acc1a8dc93454a44b9ad8402 + de417a619f09820da5e8403783f56cdcbafbae9c https://github.com/dotnet/xharness @@ -55,12 +55,12 @@ 88c2c7ae772437921d85186318dd4320c4848618 https://github.com/dotnet/maui - - 59bfd08e96379f48acc1a8dc93454a44b9ad8402 + + de417a619f09820da5e8403783f56cdcbafbae9c https://github.com/dotnet/dotnet - - 59bfd08e96379f48acc1a8dc93454a44b9ad8402 + + de417a619f09820da5e8403783f56cdcbafbae9c https://github.com/dotnet/dotnet diff --git a/eng/Versions.props b/eng/Versions.props index 3f5388ddedf..37ad2588113 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -7,12 +7,12 @@ - 10.0.0-rc.3.25575.102 - 10.0.0-rc.3.25575.102 - 10.0.0-rc.3.25575.102 - 10.0.0-rc.3.25575.102 + 10.0.0-rc.3.25575.110 + 10.0.0-rc.3.25575.110 + 10.0.0-rc.3.25575.110 + 10.0.0-rc.3.25575.110 0.14.1-nightly.20250107.205 - 10.0.0-rc.3.25575.102 + 10.0.0-rc.3.25575.110 10.0.0-prerelease.25475.1 diff --git a/global.json b/global.json index 83ab08c7644..cb02f743983 100644 --- a/global.json +++ b/global.json @@ -8,8 +8,8 @@ "dotnet": "10.0.100-rc.2.25502.107" }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "11.0.0-beta.25575.102", - "Microsoft.DotNet.Helix.Sdk": "11.0.0-beta.25575.102" + "Microsoft.DotNet.Arcade.Sdk": "11.0.0-beta.25575.110", + "Microsoft.DotNet.Helix.Sdk": "11.0.0-beta.25575.110" }, "native-tools": { "python3": "3.7.1" From bcba13ea19cfbc1323add3ae980a53dbcfe8ce20 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Wed, 26 Nov 2025 06:31:29 +0000 Subject: [PATCH 26/39] Update dependencies from https://github.com/dotnet/dotnet build 20251125.14 On relative base path root Microsoft.DotNet.Arcade.Sdk , Microsoft.DotNet.Helix.Sdk From Version 11.0.0-beta.25555.107 -> To Version 11.0.0-beta.25575.114 Microsoft.Extensions.Logging , Microsoft.NET.ILLink , Microsoft.NET.ILLink.Tasks , Microsoft.NET.Runtime.Emscripten.3.1.56.Node.win-x64 , Microsoft.NETCore.App.Ref , Microsoft.WindowsDesktop.App.Ref , System.Threading.Channels From Version 10.0.0-rc.1.25555.107 -> To Version 10.0.0-rc.3.25575.114 Microsoft.NET.Sdk From Version 10.0.100-rc.2.25555.107 -> To Version 10.0.100-rc.3.25575.114 --- eng/Version.Details.xml | 40 ++++++++++++++++++++-------------------- eng/Versions.props | 10 +++++----- global.json | 4 ++-- 3 files changed, 27 insertions(+), 27 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 8ba27992184..2ccb061782f 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,39 +1,39 @@ - + https://github.com/dotnet/dotnet - de417a619f09820da5e8403783f56cdcbafbae9c + e29ad03c1974509af403770cb5774458f979a627 - + https://github.com/dotnet/dotnet - de417a619f09820da5e8403783f56cdcbafbae9c + e29ad03c1974509af403770cb5774458f979a627 - + https://github.com/dotnet/dotnet - de417a619f09820da5e8403783f56cdcbafbae9c + e29ad03c1974509af403770cb5774458f979a627 - + https://github.com/dotnet/dotnet - de417a619f09820da5e8403783f56cdcbafbae9c + e29ad03c1974509af403770cb5774458f979a627 - + https://github.com/dotnet/dotnet - de417a619f09820da5e8403783f56cdcbafbae9c + e29ad03c1974509af403770cb5774458f979a627 - + https://github.com/dotnet/dotnet - de417a619f09820da5e8403783f56cdcbafbae9c + e29ad03c1974509af403770cb5774458f979a627 - + https://github.com/dotnet/dotnet - de417a619f09820da5e8403783f56cdcbafbae9c + e29ad03c1974509af403770cb5774458f979a627 - + https://github.com/dotnet/dotnet - de417a619f09820da5e8403783f56cdcbafbae9c + e29ad03c1974509af403770cb5774458f979a627 https://github.com/dotnet/xharness @@ -55,12 +55,12 @@ 88c2c7ae772437921d85186318dd4320c4848618 https://github.com/dotnet/maui - - de417a619f09820da5e8403783f56cdcbafbae9c + + e29ad03c1974509af403770cb5774458f979a627 https://github.com/dotnet/dotnet - - de417a619f09820da5e8403783f56cdcbafbae9c + + e29ad03c1974509af403770cb5774458f979a627 https://github.com/dotnet/dotnet diff --git a/eng/Versions.props b/eng/Versions.props index 37ad2588113..1d2613a1f50 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -7,12 +7,12 @@ - 10.0.0-rc.3.25575.110 - 10.0.0-rc.3.25575.110 - 10.0.0-rc.3.25575.110 - 10.0.0-rc.3.25575.110 + 10.0.0-rc.3.25575.114 + 10.0.0-rc.3.25575.114 + 10.0.0-rc.3.25575.114 + 10.0.0-rc.3.25575.114 0.14.1-nightly.20250107.205 - 10.0.0-rc.3.25575.110 + 10.0.0-rc.3.25575.114 10.0.0-prerelease.25475.1 diff --git a/global.json b/global.json index cb02f743983..8367e4a66dc 100644 --- a/global.json +++ b/global.json @@ -8,8 +8,8 @@ "dotnet": "10.0.100-rc.2.25502.107" }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "11.0.0-beta.25575.110", - "Microsoft.DotNet.Helix.Sdk": "11.0.0-beta.25575.110" + "Microsoft.DotNet.Arcade.Sdk": "11.0.0-beta.25575.114", + "Microsoft.DotNet.Helix.Sdk": "11.0.0-beta.25575.114" }, "native-tools": { "python3": "3.7.1" From 00d0a5c70239dccc2df2c05f74c95987614eeffc Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Wed, 26 Nov 2025 13:31:38 +0000 Subject: [PATCH 27/39] Update dependencies from https://github.com/dotnet/dotnet build 20251126.1 On relative base path root Microsoft.DotNet.Arcade.Sdk , Microsoft.DotNet.Helix.Sdk From Version 11.0.0-beta.25555.107 -> To Version 11.0.0-beta.25576.101 Microsoft.Extensions.Logging , Microsoft.NET.ILLink , Microsoft.NET.ILLink.Tasks , Microsoft.NET.Runtime.Emscripten.3.1.56.Node.win-x64 , Microsoft.NETCore.App.Ref , Microsoft.WindowsDesktop.App.Ref , System.Threading.Channels From Version 10.0.0-rc.1.25555.107 -> To Version 10.0.0-rc.3.25576.101 Microsoft.NET.Sdk From Version 10.0.100-rc.2.25555.107 -> To Version 10.0.100-rc.3.25576.101 --- eng/Version.Details.xml | 40 ++++++++++++++++++++-------------------- eng/Versions.props | 10 +++++----- global.json | 4 ++-- 3 files changed, 27 insertions(+), 27 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 2ccb061782f..ce66f1436e3 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,39 +1,39 @@ - + https://github.com/dotnet/dotnet - e29ad03c1974509af403770cb5774458f979a627 + 1711318dfa00b114b1f3408649caa3a06bc3e549 - + https://github.com/dotnet/dotnet - e29ad03c1974509af403770cb5774458f979a627 + 1711318dfa00b114b1f3408649caa3a06bc3e549 - + https://github.com/dotnet/dotnet - e29ad03c1974509af403770cb5774458f979a627 + 1711318dfa00b114b1f3408649caa3a06bc3e549 - + https://github.com/dotnet/dotnet - e29ad03c1974509af403770cb5774458f979a627 + 1711318dfa00b114b1f3408649caa3a06bc3e549 - + https://github.com/dotnet/dotnet - e29ad03c1974509af403770cb5774458f979a627 + 1711318dfa00b114b1f3408649caa3a06bc3e549 - + https://github.com/dotnet/dotnet - e29ad03c1974509af403770cb5774458f979a627 + 1711318dfa00b114b1f3408649caa3a06bc3e549 - + https://github.com/dotnet/dotnet - e29ad03c1974509af403770cb5774458f979a627 + 1711318dfa00b114b1f3408649caa3a06bc3e549 - + https://github.com/dotnet/dotnet - e29ad03c1974509af403770cb5774458f979a627 + 1711318dfa00b114b1f3408649caa3a06bc3e549 https://github.com/dotnet/xharness @@ -55,12 +55,12 @@ 88c2c7ae772437921d85186318dd4320c4848618 https://github.com/dotnet/maui - - e29ad03c1974509af403770cb5774458f979a627 + + 1711318dfa00b114b1f3408649caa3a06bc3e549 https://github.com/dotnet/dotnet - - e29ad03c1974509af403770cb5774458f979a627 + + 1711318dfa00b114b1f3408649caa3a06bc3e549 https://github.com/dotnet/dotnet diff --git a/eng/Versions.props b/eng/Versions.props index 1d2613a1f50..8b2b4d888a0 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -7,12 +7,12 @@ - 10.0.0-rc.3.25575.114 - 10.0.0-rc.3.25575.114 - 10.0.0-rc.3.25575.114 - 10.0.0-rc.3.25575.114 + 10.0.0-rc.3.25576.101 + 10.0.0-rc.3.25576.101 + 10.0.0-rc.3.25576.101 + 10.0.0-rc.3.25576.101 0.14.1-nightly.20250107.205 - 10.0.0-rc.3.25575.114 + 10.0.0-rc.3.25576.101 10.0.0-prerelease.25475.1 diff --git a/global.json b/global.json index 8367e4a66dc..9bb340cc1ba 100644 --- a/global.json +++ b/global.json @@ -8,8 +8,8 @@ "dotnet": "10.0.100-rc.2.25502.107" }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "11.0.0-beta.25575.114", - "Microsoft.DotNet.Helix.Sdk": "11.0.0-beta.25575.114" + "Microsoft.DotNet.Arcade.Sdk": "11.0.0-beta.25576.101", + "Microsoft.DotNet.Helix.Sdk": "11.0.0-beta.25576.101" }, "native-tools": { "python3": "3.7.1" From 5557541f1f993bbbe7b6955649dd769c9c0ee7f5 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Wed, 26 Nov 2025 22:02:55 +0000 Subject: [PATCH 28/39] Update dependencies from https://github.com/dotnet/dotnet build 20251126.5 On relative base path root Microsoft.DotNet.Arcade.Sdk , Microsoft.DotNet.Helix.Sdk From Version 11.0.0-beta.25555.107 -> To Version 11.0.0-beta.25576.105 Microsoft.Extensions.Logging , Microsoft.NET.ILLink , Microsoft.NET.ILLink.Tasks , Microsoft.NET.Runtime.Emscripten.3.1.56.Node.win-x64 , Microsoft.NETCore.App.Ref , Microsoft.WindowsDesktop.App.Ref , System.Threading.Channels From Version 10.0.0-rc.1.25555.107 -> To Version 10.0.0-rc.3.25576.105 Microsoft.NET.Sdk From Version 10.0.100-rc.2.25555.107 -> To Version 10.0.100-rc.3.25576.105 --- eng/Version.Details.xml | 40 +++++++++---------- eng/Versions.props | 10 ++--- .../job/source-index-stage1.yml | 4 +- .../core-templates/post-build/post-build.yml | 8 ++-- global.json | 4 +- 5 files changed, 33 insertions(+), 33 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index ce66f1436e3..0dc52ebd259 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,39 +1,39 @@ - + https://github.com/dotnet/dotnet - 1711318dfa00b114b1f3408649caa3a06bc3e549 + 305623c3cd0df455e01b95ed3a8c347e650b315f - + https://github.com/dotnet/dotnet - 1711318dfa00b114b1f3408649caa3a06bc3e549 + 305623c3cd0df455e01b95ed3a8c347e650b315f - + https://github.com/dotnet/dotnet - 1711318dfa00b114b1f3408649caa3a06bc3e549 + 305623c3cd0df455e01b95ed3a8c347e650b315f - + https://github.com/dotnet/dotnet - 1711318dfa00b114b1f3408649caa3a06bc3e549 + 305623c3cd0df455e01b95ed3a8c347e650b315f - + https://github.com/dotnet/dotnet - 1711318dfa00b114b1f3408649caa3a06bc3e549 + 305623c3cd0df455e01b95ed3a8c347e650b315f - + https://github.com/dotnet/dotnet - 1711318dfa00b114b1f3408649caa3a06bc3e549 + 305623c3cd0df455e01b95ed3a8c347e650b315f - + https://github.com/dotnet/dotnet - 1711318dfa00b114b1f3408649caa3a06bc3e549 + 305623c3cd0df455e01b95ed3a8c347e650b315f - + https://github.com/dotnet/dotnet - 1711318dfa00b114b1f3408649caa3a06bc3e549 + 305623c3cd0df455e01b95ed3a8c347e650b315f https://github.com/dotnet/xharness @@ -55,12 +55,12 @@ 88c2c7ae772437921d85186318dd4320c4848618 https://github.com/dotnet/maui - - 1711318dfa00b114b1f3408649caa3a06bc3e549 + + 305623c3cd0df455e01b95ed3a8c347e650b315f https://github.com/dotnet/dotnet - - 1711318dfa00b114b1f3408649caa3a06bc3e549 + + 305623c3cd0df455e01b95ed3a8c347e650b315f https://github.com/dotnet/dotnet diff --git a/eng/Versions.props b/eng/Versions.props index 8b2b4d888a0..02f40b1e773 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -7,12 +7,12 @@ - 10.0.0-rc.3.25576.101 - 10.0.0-rc.3.25576.101 - 10.0.0-rc.3.25576.101 - 10.0.0-rc.3.25576.101 + 10.0.0-rc.3.25576.105 + 10.0.0-rc.3.25576.105 + 10.0.0-rc.3.25576.105 + 10.0.0-rc.3.25576.105 0.14.1-nightly.20250107.205 - 10.0.0-rc.3.25576.101 + 10.0.0-rc.3.25576.105 10.0.0-prerelease.25475.1 diff --git a/eng/common/core-templates/job/source-index-stage1.yml b/eng/common/core-templates/job/source-index-stage1.yml index 30530359a5d..58b7a76814e 100644 --- a/eng/common/core-templates/job/source-index-stage1.yml +++ b/eng/common/core-templates/job/source-index-stage1.yml @@ -25,10 +25,10 @@ jobs: pool: ${{ if eq(variables['System.TeamProject'], 'public') }}: name: $(DncEngPublicBuildPool) - image: windows.vs2022.amd64.open + image: windows.vs2026preview.scout.amd64.open ${{ if eq(variables['System.TeamProject'], 'internal') }}: name: $(DncEngInternalBuildPool) - image: windows.vs2022.amd64 + image: windows.vs2026preview.scout.amd64 steps: - ${{ if eq(parameters.is1ESPipeline, '') }}: diff --git a/eng/common/core-templates/post-build/post-build.yml b/eng/common/core-templates/post-build/post-build.yml index 6f0929c039b..06864cd1feb 100644 --- a/eng/common/core-templates/post-build/post-build.yml +++ b/eng/common/core-templates/post-build/post-build.yml @@ -127,11 +127,11 @@ stages: ${{ else }}: ${{ if eq(parameters.is1ESPipeline, true) }}: name: $(DncEngInternalBuildPool) - image: windows.vs2022.amd64 + image: windows.vs2026preview.scout.amd64 os: windows ${{ else }}: name: $(DncEngInternalBuildPool) - demands: ImageOverride -equals windows.vs2022.amd64 + demands: ImageOverride -equals windows.vs2026preview.scout.amd64 steps: - template: /eng/common/core-templates/post-build/setup-maestro-vars.yml @@ -175,7 +175,7 @@ stages: os: windows ${{ else }}: name: $(DncEngInternalBuildPool) - demands: ImageOverride -equals windows.vs2022.amd64 + demands: ImageOverride -equals windows.vs2026preview.scout.amd64 steps: - template: /eng/common/core-templates/post-build/setup-maestro-vars.yml parameters: @@ -236,7 +236,7 @@ stages: os: windows ${{ else }}: name: $(DncEngInternalBuildPool) - demands: ImageOverride -equals windows.vs2022.amd64 + demands: ImageOverride -equals windows.vs2026preview.scout.amd64 steps: - template: /eng/common/core-templates/post-build/setup-maestro-vars.yml parameters: diff --git a/global.json b/global.json index 9bb340cc1ba..323b3232040 100644 --- a/global.json +++ b/global.json @@ -8,8 +8,8 @@ "dotnet": "10.0.100-rc.2.25502.107" }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "11.0.0-beta.25576.101", - "Microsoft.DotNet.Helix.Sdk": "11.0.0-beta.25576.101" + "Microsoft.DotNet.Arcade.Sdk": "11.0.0-beta.25576.105", + "Microsoft.DotNet.Helix.Sdk": "11.0.0-beta.25576.105" }, "native-tools": { "python3": "3.7.1" From fc60284ed2719abf5ecc24750955a74a1df04f4e Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Thu, 27 Nov 2025 03:23:53 +0000 Subject: [PATCH 29/39] Update dependencies from https://github.com/dotnet/dotnet build 20251126.10 On relative base path root Microsoft.DotNet.Arcade.Sdk , Microsoft.DotNet.Helix.Sdk From Version 11.0.0-beta.25555.107 -> To Version 11.0.0-beta.25576.110 Microsoft.Extensions.Logging , Microsoft.NET.ILLink , Microsoft.NET.ILLink.Tasks , Microsoft.NET.Runtime.Emscripten.3.1.56.Node.win-x64 , Microsoft.NETCore.App.Ref , Microsoft.WindowsDesktop.App.Ref , System.Threading.Channels From Version 10.0.0-rc.1.25555.107 -> To Version 10.0.0-rc.3.25576.110 Microsoft.NET.Sdk From Version 10.0.100-rc.2.25555.107 -> To Version 10.0.100-rc.3.25576.110 --- eng/Version.Details.xml | 40 ++++++++++++++++++++-------------------- eng/Versions.props | 10 +++++----- global.json | 4 ++-- 3 files changed, 27 insertions(+), 27 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 0dc52ebd259..7e75fc55b16 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,39 +1,39 @@ - + https://github.com/dotnet/dotnet - 305623c3cd0df455e01b95ed3a8c347e650b315f + 33798cfed13168b2cc981e62c5eb7b05467523cc - + https://github.com/dotnet/dotnet - 305623c3cd0df455e01b95ed3a8c347e650b315f + 33798cfed13168b2cc981e62c5eb7b05467523cc - + https://github.com/dotnet/dotnet - 305623c3cd0df455e01b95ed3a8c347e650b315f + 33798cfed13168b2cc981e62c5eb7b05467523cc - + https://github.com/dotnet/dotnet - 305623c3cd0df455e01b95ed3a8c347e650b315f + 33798cfed13168b2cc981e62c5eb7b05467523cc - + https://github.com/dotnet/dotnet - 305623c3cd0df455e01b95ed3a8c347e650b315f + 33798cfed13168b2cc981e62c5eb7b05467523cc - + https://github.com/dotnet/dotnet - 305623c3cd0df455e01b95ed3a8c347e650b315f + 33798cfed13168b2cc981e62c5eb7b05467523cc - + https://github.com/dotnet/dotnet - 305623c3cd0df455e01b95ed3a8c347e650b315f + 33798cfed13168b2cc981e62c5eb7b05467523cc - + https://github.com/dotnet/dotnet - 305623c3cd0df455e01b95ed3a8c347e650b315f + 33798cfed13168b2cc981e62c5eb7b05467523cc https://github.com/dotnet/xharness @@ -55,12 +55,12 @@ 88c2c7ae772437921d85186318dd4320c4848618 https://github.com/dotnet/maui - - 305623c3cd0df455e01b95ed3a8c347e650b315f + + 33798cfed13168b2cc981e62c5eb7b05467523cc https://github.com/dotnet/dotnet - - 305623c3cd0df455e01b95ed3a8c347e650b315f + + 33798cfed13168b2cc981e62c5eb7b05467523cc https://github.com/dotnet/dotnet diff --git a/eng/Versions.props b/eng/Versions.props index 02f40b1e773..33cf89f9699 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -7,12 +7,12 @@ - 10.0.0-rc.3.25576.105 - 10.0.0-rc.3.25576.105 - 10.0.0-rc.3.25576.105 - 10.0.0-rc.3.25576.105 + 10.0.0-rc.3.25576.110 + 10.0.0-rc.3.25576.110 + 10.0.0-rc.3.25576.110 + 10.0.0-rc.3.25576.110 0.14.1-nightly.20250107.205 - 10.0.0-rc.3.25576.105 + 10.0.0-rc.3.25576.110 10.0.0-prerelease.25475.1 diff --git a/global.json b/global.json index 323b3232040..ece3ffaa664 100644 --- a/global.json +++ b/global.json @@ -8,8 +8,8 @@ "dotnet": "10.0.100-rc.2.25502.107" }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "11.0.0-beta.25576.105", - "Microsoft.DotNet.Helix.Sdk": "11.0.0-beta.25576.105" + "Microsoft.DotNet.Arcade.Sdk": "11.0.0-beta.25576.110", + "Microsoft.DotNet.Helix.Sdk": "11.0.0-beta.25576.110" }, "native-tools": { "python3": "3.7.1" From b34ae8fbca2a6656800897f79b26c7cf504266af Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Thu, 27 Nov 2025 16:58:06 +0000 Subject: [PATCH 30/39] Update dependencies from https://github.com/dotnet/dotnet build 20251127.1 On relative base path root Microsoft.DotNet.Arcade.Sdk , Microsoft.DotNet.Helix.Sdk From Version 11.0.0-beta.25555.107 -> To Version 11.0.0-beta.25577.101 Microsoft.Extensions.Logging , Microsoft.NET.ILLink , Microsoft.NET.ILLink.Tasks , Microsoft.NET.Runtime.Emscripten.3.1.56.Node.win-x64 , Microsoft.NETCore.App.Ref , Microsoft.WindowsDesktop.App.Ref , System.Threading.Channels From Version 10.0.0-rc.1.25555.107 -> To Version 10.0.0-rc.3.25577.101 Microsoft.NET.Sdk From Version 10.0.100-rc.2.25555.107 -> To Version 10.0.100-rc.3.25577.101 --- eng/Version.Details.xml | 40 ++++++++++++++++++++-------------------- eng/Versions.props | 10 +++++----- global.json | 4 ++-- 3 files changed, 27 insertions(+), 27 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 7e75fc55b16..77ed22c5f58 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,39 +1,39 @@ - + https://github.com/dotnet/dotnet - 33798cfed13168b2cc981e62c5eb7b05467523cc + de51a99f85b86e371fb85e93daf8b063014deb88 - + https://github.com/dotnet/dotnet - 33798cfed13168b2cc981e62c5eb7b05467523cc + de51a99f85b86e371fb85e93daf8b063014deb88 - + https://github.com/dotnet/dotnet - 33798cfed13168b2cc981e62c5eb7b05467523cc + de51a99f85b86e371fb85e93daf8b063014deb88 - + https://github.com/dotnet/dotnet - 33798cfed13168b2cc981e62c5eb7b05467523cc + de51a99f85b86e371fb85e93daf8b063014deb88 - + https://github.com/dotnet/dotnet - 33798cfed13168b2cc981e62c5eb7b05467523cc + de51a99f85b86e371fb85e93daf8b063014deb88 - + https://github.com/dotnet/dotnet - 33798cfed13168b2cc981e62c5eb7b05467523cc + de51a99f85b86e371fb85e93daf8b063014deb88 - + https://github.com/dotnet/dotnet - 33798cfed13168b2cc981e62c5eb7b05467523cc + de51a99f85b86e371fb85e93daf8b063014deb88 - + https://github.com/dotnet/dotnet - 33798cfed13168b2cc981e62c5eb7b05467523cc + de51a99f85b86e371fb85e93daf8b063014deb88 https://github.com/dotnet/xharness @@ -55,12 +55,12 @@ 88c2c7ae772437921d85186318dd4320c4848618 https://github.com/dotnet/maui - - 33798cfed13168b2cc981e62c5eb7b05467523cc + + de51a99f85b86e371fb85e93daf8b063014deb88 https://github.com/dotnet/dotnet - - 33798cfed13168b2cc981e62c5eb7b05467523cc + + de51a99f85b86e371fb85e93daf8b063014deb88 https://github.com/dotnet/dotnet diff --git a/eng/Versions.props b/eng/Versions.props index 33cf89f9699..c8e43ab9423 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -7,12 +7,12 @@ - 10.0.0-rc.3.25576.110 - 10.0.0-rc.3.25576.110 - 10.0.0-rc.3.25576.110 - 10.0.0-rc.3.25576.110 + 10.0.0-rc.3.25577.101 + 10.0.0-rc.3.25577.101 + 10.0.0-rc.3.25577.101 + 10.0.0-rc.3.25577.101 0.14.1-nightly.20250107.205 - 10.0.0-rc.3.25576.110 + 10.0.0-rc.3.25577.101 10.0.0-prerelease.25475.1 diff --git a/global.json b/global.json index ece3ffaa664..a7b8f7d9c5f 100644 --- a/global.json +++ b/global.json @@ -8,8 +8,8 @@ "dotnet": "10.0.100-rc.2.25502.107" }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "11.0.0-beta.25576.110", - "Microsoft.DotNet.Helix.Sdk": "11.0.0-beta.25576.110" + "Microsoft.DotNet.Arcade.Sdk": "11.0.0-beta.25577.101", + "Microsoft.DotNet.Helix.Sdk": "11.0.0-beta.25577.101" }, "native-tools": { "python3": "3.7.1" From 22c39f48b32de4ae5ff34088f37b851048f233f3 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Thu, 27 Nov 2025 21:20:59 +0000 Subject: [PATCH 31/39] Update dependencies from https://github.com/dotnet/dotnet build 20251127.8 On relative base path root Microsoft.DotNet.Arcade.Sdk , Microsoft.DotNet.Helix.Sdk From Version 11.0.0-beta.25555.107 -> To Version 11.0.0-beta.25577.108 Microsoft.Extensions.Logging , Microsoft.NET.ILLink , Microsoft.NET.ILLink.Tasks , Microsoft.NET.Runtime.Emscripten.3.1.56.Node.win-x64 , Microsoft.NETCore.App.Ref , Microsoft.WindowsDesktop.App.Ref , System.Threading.Channels From Version 10.0.0-rc.1.25555.107 -> To Version 10.0.0-rc.3.25577.108 Microsoft.NET.Sdk From Version 10.0.100-rc.2.25555.107 -> To Version 10.0.100-rc.3.25577.108 --- eng/Version.Details.xml | 40 ++++++++++++++++++++-------------------- eng/Versions.props | 10 +++++----- global.json | 4 ++-- 3 files changed, 27 insertions(+), 27 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 77ed22c5f58..7d169ad9e18 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,39 +1,39 @@ - + https://github.com/dotnet/dotnet - de51a99f85b86e371fb85e93daf8b063014deb88 + 791f8df110a0449089b1e0b3e037f5ae0b52115f - + https://github.com/dotnet/dotnet - de51a99f85b86e371fb85e93daf8b063014deb88 + 791f8df110a0449089b1e0b3e037f5ae0b52115f - + https://github.com/dotnet/dotnet - de51a99f85b86e371fb85e93daf8b063014deb88 + 791f8df110a0449089b1e0b3e037f5ae0b52115f - + https://github.com/dotnet/dotnet - de51a99f85b86e371fb85e93daf8b063014deb88 + 791f8df110a0449089b1e0b3e037f5ae0b52115f - + https://github.com/dotnet/dotnet - de51a99f85b86e371fb85e93daf8b063014deb88 + 791f8df110a0449089b1e0b3e037f5ae0b52115f - + https://github.com/dotnet/dotnet - de51a99f85b86e371fb85e93daf8b063014deb88 + 791f8df110a0449089b1e0b3e037f5ae0b52115f - + https://github.com/dotnet/dotnet - de51a99f85b86e371fb85e93daf8b063014deb88 + 791f8df110a0449089b1e0b3e037f5ae0b52115f - + https://github.com/dotnet/dotnet - de51a99f85b86e371fb85e93daf8b063014deb88 + 791f8df110a0449089b1e0b3e037f5ae0b52115f https://github.com/dotnet/xharness @@ -55,12 +55,12 @@ 88c2c7ae772437921d85186318dd4320c4848618 https://github.com/dotnet/maui - - de51a99f85b86e371fb85e93daf8b063014deb88 + + 791f8df110a0449089b1e0b3e037f5ae0b52115f https://github.com/dotnet/dotnet - - de51a99f85b86e371fb85e93daf8b063014deb88 + + 791f8df110a0449089b1e0b3e037f5ae0b52115f https://github.com/dotnet/dotnet diff --git a/eng/Versions.props b/eng/Versions.props index c8e43ab9423..298b42fea62 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -7,12 +7,12 @@ - 10.0.0-rc.3.25577.101 - 10.0.0-rc.3.25577.101 - 10.0.0-rc.3.25577.101 - 10.0.0-rc.3.25577.101 + 10.0.0-rc.3.25577.108 + 10.0.0-rc.3.25577.108 + 10.0.0-rc.3.25577.108 + 10.0.0-rc.3.25577.108 0.14.1-nightly.20250107.205 - 10.0.0-rc.3.25577.101 + 10.0.0-rc.3.25577.108 10.0.0-prerelease.25475.1 diff --git a/global.json b/global.json index a7b8f7d9c5f..bb12b626c7c 100644 --- a/global.json +++ b/global.json @@ -8,8 +8,8 @@ "dotnet": "10.0.100-rc.2.25502.107" }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "11.0.0-beta.25577.101", - "Microsoft.DotNet.Helix.Sdk": "11.0.0-beta.25577.101" + "Microsoft.DotNet.Arcade.Sdk": "11.0.0-beta.25577.108", + "Microsoft.DotNet.Helix.Sdk": "11.0.0-beta.25577.108" }, "native-tools": { "python3": "3.7.1" From f680ee4390e2ac55bdcd3c3806591ce2425db631 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Fri, 28 Nov 2025 03:20:21 +0000 Subject: [PATCH 32/39] Update dependencies from https://github.com/dotnet/dotnet build 20251127.9 On relative base path root Microsoft.DotNet.Arcade.Sdk , Microsoft.DotNet.Helix.Sdk From Version 11.0.0-beta.25555.107 -> To Version 11.0.0-beta.25577.109 Microsoft.Extensions.Logging , Microsoft.NET.ILLink , Microsoft.NET.ILLink.Tasks , Microsoft.NET.Runtime.Emscripten.3.1.56.Node.win-x64 , Microsoft.NETCore.App.Ref , Microsoft.WindowsDesktop.App.Ref , System.Threading.Channels From Version 10.0.0-rc.1.25555.107 -> To Version 10.0.0-rc.3.25577.109 Microsoft.NET.Sdk From Version 10.0.100-rc.2.25555.107 -> To Version 10.0.100-rc.3.25577.109 --- eng/Version.Details.xml | 40 ++++++++++++++++++++-------------------- eng/Versions.props | 10 +++++----- global.json | 4 ++-- 3 files changed, 27 insertions(+), 27 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 7d169ad9e18..aebdca33f44 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,39 +1,39 @@ - + https://github.com/dotnet/dotnet - 791f8df110a0449089b1e0b3e037f5ae0b52115f + a00271037957320337a6ad2c3a74261ed8c3f85d - + https://github.com/dotnet/dotnet - 791f8df110a0449089b1e0b3e037f5ae0b52115f + a00271037957320337a6ad2c3a74261ed8c3f85d - + https://github.com/dotnet/dotnet - 791f8df110a0449089b1e0b3e037f5ae0b52115f + a00271037957320337a6ad2c3a74261ed8c3f85d - + https://github.com/dotnet/dotnet - 791f8df110a0449089b1e0b3e037f5ae0b52115f + a00271037957320337a6ad2c3a74261ed8c3f85d - + https://github.com/dotnet/dotnet - 791f8df110a0449089b1e0b3e037f5ae0b52115f + a00271037957320337a6ad2c3a74261ed8c3f85d - + https://github.com/dotnet/dotnet - 791f8df110a0449089b1e0b3e037f5ae0b52115f + a00271037957320337a6ad2c3a74261ed8c3f85d - + https://github.com/dotnet/dotnet - 791f8df110a0449089b1e0b3e037f5ae0b52115f + a00271037957320337a6ad2c3a74261ed8c3f85d - + https://github.com/dotnet/dotnet - 791f8df110a0449089b1e0b3e037f5ae0b52115f + a00271037957320337a6ad2c3a74261ed8c3f85d https://github.com/dotnet/xharness @@ -55,12 +55,12 @@ 88c2c7ae772437921d85186318dd4320c4848618 https://github.com/dotnet/maui - - 791f8df110a0449089b1e0b3e037f5ae0b52115f + + a00271037957320337a6ad2c3a74261ed8c3f85d https://github.com/dotnet/dotnet - - 791f8df110a0449089b1e0b3e037f5ae0b52115f + + a00271037957320337a6ad2c3a74261ed8c3f85d https://github.com/dotnet/dotnet diff --git a/eng/Versions.props b/eng/Versions.props index 298b42fea62..c10d365ad34 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -7,12 +7,12 @@ - 10.0.0-rc.3.25577.108 - 10.0.0-rc.3.25577.108 - 10.0.0-rc.3.25577.108 - 10.0.0-rc.3.25577.108 + 10.0.0-rc.3.25577.109 + 10.0.0-rc.3.25577.109 + 10.0.0-rc.3.25577.109 + 10.0.0-rc.3.25577.109 0.14.1-nightly.20250107.205 - 10.0.0-rc.3.25577.108 + 10.0.0-rc.3.25577.109 10.0.0-prerelease.25475.1 diff --git a/global.json b/global.json index bb12b626c7c..54a5c328020 100644 --- a/global.json +++ b/global.json @@ -8,8 +8,8 @@ "dotnet": "10.0.100-rc.2.25502.107" }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "11.0.0-beta.25577.108", - "Microsoft.DotNet.Helix.Sdk": "11.0.0-beta.25577.108" + "Microsoft.DotNet.Arcade.Sdk": "11.0.0-beta.25577.109", + "Microsoft.DotNet.Helix.Sdk": "11.0.0-beta.25577.109" }, "native-tools": { "python3": "3.7.1" From fd052de189940c1ee28aa0fffa33521c7587ad76 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Fri, 28 Nov 2025 17:48:17 +0000 Subject: [PATCH 33/39] Update dependencies from https://github.com/dotnet/dotnet build 20251128.4 On relative base path root Microsoft.DotNet.Arcade.Sdk , Microsoft.DotNet.Helix.Sdk From Version 11.0.0-beta.25555.107 -> To Version 11.0.0-beta.25578.104 Microsoft.Extensions.Logging , Microsoft.NET.ILLink , Microsoft.NET.ILLink.Tasks , Microsoft.NET.Runtime.Emscripten.3.1.56.Node.win-x64 , Microsoft.NETCore.App.Ref , Microsoft.WindowsDesktop.App.Ref , System.Threading.Channels From Version 10.0.0-rc.1.25555.107 -> To Version 10.0.0-rc.3.25578.104 Microsoft.NET.Sdk From Version 10.0.100-rc.2.25555.107 -> To Version 10.0.100-rc.3.25578.104 --- eng/Version.Details.xml | 40 ++++++++++++++++++++-------------------- eng/Versions.props | 10 +++++----- global.json | 4 ++-- 3 files changed, 27 insertions(+), 27 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index aebdca33f44..bfae994b55c 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,39 +1,39 @@ - + https://github.com/dotnet/dotnet - a00271037957320337a6ad2c3a74261ed8c3f85d + 3b5d49bb1053c228d431a7ea95a8bec6f9f16ab1 - + https://github.com/dotnet/dotnet - a00271037957320337a6ad2c3a74261ed8c3f85d + 3b5d49bb1053c228d431a7ea95a8bec6f9f16ab1 - + https://github.com/dotnet/dotnet - a00271037957320337a6ad2c3a74261ed8c3f85d + 3b5d49bb1053c228d431a7ea95a8bec6f9f16ab1 - + https://github.com/dotnet/dotnet - a00271037957320337a6ad2c3a74261ed8c3f85d + 3b5d49bb1053c228d431a7ea95a8bec6f9f16ab1 - + https://github.com/dotnet/dotnet - a00271037957320337a6ad2c3a74261ed8c3f85d + 3b5d49bb1053c228d431a7ea95a8bec6f9f16ab1 - + https://github.com/dotnet/dotnet - a00271037957320337a6ad2c3a74261ed8c3f85d + 3b5d49bb1053c228d431a7ea95a8bec6f9f16ab1 - + https://github.com/dotnet/dotnet - a00271037957320337a6ad2c3a74261ed8c3f85d + 3b5d49bb1053c228d431a7ea95a8bec6f9f16ab1 - + https://github.com/dotnet/dotnet - a00271037957320337a6ad2c3a74261ed8c3f85d + 3b5d49bb1053c228d431a7ea95a8bec6f9f16ab1 https://github.com/dotnet/xharness @@ -55,12 +55,12 @@ 88c2c7ae772437921d85186318dd4320c4848618 https://github.com/dotnet/maui - - a00271037957320337a6ad2c3a74261ed8c3f85d + + 3b5d49bb1053c228d431a7ea95a8bec6f9f16ab1 https://github.com/dotnet/dotnet - - a00271037957320337a6ad2c3a74261ed8c3f85d + + 3b5d49bb1053c228d431a7ea95a8bec6f9f16ab1 https://github.com/dotnet/dotnet diff --git a/eng/Versions.props b/eng/Versions.props index c10d365ad34..a6a4d550418 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -7,12 +7,12 @@ - 10.0.0-rc.3.25577.109 - 10.0.0-rc.3.25577.109 - 10.0.0-rc.3.25577.109 - 10.0.0-rc.3.25577.109 + 10.0.0-rc.3.25578.104 + 10.0.0-rc.3.25578.104 + 10.0.0-rc.3.25578.104 + 10.0.0-rc.3.25578.104 0.14.1-nightly.20250107.205 - 10.0.0-rc.3.25577.109 + 10.0.0-rc.3.25578.104 10.0.0-prerelease.25475.1 diff --git a/global.json b/global.json index 54a5c328020..fa18463117b 100644 --- a/global.json +++ b/global.json @@ -8,8 +8,8 @@ "dotnet": "10.0.100-rc.2.25502.107" }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "11.0.0-beta.25577.109", - "Microsoft.DotNet.Helix.Sdk": "11.0.0-beta.25577.109" + "Microsoft.DotNet.Arcade.Sdk": "11.0.0-beta.25578.104", + "Microsoft.DotNet.Helix.Sdk": "11.0.0-beta.25578.104" }, "native-tools": { "python3": "3.7.1" From 09ef5dddf14296398badacfc6ffbf818b455ea56 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Mon, 1 Dec 2025 22:08:16 +0000 Subject: [PATCH 34/39] Update dependencies from https://github.com/dotnet/dotnet build 20251201.7 On relative base path root Microsoft.DotNet.Arcade.Sdk , Microsoft.DotNet.Helix.Sdk From Version 11.0.0-beta.25555.107 -> To Version 11.0.0-beta.25601.107 Microsoft.Extensions.Logging , Microsoft.NET.ILLink , Microsoft.NET.ILLink.Tasks , Microsoft.NET.Runtime.Emscripten.3.1.56.Node.win-x64 , Microsoft.NETCore.App.Ref , Microsoft.WindowsDesktop.App.Ref , System.Threading.Channels From Version 10.0.0-rc.1.25555.107 -> To Version 10.0.0-rc.3.25601.107 Microsoft.NET.Sdk From Version 10.0.100-rc.2.25555.107 -> To Version 10.0.100-rc.3.25601.107 --- eng/Version.Details.xml | 40 ++++++++++++++++++++-------------------- eng/Versions.props | 10 +++++----- global.json | 4 ++-- 3 files changed, 27 insertions(+), 27 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index bfae994b55c..e80b3938731 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,39 +1,39 @@ - + https://github.com/dotnet/dotnet - 3b5d49bb1053c228d431a7ea95a8bec6f9f16ab1 + 5b183502227a7fe4bec508d1513c016f6eb9783e - + https://github.com/dotnet/dotnet - 3b5d49bb1053c228d431a7ea95a8bec6f9f16ab1 + 5b183502227a7fe4bec508d1513c016f6eb9783e - + https://github.com/dotnet/dotnet - 3b5d49bb1053c228d431a7ea95a8bec6f9f16ab1 + 5b183502227a7fe4bec508d1513c016f6eb9783e - + https://github.com/dotnet/dotnet - 3b5d49bb1053c228d431a7ea95a8bec6f9f16ab1 + 5b183502227a7fe4bec508d1513c016f6eb9783e - + https://github.com/dotnet/dotnet - 3b5d49bb1053c228d431a7ea95a8bec6f9f16ab1 + 5b183502227a7fe4bec508d1513c016f6eb9783e - + https://github.com/dotnet/dotnet - 3b5d49bb1053c228d431a7ea95a8bec6f9f16ab1 + 5b183502227a7fe4bec508d1513c016f6eb9783e - + https://github.com/dotnet/dotnet - 3b5d49bb1053c228d431a7ea95a8bec6f9f16ab1 + 5b183502227a7fe4bec508d1513c016f6eb9783e - + https://github.com/dotnet/dotnet - 3b5d49bb1053c228d431a7ea95a8bec6f9f16ab1 + 5b183502227a7fe4bec508d1513c016f6eb9783e https://github.com/dotnet/xharness @@ -55,12 +55,12 @@ 88c2c7ae772437921d85186318dd4320c4848618 https://github.com/dotnet/maui - - 3b5d49bb1053c228d431a7ea95a8bec6f9f16ab1 + + 5b183502227a7fe4bec508d1513c016f6eb9783e https://github.com/dotnet/dotnet - - 3b5d49bb1053c228d431a7ea95a8bec6f9f16ab1 + + 5b183502227a7fe4bec508d1513c016f6eb9783e https://github.com/dotnet/dotnet diff --git a/eng/Versions.props b/eng/Versions.props index a6a4d550418..d4607ae6878 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -7,12 +7,12 @@ - 10.0.0-rc.3.25578.104 - 10.0.0-rc.3.25578.104 - 10.0.0-rc.3.25578.104 - 10.0.0-rc.3.25578.104 + 10.0.0-rc.3.25601.107 + 10.0.0-rc.3.25601.107 + 10.0.0-rc.3.25601.107 + 10.0.0-rc.3.25601.107 0.14.1-nightly.20250107.205 - 10.0.0-rc.3.25578.104 + 10.0.0-rc.3.25601.107 10.0.0-prerelease.25475.1 diff --git a/global.json b/global.json index fa18463117b..35dcbbb3c9b 100644 --- a/global.json +++ b/global.json @@ -8,8 +8,8 @@ "dotnet": "10.0.100-rc.2.25502.107" }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "11.0.0-beta.25578.104", - "Microsoft.DotNet.Helix.Sdk": "11.0.0-beta.25578.104" + "Microsoft.DotNet.Arcade.Sdk": "11.0.0-beta.25601.107", + "Microsoft.DotNet.Helix.Sdk": "11.0.0-beta.25601.107" }, "native-tools": { "python3": "3.7.1" From e42d3fee63e0b2b7713c810ff39f39c1404652af Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Tue, 2 Dec 2025 03:40:10 +0000 Subject: [PATCH 35/39] Update dependencies from https://github.com/dotnet/dotnet build 20251201.4 On relative base path root Microsoft.DotNet.Arcade.Sdk , Microsoft.DotNet.Helix.Sdk From Version 11.0.0-beta.25555.107 -> To Version 11.0.0-beta.25601.104 Microsoft.Extensions.Logging , Microsoft.NET.ILLink , Microsoft.NET.ILLink.Tasks , Microsoft.NET.Runtime.Emscripten.3.1.56.Node.win-x64 , Microsoft.NETCore.App.Ref , Microsoft.WindowsDesktop.App.Ref , System.Threading.Channels From Version 10.0.0-rc.1.25555.107 -> To Version 10.0.0-rc.3.25601.104 Microsoft.NET.Sdk From Version 10.0.100-rc.2.25555.107 -> To Version 10.0.100-rc.3.25601.104 --- eng/Version.Details.xml | 40 ++++++++++++++++++++-------------------- eng/Versions.props | 10 +++++----- global.json | 4 ++-- 3 files changed, 27 insertions(+), 27 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index e80b3938731..16a27c8354a 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,39 +1,39 @@ - + https://github.com/dotnet/dotnet - 5b183502227a7fe4bec508d1513c016f6eb9783e + 4e58f5c21350501ab8a82bcf79404606183b39d5 - + https://github.com/dotnet/dotnet - 5b183502227a7fe4bec508d1513c016f6eb9783e + 4e58f5c21350501ab8a82bcf79404606183b39d5 - + https://github.com/dotnet/dotnet - 5b183502227a7fe4bec508d1513c016f6eb9783e + 4e58f5c21350501ab8a82bcf79404606183b39d5 - + https://github.com/dotnet/dotnet - 5b183502227a7fe4bec508d1513c016f6eb9783e + 4e58f5c21350501ab8a82bcf79404606183b39d5 - + https://github.com/dotnet/dotnet - 5b183502227a7fe4bec508d1513c016f6eb9783e + 4e58f5c21350501ab8a82bcf79404606183b39d5 - + https://github.com/dotnet/dotnet - 5b183502227a7fe4bec508d1513c016f6eb9783e + 4e58f5c21350501ab8a82bcf79404606183b39d5 - + https://github.com/dotnet/dotnet - 5b183502227a7fe4bec508d1513c016f6eb9783e + 4e58f5c21350501ab8a82bcf79404606183b39d5 - + https://github.com/dotnet/dotnet - 5b183502227a7fe4bec508d1513c016f6eb9783e + 4e58f5c21350501ab8a82bcf79404606183b39d5 https://github.com/dotnet/xharness @@ -55,12 +55,12 @@ 88c2c7ae772437921d85186318dd4320c4848618 https://github.com/dotnet/maui - - 5b183502227a7fe4bec508d1513c016f6eb9783e + + 4e58f5c21350501ab8a82bcf79404606183b39d5 https://github.com/dotnet/dotnet - - 5b183502227a7fe4bec508d1513c016f6eb9783e + + 4e58f5c21350501ab8a82bcf79404606183b39d5 https://github.com/dotnet/dotnet diff --git a/eng/Versions.props b/eng/Versions.props index d4607ae6878..0a075bbae45 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -7,12 +7,12 @@ - 10.0.0-rc.3.25601.107 - 10.0.0-rc.3.25601.107 - 10.0.0-rc.3.25601.107 - 10.0.0-rc.3.25601.107 + 10.0.0-rc.3.25601.104 + 10.0.0-rc.3.25601.104 + 10.0.0-rc.3.25601.104 + 10.0.0-rc.3.25601.104 0.14.1-nightly.20250107.205 - 10.0.0-rc.3.25601.107 + 10.0.0-rc.3.25601.104 10.0.0-prerelease.25475.1 diff --git a/global.json b/global.json index 35dcbbb3c9b..9c9ea131ce6 100644 --- a/global.json +++ b/global.json @@ -8,8 +8,8 @@ "dotnet": "10.0.100-rc.2.25502.107" }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "11.0.0-beta.25601.107", - "Microsoft.DotNet.Helix.Sdk": "11.0.0-beta.25601.107" + "Microsoft.DotNet.Arcade.Sdk": "11.0.0-beta.25601.104", + "Microsoft.DotNet.Helix.Sdk": "11.0.0-beta.25601.104" }, "native-tools": { "python3": "3.7.1" From c18629b53564839a28c3b8771818ba99dcd42253 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Tue, 2 Dec 2025 12:46:20 +0000 Subject: [PATCH 36/39] Update dependencies from https://github.com/dotnet/dotnet build 20251202.1 On relative base path root Microsoft.DotNet.Arcade.Sdk , Microsoft.DotNet.Helix.Sdk From Version 11.0.0-beta.25555.107 -> To Version 11.0.0-beta.25602.101 Microsoft.Extensions.Logging , Microsoft.NET.ILLink , Microsoft.NET.ILLink.Tasks , Microsoft.NET.Runtime.Emscripten.3.1.56.Node.win-x64 , Microsoft.NETCore.App.Ref , Microsoft.WindowsDesktop.App.Ref , System.Threading.Channels From Version 10.0.0-rc.1.25555.107 -> To Version 10.0.0-rc.3.25602.101 Microsoft.NET.Sdk From Version 10.0.100-rc.2.25555.107 -> To Version 10.0.100-rc.3.25602.101 --- eng/Version.Details.xml | 40 ++++++++++++++++++++-------------------- eng/Versions.props | 10 +++++----- global.json | 4 ++-- 3 files changed, 27 insertions(+), 27 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 16a27c8354a..31d2b17e41c 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,39 +1,39 @@ - + https://github.com/dotnet/dotnet - 4e58f5c21350501ab8a82bcf79404606183b39d5 + 6f4c3c9ad695a899e32a91839c1c6d6ad7198c5f - + https://github.com/dotnet/dotnet - 4e58f5c21350501ab8a82bcf79404606183b39d5 + 6f4c3c9ad695a899e32a91839c1c6d6ad7198c5f - + https://github.com/dotnet/dotnet - 4e58f5c21350501ab8a82bcf79404606183b39d5 + 6f4c3c9ad695a899e32a91839c1c6d6ad7198c5f - + https://github.com/dotnet/dotnet - 4e58f5c21350501ab8a82bcf79404606183b39d5 + 6f4c3c9ad695a899e32a91839c1c6d6ad7198c5f - + https://github.com/dotnet/dotnet - 4e58f5c21350501ab8a82bcf79404606183b39d5 + 6f4c3c9ad695a899e32a91839c1c6d6ad7198c5f - + https://github.com/dotnet/dotnet - 4e58f5c21350501ab8a82bcf79404606183b39d5 + 6f4c3c9ad695a899e32a91839c1c6d6ad7198c5f - + https://github.com/dotnet/dotnet - 4e58f5c21350501ab8a82bcf79404606183b39d5 + 6f4c3c9ad695a899e32a91839c1c6d6ad7198c5f - + https://github.com/dotnet/dotnet - 4e58f5c21350501ab8a82bcf79404606183b39d5 + 6f4c3c9ad695a899e32a91839c1c6d6ad7198c5f https://github.com/dotnet/xharness @@ -55,12 +55,12 @@ 88c2c7ae772437921d85186318dd4320c4848618 https://github.com/dotnet/maui - - 4e58f5c21350501ab8a82bcf79404606183b39d5 + + 6f4c3c9ad695a899e32a91839c1c6d6ad7198c5f https://github.com/dotnet/dotnet - - 4e58f5c21350501ab8a82bcf79404606183b39d5 + + 6f4c3c9ad695a899e32a91839c1c6d6ad7198c5f https://github.com/dotnet/dotnet diff --git a/eng/Versions.props b/eng/Versions.props index 0a075bbae45..7ce23bc428b 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -7,12 +7,12 @@ - 10.0.0-rc.3.25601.104 - 10.0.0-rc.3.25601.104 - 10.0.0-rc.3.25601.104 - 10.0.0-rc.3.25601.104 + 10.0.0-rc.3.25602.101 + 10.0.0-rc.3.25602.101 + 10.0.0-rc.3.25602.101 + 10.0.0-rc.3.25602.101 0.14.1-nightly.20250107.205 - 10.0.0-rc.3.25601.104 + 10.0.0-rc.3.25602.101 10.0.0-prerelease.25475.1 diff --git a/global.json b/global.json index 9c9ea131ce6..dc76de47ebf 100644 --- a/global.json +++ b/global.json @@ -8,8 +8,8 @@ "dotnet": "10.0.100-rc.2.25502.107" }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "11.0.0-beta.25601.104", - "Microsoft.DotNet.Helix.Sdk": "11.0.0-beta.25601.104" + "Microsoft.DotNet.Arcade.Sdk": "11.0.0-beta.25602.101", + "Microsoft.DotNet.Helix.Sdk": "11.0.0-beta.25602.101" }, "native-tools": { "python3": "3.7.1" From 29d200cd57eb5b4a29abb179437934f389946a1b Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Tue, 2 Dec 2025 23:42:43 +0000 Subject: [PATCH 37/39] Update dependencies from https://github.com/dotnet/dotnet build 20251202.5 On relative base path root Microsoft.DotNet.Arcade.Sdk , Microsoft.DotNet.Helix.Sdk From Version 11.0.0-beta.25555.107 -> To Version 11.0.0-beta.25602.105 Microsoft.Extensions.Logging , Microsoft.NET.ILLink , Microsoft.NET.ILLink.Tasks , Microsoft.NET.Runtime.Emscripten.3.1.56.Node.win-x64 , Microsoft.NETCore.App.Ref , Microsoft.WindowsDesktop.App.Ref , System.Threading.Channels From Version 10.0.0-rc.1.25555.107 -> To Version 10.0.0-rc.3.25602.105 Microsoft.NET.Sdk From Version 10.0.100-rc.2.25555.107 -> To Version 10.0.100-rc.3.25602.105 --- eng/Version.Details.xml | 40 ++++++++++++++++++++-------------------- eng/Versions.props | 10 +++++----- global.json | 4 ++-- 3 files changed, 27 insertions(+), 27 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 31d2b17e41c..a8b81314ed3 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,39 +1,39 @@ - + https://github.com/dotnet/dotnet - 6f4c3c9ad695a899e32a91839c1c6d6ad7198c5f + 78c39718bb6e8008ba9d2dbd00d550bee6be9f59 - + https://github.com/dotnet/dotnet - 6f4c3c9ad695a899e32a91839c1c6d6ad7198c5f + 78c39718bb6e8008ba9d2dbd00d550bee6be9f59 - + https://github.com/dotnet/dotnet - 6f4c3c9ad695a899e32a91839c1c6d6ad7198c5f + 78c39718bb6e8008ba9d2dbd00d550bee6be9f59 - + https://github.com/dotnet/dotnet - 6f4c3c9ad695a899e32a91839c1c6d6ad7198c5f + 78c39718bb6e8008ba9d2dbd00d550bee6be9f59 - + https://github.com/dotnet/dotnet - 6f4c3c9ad695a899e32a91839c1c6d6ad7198c5f + 78c39718bb6e8008ba9d2dbd00d550bee6be9f59 - + https://github.com/dotnet/dotnet - 6f4c3c9ad695a899e32a91839c1c6d6ad7198c5f + 78c39718bb6e8008ba9d2dbd00d550bee6be9f59 - + https://github.com/dotnet/dotnet - 6f4c3c9ad695a899e32a91839c1c6d6ad7198c5f + 78c39718bb6e8008ba9d2dbd00d550bee6be9f59 - + https://github.com/dotnet/dotnet - 6f4c3c9ad695a899e32a91839c1c6d6ad7198c5f + 78c39718bb6e8008ba9d2dbd00d550bee6be9f59 https://github.com/dotnet/xharness @@ -55,12 +55,12 @@ 88c2c7ae772437921d85186318dd4320c4848618 https://github.com/dotnet/maui - - 6f4c3c9ad695a899e32a91839c1c6d6ad7198c5f + + 78c39718bb6e8008ba9d2dbd00d550bee6be9f59 https://github.com/dotnet/dotnet - - 6f4c3c9ad695a899e32a91839c1c6d6ad7198c5f + + 78c39718bb6e8008ba9d2dbd00d550bee6be9f59 https://github.com/dotnet/dotnet diff --git a/eng/Versions.props b/eng/Versions.props index 7ce23bc428b..fb181d8f71c 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -7,12 +7,12 @@ - 10.0.0-rc.3.25602.101 - 10.0.0-rc.3.25602.101 - 10.0.0-rc.3.25602.101 - 10.0.0-rc.3.25602.101 + 10.0.0-rc.3.25602.105 + 10.0.0-rc.3.25602.105 + 10.0.0-rc.3.25602.105 + 10.0.0-rc.3.25602.105 0.14.1-nightly.20250107.205 - 10.0.0-rc.3.25602.101 + 10.0.0-rc.3.25602.105 10.0.0-prerelease.25475.1 diff --git a/global.json b/global.json index dc76de47ebf..96c502b3573 100644 --- a/global.json +++ b/global.json @@ -8,8 +8,8 @@ "dotnet": "10.0.100-rc.2.25502.107" }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "11.0.0-beta.25602.101", - "Microsoft.DotNet.Helix.Sdk": "11.0.0-beta.25602.101" + "Microsoft.DotNet.Arcade.Sdk": "11.0.0-beta.25602.105", + "Microsoft.DotNet.Helix.Sdk": "11.0.0-beta.25602.105" }, "native-tools": { "python3": "3.7.1" From 23cab68714c96f3dba33480afa517208f638bb44 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Wed, 3 Dec 2025 06:49:22 +0000 Subject: [PATCH 38/39] Update dependencies from https://github.com/dotnet/dotnet build 20251202.10 On relative base path root Microsoft.DotNet.Arcade.Sdk , Microsoft.DotNet.Helix.Sdk From Version 11.0.0-beta.25555.107 -> To Version 11.0.0-beta.25602.110 Microsoft.Extensions.Logging , Microsoft.NET.ILLink , Microsoft.NET.ILLink.Tasks , Microsoft.NET.Runtime.Emscripten.3.1.56.Node.win-x64 , Microsoft.NETCore.App.Ref , Microsoft.WindowsDesktop.App.Ref , System.Threading.Channels From Version 10.0.0-rc.1.25555.107 -> To Version 10.0.0-rc.3.25602.110 Microsoft.NET.Sdk From Version 10.0.100-rc.2.25555.107 -> To Version 10.0.100-rc.3.25602.110 --- eng/Version.Details.xml | 40 ++++++++++++++++++++-------------------- eng/Versions.props | 10 +++++----- eng/common/tools.ps1 | 4 ---- eng/common/tools.sh | 4 ---- global.json | 4 ++-- 5 files changed, 27 insertions(+), 35 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index a8b81314ed3..b1a71718394 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,39 +1,39 @@ - + https://github.com/dotnet/dotnet - 78c39718bb6e8008ba9d2dbd00d550bee6be9f59 + 54e287dbc5574a713b7167d27db9a4d9f94b7187 - + https://github.com/dotnet/dotnet - 78c39718bb6e8008ba9d2dbd00d550bee6be9f59 + 54e287dbc5574a713b7167d27db9a4d9f94b7187 - + https://github.com/dotnet/dotnet - 78c39718bb6e8008ba9d2dbd00d550bee6be9f59 + 54e287dbc5574a713b7167d27db9a4d9f94b7187 - + https://github.com/dotnet/dotnet - 78c39718bb6e8008ba9d2dbd00d550bee6be9f59 + 54e287dbc5574a713b7167d27db9a4d9f94b7187 - + https://github.com/dotnet/dotnet - 78c39718bb6e8008ba9d2dbd00d550bee6be9f59 + 54e287dbc5574a713b7167d27db9a4d9f94b7187 - + https://github.com/dotnet/dotnet - 78c39718bb6e8008ba9d2dbd00d550bee6be9f59 + 54e287dbc5574a713b7167d27db9a4d9f94b7187 - + https://github.com/dotnet/dotnet - 78c39718bb6e8008ba9d2dbd00d550bee6be9f59 + 54e287dbc5574a713b7167d27db9a4d9f94b7187 - + https://github.com/dotnet/dotnet - 78c39718bb6e8008ba9d2dbd00d550bee6be9f59 + 54e287dbc5574a713b7167d27db9a4d9f94b7187 https://github.com/dotnet/xharness @@ -55,12 +55,12 @@ 88c2c7ae772437921d85186318dd4320c4848618 https://github.com/dotnet/maui - - 78c39718bb6e8008ba9d2dbd00d550bee6be9f59 + + 54e287dbc5574a713b7167d27db9a4d9f94b7187 https://github.com/dotnet/dotnet - - 78c39718bb6e8008ba9d2dbd00d550bee6be9f59 + + 54e287dbc5574a713b7167d27db9a4d9f94b7187 https://github.com/dotnet/dotnet diff --git a/eng/Versions.props b/eng/Versions.props index fb181d8f71c..4455650aa43 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -7,12 +7,12 @@ - 10.0.0-rc.3.25602.105 - 10.0.0-rc.3.25602.105 - 10.0.0-rc.3.25602.105 - 10.0.0-rc.3.25602.105 + 10.0.0-rc.3.25602.110 + 10.0.0-rc.3.25602.110 + 10.0.0-rc.3.25602.110 + 10.0.0-rc.3.25602.110 0.14.1-nightly.20250107.205 - 10.0.0-rc.3.25602.105 + 10.0.0-rc.3.25602.110 10.0.0-prerelease.25475.1 diff --git a/eng/common/tools.ps1 b/eng/common/tools.ps1 index 578705ee4db..1556562c68f 100644 --- a/eng/common/tools.ps1 +++ b/eng/common/tools.ps1 @@ -157,9 +157,6 @@ function InitializeDotNetCli([bool]$install, [bool]$createSdkLocationFile) { return $global:_DotNetInstallDir } - # Don't resolve runtime, shared framework, or SDK from other locations to ensure build determinism - $env:DOTNET_MULTILEVEL_LOOKUP=0 - # Disable first run since we do not need all ASP.NET packages restored. $env:DOTNET_NOLOGO=1 @@ -225,7 +222,6 @@ function InitializeDotNetCli([bool]$install, [bool]$createSdkLocationFile) { # Make Sure that our bootstrapped dotnet cli is available in future steps of the Azure Pipelines build Write-PipelinePrependPath -Path $dotnetRoot - Write-PipelineSetVariable -Name 'DOTNET_MULTILEVEL_LOOKUP' -Value '0' Write-PipelineSetVariable -Name 'DOTNET_NOLOGO' -Value '1' return $global:_DotNetInstallDir = $dotnetRoot diff --git a/eng/common/tools.sh b/eng/common/tools.sh index c1841c9dfd0..6c121300ac7 100755 --- a/eng/common/tools.sh +++ b/eng/common/tools.sh @@ -115,9 +115,6 @@ function InitializeDotNetCli { local install=$1 - # Don't resolve runtime, shared framework, or SDK from other locations to ensure build determinism - export DOTNET_MULTILEVEL_LOOKUP=0 - # Disable first run since we want to control all package sources export DOTNET_NOLOGO=1 @@ -166,7 +163,6 @@ function InitializeDotNetCli { # build steps from using anything other than what we've downloaded. Write-PipelinePrependPath -path "$dotnet_root" - Write-PipelineSetVariable -name "DOTNET_MULTILEVEL_LOOKUP" -value "0" Write-PipelineSetVariable -name "DOTNET_NOLOGO" -value "1" # return value diff --git a/global.json b/global.json index 96c502b3573..f29593e631a 100644 --- a/global.json +++ b/global.json @@ -8,8 +8,8 @@ "dotnet": "10.0.100-rc.2.25502.107" }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "11.0.0-beta.25602.105", - "Microsoft.DotNet.Helix.Sdk": "11.0.0-beta.25602.105" + "Microsoft.DotNet.Arcade.Sdk": "11.0.0-beta.25602.110", + "Microsoft.DotNet.Helix.Sdk": "11.0.0-beta.25602.110" }, "native-tools": { "python3": "3.7.1" From 237062593ee93456a07f74ab3cc3e264a86afb38 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Wed, 3 Dec 2025 11:30:32 +0000 Subject: [PATCH 39/39] Update dependencies from https://github.com/dotnet/dotnet build 20251202.15 On relative base path root Microsoft.DotNet.Arcade.Sdk , Microsoft.DotNet.Helix.Sdk From Version 11.0.0-beta.25555.107 -> To Version 11.0.0-beta.25602.115 Microsoft.Extensions.Logging , Microsoft.NET.ILLink , Microsoft.NET.ILLink.Tasks , Microsoft.NET.Runtime.Emscripten.3.1.56.Node.win-x64 , Microsoft.NETCore.App.Ref , Microsoft.WindowsDesktop.App.Ref , System.Threading.Channels From Version 10.0.0-rc.1.25555.107 -> To Version 10.0.0-rc.3.25602.115 Microsoft.NET.Sdk From Version 10.0.100-rc.2.25555.107 -> To Version 10.0.100-rc.3.25602.115 --- eng/Version.Details.xml | 40 ++++++++++++++++++++-------------------- eng/Versions.props | 10 +++++----- global.json | 4 ++-- 3 files changed, 27 insertions(+), 27 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index b1a71718394..7d406183a46 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,39 +1,39 @@ - + https://github.com/dotnet/dotnet - 54e287dbc5574a713b7167d27db9a4d9f94b7187 + 80284e24ba18160f7d929255c503df3af1e44e71 - + https://github.com/dotnet/dotnet - 54e287dbc5574a713b7167d27db9a4d9f94b7187 + 80284e24ba18160f7d929255c503df3af1e44e71 - + https://github.com/dotnet/dotnet - 54e287dbc5574a713b7167d27db9a4d9f94b7187 + 80284e24ba18160f7d929255c503df3af1e44e71 - + https://github.com/dotnet/dotnet - 54e287dbc5574a713b7167d27db9a4d9f94b7187 + 80284e24ba18160f7d929255c503df3af1e44e71 - + https://github.com/dotnet/dotnet - 54e287dbc5574a713b7167d27db9a4d9f94b7187 + 80284e24ba18160f7d929255c503df3af1e44e71 - + https://github.com/dotnet/dotnet - 54e287dbc5574a713b7167d27db9a4d9f94b7187 + 80284e24ba18160f7d929255c503df3af1e44e71 - + https://github.com/dotnet/dotnet - 54e287dbc5574a713b7167d27db9a4d9f94b7187 + 80284e24ba18160f7d929255c503df3af1e44e71 - + https://github.com/dotnet/dotnet - 54e287dbc5574a713b7167d27db9a4d9f94b7187 + 80284e24ba18160f7d929255c503df3af1e44e71 https://github.com/dotnet/xharness @@ -55,12 +55,12 @@ 88c2c7ae772437921d85186318dd4320c4848618 https://github.com/dotnet/maui - - 54e287dbc5574a713b7167d27db9a4d9f94b7187 + + 80284e24ba18160f7d929255c503df3af1e44e71 https://github.com/dotnet/dotnet - - 54e287dbc5574a713b7167d27db9a4d9f94b7187 + + 80284e24ba18160f7d929255c503df3af1e44e71 https://github.com/dotnet/dotnet diff --git a/eng/Versions.props b/eng/Versions.props index 4455650aa43..680133d9c23 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -7,12 +7,12 @@ - 10.0.0-rc.3.25602.110 - 10.0.0-rc.3.25602.110 - 10.0.0-rc.3.25602.110 - 10.0.0-rc.3.25602.110 + 10.0.0-rc.3.25602.115 + 10.0.0-rc.3.25602.115 + 10.0.0-rc.3.25602.115 + 10.0.0-rc.3.25602.115 0.14.1-nightly.20250107.205 - 10.0.0-rc.3.25602.110 + 10.0.0-rc.3.25602.115 10.0.0-prerelease.25475.1 diff --git a/global.json b/global.json index f29593e631a..0bf5a479209 100644 --- a/global.json +++ b/global.json @@ -8,8 +8,8 @@ "dotnet": "10.0.100-rc.2.25502.107" }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "11.0.0-beta.25602.110", - "Microsoft.DotNet.Helix.Sdk": "11.0.0-beta.25602.110" + "Microsoft.DotNet.Arcade.Sdk": "11.0.0-beta.25602.115", + "Microsoft.DotNet.Helix.Sdk": "11.0.0-beta.25602.115" }, "native-tools": { "python3": "3.7.1"