From 843a41da07499461798234ee17939dfc0de2c0a1 Mon Sep 17 00:00:00 2001 From: Tanya Solyanik Date: Mon, 14 Aug 2023 17:47:11 -0700 Subject: [PATCH 001/222] Update release/8.0 to have pre-release iteration 2, pre-release label rc --- eng/Versions.props | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eng/Versions.props b/eng/Versions.props index d98f9478d..f925a26c5 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -4,7 +4,7 @@ 0 0 rc - 1 + 2 false release From 3254411450d20ddc5e2a878c56f47948dfb72ef6 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Wed, 16 Aug 2023 07:44:32 -0700 Subject: [PATCH 002/222] [release/8.0-rc1] Update dependencies from dotnet/arcade (#3797) Update dependencies from https://github.com/dotnet/arcade build 20230815.4 Microsoft.DotNet.Arcade.Sdk , Microsoft.DotNet.Build.Tasks.Archives , Microsoft.DotNet.Build.Tasks.Feed , Microsoft.DotNet.Build.Tasks.Installers , Microsoft.DotNet.SharedFramework.Sdk , Microsoft.DotNet.VersionTools.Tasks From Version 8.0.0-beta.23411.1 -> To Version 8.0.0-beta.23415.4 Co-authored-by: dotnet-maestro[bot] --- eng/Version.Details.xml | 24 ++++----- eng/Versions.props | 8 +-- eng/common/SetupNugetSources.ps1 | 2 +- eng/common/SetupNugetSources.sh | 2 +- eng/common/native/init-distro-rid.sh | 6 +-- eng/common/sdl/trim-assets-version.ps1 | 75 ++++++++++++++++++++++++++ eng/common/tools.ps1 | 6 ++- global.json | 4 +- 8 files changed, 102 insertions(+), 25 deletions(-) create mode 100644 eng/common/sdl/trim-assets-version.ps1 diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 1262fa262..6d7eb6993 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -151,29 +151,29 @@ - + https://github.com/dotnet/arcade - 9b2af35a6702526dc8a7c5fcadcc44efd0dca170 + 46ff142f43e887d5f9a4d87ef39d72166f61db8d - + https://github.com/dotnet/arcade - 9b2af35a6702526dc8a7c5fcadcc44efd0dca170 + 46ff142f43e887d5f9a4d87ef39d72166f61db8d - + https://github.com/dotnet/arcade - 9b2af35a6702526dc8a7c5fcadcc44efd0dca170 + 46ff142f43e887d5f9a4d87ef39d72166f61db8d - + https://github.com/dotnet/arcade - 9b2af35a6702526dc8a7c5fcadcc44efd0dca170 + 46ff142f43e887d5f9a4d87ef39d72166f61db8d - + https://github.com/dotnet/arcade - 9b2af35a6702526dc8a7c5fcadcc44efd0dca170 + 46ff142f43e887d5f9a4d87ef39d72166f61db8d - + https://github.com/dotnet/arcade - 9b2af35a6702526dc8a7c5fcadcc44efd0dca170 + 46ff142f43e887d5f9a4d87ef39d72166f61db8d diff --git a/eng/Versions.props b/eng/Versions.props index d98f9478d..e8bb19d4b 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -11,10 +11,10 @@ - 8.0.0-beta.23411.1 - 8.0.0-beta.23411.1 - 8.0.0-beta.23411.1 - 8.0.0-beta.23411.1 + 8.0.0-beta.23415.4 + 8.0.0-beta.23415.4 + 8.0.0-beta.23415.4 + 8.0.0-beta.23415.4 4.5.0 4.8.5 diff --git a/eng/common/SetupNugetSources.ps1 b/eng/common/SetupNugetSources.ps1 index 6e9972394..6c65e8192 100644 --- a/eng/common/SetupNugetSources.ps1 +++ b/eng/common/SetupNugetSources.ps1 @@ -153,7 +153,7 @@ if ($dotnet31Source -ne $null) { AddPackageSource -Sources $sources -SourceName "dotnet3.1-internal-transport" -SourceEndPoint "https://pkgs.dev.azure.com/dnceng/_packaging/dotnet3.1-internal-transport/nuget/v2" -Creds $creds -Username $userName -Password $Password } -$dotnetVersions = @('5','6','7') +$dotnetVersions = @('5','6','7','8') foreach ($dotnetVersion in $dotnetVersions) { $feedPrefix = "dotnet" + $dotnetVersion; diff --git a/eng/common/SetupNugetSources.sh b/eng/common/SetupNugetSources.sh index 8af7d899d..d387c7eac 100644 --- a/eng/common/SetupNugetSources.sh +++ b/eng/common/SetupNugetSources.sh @@ -105,7 +105,7 @@ if [ "$?" == "0" ]; then PackageSources+=('dotnet3.1-internal-transport') fi -DotNetVersions=('5' '6' '7') +DotNetVersions=('5' '6' '7' '8') for DotNetVersion in ${DotNetVersions[@]} ; do FeedPrefix="dotnet${DotNetVersion}"; diff --git a/eng/common/native/init-distro-rid.sh b/eng/common/native/init-distro-rid.sh index aba9fe240..de1687b2c 100644 --- a/eng/common/native/init-distro-rid.sh +++ b/eng/common/native/init-distro-rid.sh @@ -79,7 +79,6 @@ getNonPortableDistroRid() # Input: # os: (str) # arch: (str) -# isPortable: (int) # rootfsDir?: (nullable:string) # # Return: @@ -97,10 +96,9 @@ initDistroRidGlobal() { local targetOs="$1" local targetArch="$2" - local isPortable="$3" local rootfsDir="" - if [ "$#" -ge 4 ]; then - rootfsDir="$4" + if [ "$#" -ge 3 ]; then + rootfsDir="$3" fi if [ -n "${rootfsDir}" ]; then diff --git a/eng/common/sdl/trim-assets-version.ps1 b/eng/common/sdl/trim-assets-version.ps1 new file mode 100644 index 000000000..d8cfec910 --- /dev/null +++ b/eng/common/sdl/trim-assets-version.ps1 @@ -0,0 +1,75 @@ +<# +.SYNOPSIS +Install and run the 'Microsoft.DotNet.VersionTools.Cli' tool with the 'trim-artifacts-version' command to trim the version from the NuGet assets file name. + +.PARAMETER InputPath +Full path to directory where artifact packages are stored + +.PARAMETER Recursive +Search for NuGet packages recursively + +#> + +Param( + [string] $InputPath, + [bool] $Recursive = $true +) + +$CliToolName = "Microsoft.DotNet.VersionTools.Cli" + +function Install-VersionTools-Cli { + param( + [Parameter(Mandatory=$true)][string]$Version + ) + + Write-Host "Installing the package '$CliToolName' with a version of '$version' ..." + $feed = "https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet-eng/nuget/v3/index.json" + + $argumentList = @("tool", "install", "--local", "$CliToolName", "--add-source $feed", "--no-cache", "--version $Version") + Start-Process "$dotnet" -Verbose -ArgumentList $argumentList -NoNewWindow -Wait +} + +# ------------------------------------------------------------------- + +if (!(Test-Path $InputPath)) { + Write-Host "Input Path '$InputPath' does not exist" + ExitWithExitCode 1 +} + +$ErrorActionPreference = 'Stop' +Set-StrictMode -Version 2.0 + +$disableConfigureToolsetImport = $true +$global:LASTEXITCODE = 0 + +# `tools.ps1` checks $ci to perform some actions. Since the SDL +# scripts don't necessarily execute in the same agent that run the +# build.ps1/sh script this variable isn't automatically set. +$ci = $true +. $PSScriptRoot\..\tools.ps1 + +try { + $dotnetRoot = InitializeDotNetCli -install:$true + $dotnet = "$dotnetRoot\dotnet.exe" + + $toolsetVersion = Read-ArcadeSdkVersion + Install-VersionTools-Cli -Version $toolsetVersion + + $cliToolFound = (& "$dotnet" tool list --local | Where-Object {$_.Split(' ')[0] -eq $CliToolName}) + if ($null -eq $cliToolFound) { + Write-PipelineTelemetryError -Force -Category 'Sdl' -Message "The '$CliToolName' tool is not installed." + ExitWithExitCode 1 + } + + Exec-BlockVerbosely { + & "$dotnet" $CliToolName trim-assets-version ` + --assets-path $InputPath ` + --recursive $Recursive + Exit-IfNZEC "Sdl" + } +} +catch { + Write-Host $_ + Write-PipelineTelemetryError -Force -Category 'Sdl' -Message $_ + ExitWithExitCode 1 +} \ No newline at end of file diff --git a/eng/common/tools.ps1 b/eng/common/tools.ps1 index c9eced9f7..aa74ab4a8 100644 --- a/eng/common/tools.ps1 +++ b/eng/common/tools.ps1 @@ -671,6 +671,10 @@ function InitializeNativeTools() { } } +function Read-ArcadeSdkVersion() { + return $GlobalJson.'msbuild-sdks'.'Microsoft.DotNet.Arcade.Sdk' +} + function InitializeToolset() { if (Test-Path variable:global:_ToolsetBuildProj) { return $global:_ToolsetBuildProj @@ -678,7 +682,7 @@ function InitializeToolset() { $nugetCache = GetNuGetPackageCachePath - $toolsetVersion = $GlobalJson.'msbuild-sdks'.'Microsoft.DotNet.Arcade.Sdk' + $toolsetVersion = Read-ArcadeSdkVersion $toolsetLocationFile = Join-Path $ToolsetDir "$toolsetVersion.txt" if (Test-Path $toolsetLocationFile) { diff --git a/global.json b/global.json index 6192aa9a6..3732b8713 100644 --- a/global.json +++ b/global.json @@ -3,8 +3,8 @@ "dotnet": "8.0.100-preview.7.23376.3" }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "8.0.0-beta.23411.1", - "Microsoft.DotNet.SharedFramework.Sdk": "8.0.0-beta.23411.1", + "Microsoft.DotNet.Arcade.Sdk": "8.0.0-beta.23415.4", + "Microsoft.DotNet.SharedFramework.Sdk": "8.0.0-beta.23415.4", "Microsoft.Build.NoTargets": "3.7.0", "Microsoft.Build.Traversal": "3.4.0" } From 8160847fdafa6be5f8b4f4da4541a84694147115 Mon Sep 17 00:00:00 2001 From: DotNet Bot Date: Fri, 18 Aug 2023 08:31:55 +0000 Subject: [PATCH 003/222] Merged PR 33233: [internal/release/8.0-rc1] Update dependencies from dnceng/internal/dotnet-wpf This pull request updates the following dependencies [marker]: <> (Begin:Coherency Updates) ## Coherency Updates The following updates ensure that dependencies with a *CoherentParentDependency* attribute were produced in a build used as input to the parent dependency's build. See [Dependency Description Format](https://github.com/dotnet/arcade/blob/master/Documentation/DependencyDescriptionFormat.md#dependency-description-overview) [DependencyUpdate]: <> (Begin) - **Coherency Updates**: - **Microsoft.Private.Winforms**: from 8.0.0-rc.1.23411.1 to 9.0.0-alpha.1.23415.7 (parent: Microsoft.DotNet.Wpf.GitHub) - **Microsoft.Internal.Runtime.WindowsDesktop.Transport**: from 8.0.0-rc.1.23410.15 to 8.0.0-rc.1.23415.2 (parent: Microsoft.Private.Winforms) - **Microsoft.Private.Winforms**: from 8.0.0-rc.1.23411.1 to 9.0.0-alpha.1.23415.7 (parent: Microsoft.DotNet.Wpf.GitHub) - **Microsoft.NETCore.App.Ref**: from 8.0.0-rc.1.23410.15 to 8.0.0-rc.1.23415.2 (parent: Microsoft.Private.Winforms) - **Microsoft.Private.Winforms**: from 8.0.0-rc.1.23411.1 to 9.0.0-alpha.1.23415.7 (parent: Microsoft.DotNet.Wpf.GitHub) - **VS.Redist.Common.NetCore.SharedFramework.x64.8.0**: from 8.0.0-rc.1.23410.15 to 8.0.0-rc.1.23415.2 (parent: Microsoft.Private.Winforms) - **Microsoft.Private.Winforms**: from 8.0.0-rc.1.23411.1 to 9.0.0-alpha.1.23415.7 (parent: Microsoft.DotNet.Wpf.GitHub) - **Microsoft.NETCore.App.Runtime.win-x64**: from 8.0.0-rc.1.23410.15 to 8.0.0-rc.1.23415.2 (parent: Microsoft.Private.Winforms) - **Microsoft.Dotnet.WinForms.ProjectTemplates**: from 8.0.0-rc.1.23411.1 to 9.0.0-alpha.1.23415.7 (parent: Microsoft.DotNet.Wpf.GitHub) - **Microsoft.Private.Winforms**: from 8.0.0-rc.1.23411.1 to 9.0.0-alpha.1.23415.7 (parent: Microsoft.DotNet.Wpf.GitHub) - **Microsoft.Win32.Registry.AccessControl**: from 8.0.0-rc.1.23410.15 to 8.0.0-rc.1.23415.2 (parent: Microsoft.Private.Winforms) - **Microsoft.Private.Winforms**: from 8.0.0-rc.1.23411.1 to 9.0.0-alpha.1.23415.7 (parent: Microsoft.DotNet.Wpf.GitHub) - **Microsoft.Win32.SystemEvents**: from 8.0.0-rc.1.23410.15 to 8.0.0-rc.1.23415.2 (parent: Microsoft.Private.Winforms) - **Microsoft.Private.Winforms**: from 8.0.0-rc.1.23411.1 to 9.0.0-alpha.1.23415.7 (parent: Microsoft.DotNet.Wpf.GitHub) - **System.CodeDom**: from 8.0.0-rc.1.23410.15 to 8.0.0-rc.1.23415.2 (parent: Microsoft.Private.Winforms) - **Microsoft.Private.Winforms**: from 8.0.0-rc.1.23411.1 to 9.0.0-alpha.1.23415.7 (parent: Microsoft.DotNet.Wpf.GitHub) - **System.ComponentModel.Composition**: from 8.0.0-rc.1.23410.15 to 8.0.0-rc.1.23415.2 (parent: Microsoft.Private.Winforms) - **Microsoft.Private.Winforms**: from 8.0.0-rc.1.23411.1 to 9.0.0-alpha.1.23415.7 (parent: Microsoft.DotNet.Wpf.GitHub) - **System.Configuration.ConfigurationManager**: from 8.0.0-rc.1.23410.15 to 8.0.0-rc.1.23415.2 (parent: Microsoft.Private.Winforms) - **Microsoft.Private.Winforms**: from 8.0.0-rc.1.23411.1 to 9.0... --- eng/Version.Details.xml | 154 ++++++++++++++++++++-------------------- eng/Versions.props | 72 +++++++++---------- 2 files changed, 113 insertions(+), 113 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 6d7eb6993..afa9e50f0 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,153 +1,153 @@ - + https://github.com/dotnet/runtime - 786b9872ad306d5b0febdc2e6c820b69e0e232dc + 1eb702ce1efe3581488a37704cee47603a291069 - + https://github.com/dotnet/winforms - 4eae6075b679fb57727d7bee8a6eefd5929aec03 + 65bc7b4786df818a74aba2dbdb6b9553418b840d - - https://github.com/dotnet/wpf - 026f338641b847dace824f36376beae5f5ad021a + + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf + a93822dfa39775a8dc9e3b58a886995c69057d79 - - https://github.com/dotnet/wpf - 026f338641b847dace824f36376beae5f5ad021a + + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf + a93822dfa39775a8dc9e3b58a886995c69057d79 - + https://github.com/dotnet/runtime - 786b9872ad306d5b0febdc2e6c820b69e0e232dc + 1eb702ce1efe3581488a37704cee47603a291069 - + https://github.com/dotnet/runtime - 786b9872ad306d5b0febdc2e6c820b69e0e232dc + 1eb702ce1efe3581488a37704cee47603a291069 - + https://github.com/dotnet/runtime - 786b9872ad306d5b0febdc2e6c820b69e0e232dc + 1eb702ce1efe3581488a37704cee47603a291069 - + https://github.com/dotnet/winforms - 4eae6075b679fb57727d7bee8a6eefd5929aec03 + 65bc7b4786df818a74aba2dbdb6b9553418b840d - - https://github.com/dotnet/wpf - 026f338641b847dace824f36376beae5f5ad021a + + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf + a93822dfa39775a8dc9e3b58a886995c69057d79 - + https://github.com/dotnet/runtime - 786b9872ad306d5b0febdc2e6c820b69e0e232dc + 1eb702ce1efe3581488a37704cee47603a291069 - + https://github.com/dotnet/runtime - 786b9872ad306d5b0febdc2e6c820b69e0e232dc + 1eb702ce1efe3581488a37704cee47603a291069 - + https://github.com/dotnet/runtime - 786b9872ad306d5b0febdc2e6c820b69e0e232dc + 1eb702ce1efe3581488a37704cee47603a291069 - + https://github.com/dotnet/runtime - 786b9872ad306d5b0febdc2e6c820b69e0e232dc + 1eb702ce1efe3581488a37704cee47603a291069 - + https://github.com/dotnet/runtime - 786b9872ad306d5b0febdc2e6c820b69e0e232dc + 1eb702ce1efe3581488a37704cee47603a291069 - + https://github.com/dotnet/runtime - 786b9872ad306d5b0febdc2e6c820b69e0e232dc + 1eb702ce1efe3581488a37704cee47603a291069 - + https://github.com/dotnet/runtime - 786b9872ad306d5b0febdc2e6c820b69e0e232dc + 1eb702ce1efe3581488a37704cee47603a291069 - + https://github.com/dotnet/runtime - 786b9872ad306d5b0febdc2e6c820b69e0e232dc + 1eb702ce1efe3581488a37704cee47603a291069 - + https://github.com/dotnet/runtime - 786b9872ad306d5b0febdc2e6c820b69e0e232dc + 1eb702ce1efe3581488a37704cee47603a291069 - + https://github.com/dotnet/runtime - 786b9872ad306d5b0febdc2e6c820b69e0e232dc + 1eb702ce1efe3581488a37704cee47603a291069 - + https://github.com/dotnet/runtime - 786b9872ad306d5b0febdc2e6c820b69e0e232dc + 1eb702ce1efe3581488a37704cee47603a291069 - + https://github.com/dotnet/runtime - 786b9872ad306d5b0febdc2e6c820b69e0e232dc + 1eb702ce1efe3581488a37704cee47603a291069 - + https://github.com/dotnet/runtime - 786b9872ad306d5b0febdc2e6c820b69e0e232dc + 1eb702ce1efe3581488a37704cee47603a291069 - + https://github.com/dotnet/runtime - 786b9872ad306d5b0febdc2e6c820b69e0e232dc + 1eb702ce1efe3581488a37704cee47603a291069 - + https://github.com/dotnet/runtime - 786b9872ad306d5b0febdc2e6c820b69e0e232dc + 1eb702ce1efe3581488a37704cee47603a291069 - + https://github.com/dotnet/runtime - 786b9872ad306d5b0febdc2e6c820b69e0e232dc + 1eb702ce1efe3581488a37704cee47603a291069 - + https://github.com/dotnet/runtime - 786b9872ad306d5b0febdc2e6c820b69e0e232dc + 1eb702ce1efe3581488a37704cee47603a291069 - + https://github.com/dotnet/runtime - 786b9872ad306d5b0febdc2e6c820b69e0e232dc + 1eb702ce1efe3581488a37704cee47603a291069 - + https://github.com/dotnet/runtime - 786b9872ad306d5b0febdc2e6c820b69e0e232dc + 1eb702ce1efe3581488a37704cee47603a291069 - + https://github.com/dotnet/runtime - 786b9872ad306d5b0febdc2e6c820b69e0e232dc + 1eb702ce1efe3581488a37704cee47603a291069 - + https://github.com/dotnet/runtime - 786b9872ad306d5b0febdc2e6c820b69e0e232dc + 1eb702ce1efe3581488a37704cee47603a291069 - + https://github.com/dotnet/runtime - 786b9872ad306d5b0febdc2e6c820b69e0e232dc + 1eb702ce1efe3581488a37704cee47603a291069 - + https://github.com/dotnet/runtime - 786b9872ad306d5b0febdc2e6c820b69e0e232dc + 1eb702ce1efe3581488a37704cee47603a291069 - + https://github.com/dotnet/runtime - 786b9872ad306d5b0febdc2e6c820b69e0e232dc + 1eb702ce1efe3581488a37704cee47603a291069 - + https://github.com/dotnet/runtime - 786b9872ad306d5b0febdc2e6c820b69e0e232dc + 1eb702ce1efe3581488a37704cee47603a291069 - + https://github.com/dotnet/runtime - 786b9872ad306d5b0febdc2e6c820b69e0e232dc + 1eb702ce1efe3581488a37704cee47603a291069 - + https://github.com/dotnet/runtime - 786b9872ad306d5b0febdc2e6c820b69e0e232dc + 1eb702ce1efe3581488a37704cee47603a291069 - + https://github.com/dotnet/winforms - 4eae6075b679fb57727d7bee8a6eefd5929aec03 + 65bc7b4786df818a74aba2dbdb6b9553418b840d diff --git a/eng/Versions.props b/eng/Versions.props index e8bb19d4b..348439b8e 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -24,51 +24,51 @@ 6.2.4 - 8.0.0-rc.1.23410.15 - 8.0.0-rc.1.23410.15 - 8.0.0-rc.1.23410.15 - 8.0.0-rc.1.23410.15 + 8.0.0-rc.1.23415.2 + 8.0.0-rc.1.23415.2 + 8.0.0-rc.1.23415.2 + 8.0.0-rc.1.23415.2 5.0.0 - 8.0.0-rc.1.23410.15 - 8.0.0-rc.1.23410.15 - 8.0.0-rc.1.23410.15 - 8.0.0-rc.1.23410.15 - 8.0.0-rc.1.23410.15 - 8.0.0-rc.1.23410.15 - 8.0.0-rc.1.23410.15 - 8.0.0-rc.1.23410.15 - 8.0.0-rc.1.23410.15 - 8.0.0-rc.1.23410.15 - 8.0.0-rc.1.23410.15 - 8.0.0-rc.1.23410.15 + 8.0.0-rc.1.23415.2 + 8.0.0-rc.1.23415.2 + 8.0.0-rc.1.23415.2 + 8.0.0-rc.1.23415.2 + 8.0.0-rc.1.23415.2 + 8.0.0-rc.1.23415.2 + 8.0.0-rc.1.23415.2 + 8.0.0-rc.1.23415.2 + 8.0.0-rc.1.23415.2 + 8.0.0-rc.1.23415.2 + 8.0.0-rc.1.23415.2 + 8.0.0-rc.1.23415.2 5.0.0 - 8.0.0-rc.1.23410.15 + 8.0.0-rc.1.23415.2 5.0.0 - 8.0.0-rc.1.23410.15 - 8.0.0-rc.1.23410.15 - 8.0.0-rc.1.23410.15 - 8.0.0-rc.1.23410.15 + 8.0.0-rc.1.23415.2 + 8.0.0-rc.1.23415.2 + 8.0.0-rc.1.23415.2 + 8.0.0-rc.1.23415.2 6.0.0 5.0.0 - 8.0.0-rc.1.23410.15 - 8.0.0-rc.1.23410.15 - 8.0.0-rc.1.23410.15 - 8.0.0-rc.1.23410.15 + 8.0.0-rc.1.23415.2 + 8.0.0-rc.1.23415.2 + 8.0.0-rc.1.23415.2 + 8.0.0-rc.1.23415.2 5.0.0 - 8.0.0-rc.1.23410.15 - 8.0.0-rc.1.23410.15 - 8.0.0-rc.1.23410.15 - 8.0.0-rc.1.23410.15 - 8.0.0-rc.1.23410.15 - 8.0.0-rc.1.23410.15 + 8.0.0-rc.1.23415.2 + 8.0.0-rc.1.23415.2 + 8.0.0-rc.1.23415.2 + 8.0.0-rc.1.23415.2 + 8.0.0-rc.1.23415.2 + 8.0.0-rc.1.23415.2 4.10.0 - 8.0.0-rc.1.23411.1 - 8.0.0-rc.1.23411.1 - 8.0.0-rc.1.23411.1 + 9.0.0-alpha.1.23415.7 + 9.0.0-alpha.1.23415.7 + 9.0.0-alpha.1.23415.7 - 8.0.0-rc.1.23412.1 - 8.0.0-rc.1.23412.1 + 8.0.0-rc.1.23417.1 + 8.0.0-rc.1.23417.1 From 698dc2187d53c8b81ffce31b68a649974e4d4a75 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Fri, 18 Aug 2023 23:07:43 +0000 Subject: [PATCH 004/222] [release/8.0] Update dependencies from dotnet/arcade (#3802) [release/8.0] Update dependencies from dotnet/arcade --- eng/Version.Details.xml | 24 ++++---- eng/Versions.props | 8 +-- eng/common/SetupNugetSources.ps1 | 2 +- eng/common/SetupNugetSources.sh | 2 +- eng/common/native/init-compiler.sh | 2 +- eng/common/native/init-distro-rid.sh | 6 +- eng/common/sdl/trim-assets-version.ps1 | 75 ++++++++++++++++++++++++ eng/common/templates/job/execute-sdl.yml | 5 ++ eng/common/tools.ps1 | 6 +- global.json | 4 +- 10 files changed, 108 insertions(+), 26 deletions(-) create mode 100644 eng/common/sdl/trim-assets-version.ps1 diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 1262fa262..fd2bdf6be 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -151,29 +151,29 @@ - + https://github.com/dotnet/arcade - 9b2af35a6702526dc8a7c5fcadcc44efd0dca170 + 7837a0b504ed9a598daebd50f20520ccda5fe2b1 - + https://github.com/dotnet/arcade - 9b2af35a6702526dc8a7c5fcadcc44efd0dca170 + 7837a0b504ed9a598daebd50f20520ccda5fe2b1 - + https://github.com/dotnet/arcade - 9b2af35a6702526dc8a7c5fcadcc44efd0dca170 + 7837a0b504ed9a598daebd50f20520ccda5fe2b1 - + https://github.com/dotnet/arcade - 9b2af35a6702526dc8a7c5fcadcc44efd0dca170 + 7837a0b504ed9a598daebd50f20520ccda5fe2b1 - + https://github.com/dotnet/arcade - 9b2af35a6702526dc8a7c5fcadcc44efd0dca170 + 7837a0b504ed9a598daebd50f20520ccda5fe2b1 - + https://github.com/dotnet/arcade - 9b2af35a6702526dc8a7c5fcadcc44efd0dca170 + 7837a0b504ed9a598daebd50f20520ccda5fe2b1 diff --git a/eng/Versions.props b/eng/Versions.props index f925a26c5..8449ca738 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -11,10 +11,10 @@ - 8.0.0-beta.23411.1 - 8.0.0-beta.23411.1 - 8.0.0-beta.23411.1 - 8.0.0-beta.23411.1 + 8.0.0-beta.23417.3 + 8.0.0-beta.23417.3 + 8.0.0-beta.23417.3 + 8.0.0-beta.23417.3 4.5.0 4.8.5 diff --git a/eng/common/SetupNugetSources.ps1 b/eng/common/SetupNugetSources.ps1 index 6e9972394..6c65e8192 100644 --- a/eng/common/SetupNugetSources.ps1 +++ b/eng/common/SetupNugetSources.ps1 @@ -153,7 +153,7 @@ if ($dotnet31Source -ne $null) { AddPackageSource -Sources $sources -SourceName "dotnet3.1-internal-transport" -SourceEndPoint "https://pkgs.dev.azure.com/dnceng/_packaging/dotnet3.1-internal-transport/nuget/v2" -Creds $creds -Username $userName -Password $Password } -$dotnetVersions = @('5','6','7') +$dotnetVersions = @('5','6','7','8') foreach ($dotnetVersion in $dotnetVersions) { $feedPrefix = "dotnet" + $dotnetVersion; diff --git a/eng/common/SetupNugetSources.sh b/eng/common/SetupNugetSources.sh index 8af7d899d..d387c7eac 100644 --- a/eng/common/SetupNugetSources.sh +++ b/eng/common/SetupNugetSources.sh @@ -105,7 +105,7 @@ if [ "$?" == "0" ]; then PackageSources+=('dotnet3.1-internal-transport') fi -DotNetVersions=('5' '6' '7') +DotNetVersions=('5' '6' '7' '8') for DotNetVersion in ${DotNetVersions[@]} ; do FeedPrefix="dotnet${DotNetVersion}"; diff --git a/eng/common/native/init-compiler.sh b/eng/common/native/init-compiler.sh index 517401b68..f5c1ec7ea 100644 --- a/eng/common/native/init-compiler.sh +++ b/eng/common/native/init-compiler.sh @@ -63,7 +63,7 @@ if [ -z "$CLR_CC" ]; then # Set default versions if [ -z "$majorVersion" ]; then # note: gcc (all versions) and clang versions higher than 6 do not have minor version in file name, if it is zero. - if [ "$compiler" = "clang" ]; then versions="16 15 14 13 12 11 10 9 8 7 6.0 5.0 4.0 3.9 3.8 3.7 3.6 3.5" + if [ "$compiler" = "clang" ]; then versions="17 16 15 14 13 12 11 10 9 8 7 6.0 5.0 4.0 3.9 3.8 3.7 3.6 3.5" elif [ "$compiler" = "gcc" ]; then versions="13 12 11 10 9 8 7 6 5 4.9"; fi for version in $versions; do diff --git a/eng/common/native/init-distro-rid.sh b/eng/common/native/init-distro-rid.sh index aba9fe240..de1687b2c 100644 --- a/eng/common/native/init-distro-rid.sh +++ b/eng/common/native/init-distro-rid.sh @@ -79,7 +79,6 @@ getNonPortableDistroRid() # Input: # os: (str) # arch: (str) -# isPortable: (int) # rootfsDir?: (nullable:string) # # Return: @@ -97,10 +96,9 @@ initDistroRidGlobal() { local targetOs="$1" local targetArch="$2" - local isPortable="$3" local rootfsDir="" - if [ "$#" -ge 4 ]; then - rootfsDir="$4" + if [ "$#" -ge 3 ]; then + rootfsDir="$3" fi if [ -n "${rootfsDir}" ]; then diff --git a/eng/common/sdl/trim-assets-version.ps1 b/eng/common/sdl/trim-assets-version.ps1 new file mode 100644 index 000000000..a2e004877 --- /dev/null +++ b/eng/common/sdl/trim-assets-version.ps1 @@ -0,0 +1,75 @@ +<# +.SYNOPSIS +Install and run the 'Microsoft.DotNet.VersionTools.Cli' tool with the 'trim-artifacts-version' command to trim the version from the NuGet assets file name. + +.PARAMETER InputPath +Full path to directory where artifact packages are stored + +.PARAMETER Recursive +Search for NuGet packages recursively + +#> + +Param( + [string] $InputPath, + [bool] $Recursive = $true +) + +$CliToolName = "Microsoft.DotNet.VersionTools.Cli" + +function Install-VersionTools-Cli { + param( + [Parameter(Mandatory=$true)][string]$Version + ) + + Write-Host "Installing the package '$CliToolName' with a version of '$version' ..." + $feed = "https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet-eng/nuget/v3/index.json" + + $argumentList = @("tool", "install", "--local", "$CliToolName", "--add-source $feed", "--no-cache", "--version $Version", "--create-manifest-if-needed") + Start-Process "$dotnet" -Verbose -ArgumentList $argumentList -NoNewWindow -Wait +} + +# ------------------------------------------------------------------- + +if (!(Test-Path $InputPath)) { + Write-Host "Input Path '$InputPath' does not exist" + ExitWithExitCode 1 +} + +$ErrorActionPreference = 'Stop' +Set-StrictMode -Version 2.0 + +$disableConfigureToolsetImport = $true +$global:LASTEXITCODE = 0 + +# `tools.ps1` checks $ci to perform some actions. Since the SDL +# scripts don't necessarily execute in the same agent that run the +# build.ps1/sh script this variable isn't automatically set. +$ci = $true +. $PSScriptRoot\..\tools.ps1 + +try { + $dotnetRoot = InitializeDotNetCli -install:$true + $dotnet = "$dotnetRoot\dotnet.exe" + + $toolsetVersion = Read-ArcadeSdkVersion + Install-VersionTools-Cli -Version $toolsetVersion + + $cliToolFound = (& "$dotnet" tool list --local | Where-Object {$_.Split(' ')[0] -eq $CliToolName}) + if ($null -eq $cliToolFound) { + Write-PipelineTelemetryError -Force -Category 'Sdl' -Message "The '$CliToolName' tool is not installed." + ExitWithExitCode 1 + } + + Exec-BlockVerbosely { + & "$dotnet" $CliToolName trim-assets-version ` + --assets-path $InputPath ` + --recursive $Recursive + Exit-IfNZEC "Sdl" + } +} +catch { + Write-Host $_ + Write-PipelineTelemetryError -Force -Category 'Sdl' -Message $_ + ExitWithExitCode 1 +} \ No newline at end of file diff --git a/eng/common/templates/job/execute-sdl.yml b/eng/common/templates/job/execute-sdl.yml index 7aabaa180..7870f93bc 100644 --- a/eng/common/templates/job/execute-sdl.yml +++ b/eng/common/templates/job/execute-sdl.yml @@ -105,6 +105,11 @@ jobs: downloadPath: $(Build.ArtifactStagingDirectory)\artifacts checkDownloadedFiles: true + - powershell: eng/common/sdl/trim-assets-version.ps1 + -InputPath $(Build.ArtifactStagingDirectory)\artifacts + displayName: Trim the version from the NuGet packages + continueOnError: ${{ parameters.sdlContinueOnError }} + - powershell: eng/common/sdl/extract-artifact-packages.ps1 -InputPath $(Build.ArtifactStagingDirectory)\artifacts\BlobArtifacts -ExtractPath $(Build.ArtifactStagingDirectory)\artifacts\BlobArtifacts diff --git a/eng/common/tools.ps1 b/eng/common/tools.ps1 index c9eced9f7..aa74ab4a8 100644 --- a/eng/common/tools.ps1 +++ b/eng/common/tools.ps1 @@ -671,6 +671,10 @@ function InitializeNativeTools() { } } +function Read-ArcadeSdkVersion() { + return $GlobalJson.'msbuild-sdks'.'Microsoft.DotNet.Arcade.Sdk' +} + function InitializeToolset() { if (Test-Path variable:global:_ToolsetBuildProj) { return $global:_ToolsetBuildProj @@ -678,7 +682,7 @@ function InitializeToolset() { $nugetCache = GetNuGetPackageCachePath - $toolsetVersion = $GlobalJson.'msbuild-sdks'.'Microsoft.DotNet.Arcade.Sdk' + $toolsetVersion = Read-ArcadeSdkVersion $toolsetLocationFile = Join-Path $ToolsetDir "$toolsetVersion.txt" if (Test-Path $toolsetLocationFile) { diff --git a/global.json b/global.json index 6192aa9a6..ddd712f58 100644 --- a/global.json +++ b/global.json @@ -3,8 +3,8 @@ "dotnet": "8.0.100-preview.7.23376.3" }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "8.0.0-beta.23411.1", - "Microsoft.DotNet.SharedFramework.Sdk": "8.0.0-beta.23411.1", + "Microsoft.DotNet.Arcade.Sdk": "8.0.0-beta.23417.3", + "Microsoft.DotNet.SharedFramework.Sdk": "8.0.0-beta.23417.3", "Microsoft.Build.NoTargets": "3.7.0", "Microsoft.Build.Traversal": "3.4.0" } From 9887c967c9d0784ea8582216007307abcf4f2341 Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Sun, 20 Aug 2023 23:56:02 +0000 Subject: [PATCH 005/222] Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-wpf build 20230820.4 Microsoft.DotNet.Wpf.GitHub , Microsoft.DotNet.Wpf.ProjectTemplates , Microsoft.NET.Sdk.WindowsDesktop From Version 8.0.0-rc.1.23417.1 -> To Version 8.0.0-rc.1.23420.4 Dependency coherency updates Microsoft.Private.Winforms,Microsoft.Internal.Runtime.WindowsDesktop.Transport,Microsoft.Private.Winforms,Microsoft.NETCore.App.Ref,Microsoft.Private.Winforms,VS.Redist.Common.NetCore.SharedFramework.x64.8.0,Microsoft.Private.Winforms,Microsoft.NETCore.App.Runtime.win-x64,Microsoft.Dotnet.WinForms.ProjectTemplates,Microsoft.Private.Winforms,Microsoft.Win32.Registry.AccessControl,Microsoft.Private.Winforms,Microsoft.Win32.SystemEvents,Microsoft.Private.Winforms,System.CodeDom,Microsoft.Private.Winforms,System.ComponentModel.Composition,Microsoft.Private.Winforms,System.Configuration.ConfigurationManager,Microsoft.Private.Winforms,System.Data.Odbc,Microsoft.Private.Winforms,System.Data.OleDb,Microsoft.Private.Winforms,System.Diagnostics.EventLog,Microsoft.Private.Winforms,System.Diagnostics.PerformanceCounter,Microsoft.Private.Winforms,System.DirectoryServices.AccountManagement,Microsoft.Private.Winforms,System.DirectoryServices.Protocols,Microsoft.Private.Winforms,System.DirectoryServices,Microsoft.Private.Winforms,System.IO.Packaging,Microsoft.Private.Winforms,System.IO.Ports,Microsoft.Private.Winforms,System.Management,Microsoft.Private.Winforms,System.Reflection.Context,Microsoft.Private.Winforms,System.Runtime.Caching,Microsoft.Private.Winforms,System.Security.Cryptography.Pkcs,Microsoft.Private.Winforms,System.Security.Cryptography.ProtectedData,Microsoft.Private.Winforms,System.Security.Cryptography.Xml,Microsoft.Private.Winforms,System.Security.Permissions,Microsoft.Private.Winforms,System.ServiceModel.Syndication,Microsoft.Private.Winforms,System.ServiceProcess.ServiceController,Microsoft.Private.Winforms,System.Speech,Microsoft.Private.Winforms,System.Text.Encoding.CodePages,Microsoft.Private.Winforms,System.Threading.AccessControl,Microsoft.Private.Winforms,System.ComponentModel.Composition.Registration,System.Drawing.Common From Version 9.0.0-alpha.1.23415.7 -> To Version 8.0.0-rc.1.23419.5 (parent: Microsoft.DotNet.Wpf.GitHub --- eng/Version.Details.xml | 216 ++++++++++++++++++++-------------------- eng/Versions.props | 72 +++++++------- 2 files changed, 144 insertions(+), 144 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index afa9e50f0..674b3c8c5 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,153 +1,153 @@ - - https://github.com/dotnet/runtime - 1eb702ce1efe3581488a37704cee47603a291069 + + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime + 92959931a32a37a19d8e1b1684edc6db0857d7de - - https://github.com/dotnet/winforms - 65bc7b4786df818a74aba2dbdb6b9553418b840d + + https://dev.azure.com/dnceng/internal/_git/dotnet-winforms + 5b91bede9ddc0b672b76010bdf18c2ac2b673221 - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - a93822dfa39775a8dc9e3b58a886995c69057d79 + f8a9263959d3bd594e9e2c85a917222d17278827 - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - a93822dfa39775a8dc9e3b58a886995c69057d79 + f8a9263959d3bd594e9e2c85a917222d17278827 - - https://github.com/dotnet/runtime - 1eb702ce1efe3581488a37704cee47603a291069 + + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime + 92959931a32a37a19d8e1b1684edc6db0857d7de - - https://github.com/dotnet/runtime - 1eb702ce1efe3581488a37704cee47603a291069 + + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime + 92959931a32a37a19d8e1b1684edc6db0857d7de - - https://github.com/dotnet/runtime - 1eb702ce1efe3581488a37704cee47603a291069 + + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime + 92959931a32a37a19d8e1b1684edc6db0857d7de - - https://github.com/dotnet/winforms - 65bc7b4786df818a74aba2dbdb6b9553418b840d + + https://dev.azure.com/dnceng/internal/_git/dotnet-winforms + 5b91bede9ddc0b672b76010bdf18c2ac2b673221 - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - a93822dfa39775a8dc9e3b58a886995c69057d79 + f8a9263959d3bd594e9e2c85a917222d17278827 - - https://github.com/dotnet/runtime - 1eb702ce1efe3581488a37704cee47603a291069 + + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime + 92959931a32a37a19d8e1b1684edc6db0857d7de - - https://github.com/dotnet/runtime - 1eb702ce1efe3581488a37704cee47603a291069 + + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime + 92959931a32a37a19d8e1b1684edc6db0857d7de - - https://github.com/dotnet/runtime - 1eb702ce1efe3581488a37704cee47603a291069 + + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime + 92959931a32a37a19d8e1b1684edc6db0857d7de - - https://github.com/dotnet/runtime - 1eb702ce1efe3581488a37704cee47603a291069 + + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime + 92959931a32a37a19d8e1b1684edc6db0857d7de - - https://github.com/dotnet/runtime - 1eb702ce1efe3581488a37704cee47603a291069 + + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime + 92959931a32a37a19d8e1b1684edc6db0857d7de - - https://github.com/dotnet/runtime - 1eb702ce1efe3581488a37704cee47603a291069 + + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime + 92959931a32a37a19d8e1b1684edc6db0857d7de - - https://github.com/dotnet/runtime - 1eb702ce1efe3581488a37704cee47603a291069 + + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime + 92959931a32a37a19d8e1b1684edc6db0857d7de - - https://github.com/dotnet/runtime - 1eb702ce1efe3581488a37704cee47603a291069 + + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime + 92959931a32a37a19d8e1b1684edc6db0857d7de - - https://github.com/dotnet/runtime - 1eb702ce1efe3581488a37704cee47603a291069 + + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime + 92959931a32a37a19d8e1b1684edc6db0857d7de - - https://github.com/dotnet/runtime - 1eb702ce1efe3581488a37704cee47603a291069 + + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime + 92959931a32a37a19d8e1b1684edc6db0857d7de - - https://github.com/dotnet/runtime - 1eb702ce1efe3581488a37704cee47603a291069 + + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime + 92959931a32a37a19d8e1b1684edc6db0857d7de - - https://github.com/dotnet/runtime - 1eb702ce1efe3581488a37704cee47603a291069 + + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime + 92959931a32a37a19d8e1b1684edc6db0857d7de - - https://github.com/dotnet/runtime - 1eb702ce1efe3581488a37704cee47603a291069 + + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime + 92959931a32a37a19d8e1b1684edc6db0857d7de - - https://github.com/dotnet/runtime - 1eb702ce1efe3581488a37704cee47603a291069 + + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime + 92959931a32a37a19d8e1b1684edc6db0857d7de - - https://github.com/dotnet/runtime - 1eb702ce1efe3581488a37704cee47603a291069 + + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime + 92959931a32a37a19d8e1b1684edc6db0857d7de - - https://github.com/dotnet/runtime - 1eb702ce1efe3581488a37704cee47603a291069 + + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime + 92959931a32a37a19d8e1b1684edc6db0857d7de - - https://github.com/dotnet/runtime - 1eb702ce1efe3581488a37704cee47603a291069 + + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime + 92959931a32a37a19d8e1b1684edc6db0857d7de - - https://github.com/dotnet/runtime - 1eb702ce1efe3581488a37704cee47603a291069 + + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime + 92959931a32a37a19d8e1b1684edc6db0857d7de - - https://github.com/dotnet/runtime - 1eb702ce1efe3581488a37704cee47603a291069 + + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime + 92959931a32a37a19d8e1b1684edc6db0857d7de - - https://github.com/dotnet/runtime - 1eb702ce1efe3581488a37704cee47603a291069 + + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime + 92959931a32a37a19d8e1b1684edc6db0857d7de - - https://github.com/dotnet/runtime - 1eb702ce1efe3581488a37704cee47603a291069 + + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime + 92959931a32a37a19d8e1b1684edc6db0857d7de - - https://github.com/dotnet/runtime - 1eb702ce1efe3581488a37704cee47603a291069 + + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime + 92959931a32a37a19d8e1b1684edc6db0857d7de - - https://github.com/dotnet/runtime - 1eb702ce1efe3581488a37704cee47603a291069 + + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime + 92959931a32a37a19d8e1b1684edc6db0857d7de - - https://github.com/dotnet/runtime - 1eb702ce1efe3581488a37704cee47603a291069 + + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime + 92959931a32a37a19d8e1b1684edc6db0857d7de - - https://github.com/dotnet/runtime - 1eb702ce1efe3581488a37704cee47603a291069 + + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime + 92959931a32a37a19d8e1b1684edc6db0857d7de - - https://github.com/dotnet/runtime - 1eb702ce1efe3581488a37704cee47603a291069 + + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime + 92959931a32a37a19d8e1b1684edc6db0857d7de - - https://github.com/dotnet/runtime - 1eb702ce1efe3581488a37704cee47603a291069 + + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime + 92959931a32a37a19d8e1b1684edc6db0857d7de - - https://github.com/dotnet/winforms - 65bc7b4786df818a74aba2dbdb6b9553418b840d + + https://dev.azure.com/dnceng/internal/_git/dotnet-winforms + 5b91bede9ddc0b672b76010bdf18c2ac2b673221 diff --git a/eng/Versions.props b/eng/Versions.props index 348439b8e..bb401bb65 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -24,51 +24,51 @@ 6.2.4 - 8.0.0-rc.1.23415.2 - 8.0.0-rc.1.23415.2 - 8.0.0-rc.1.23415.2 - 8.0.0-rc.1.23415.2 + 8.0.0-rc.1.23419.4 + 8.0.0-rc.1.23419.4 + 8.0.0-rc.1.23419.4 + 8.0.0-rc.1.23419.4 5.0.0 - 8.0.0-rc.1.23415.2 - 8.0.0-rc.1.23415.2 - 8.0.0-rc.1.23415.2 - 8.0.0-rc.1.23415.2 - 8.0.0-rc.1.23415.2 - 8.0.0-rc.1.23415.2 - 8.0.0-rc.1.23415.2 - 8.0.0-rc.1.23415.2 - 8.0.0-rc.1.23415.2 - 8.0.0-rc.1.23415.2 - 8.0.0-rc.1.23415.2 - 8.0.0-rc.1.23415.2 + 8.0.0-rc.1.23419.4 + 8.0.0-rc.1.23419.4 + 8.0.0-rc.1.23419.4 + 8.0.0-rc.1.23419.4 + 8.0.0-rc.1.23419.4 + 8.0.0-rc.1.23419.4 + 8.0.0-rc.1.23419.4 + 8.0.0-rc.1.23419.4 + 8.0.0-rc.1.23419.4 + 8.0.0-rc.1.23419.4 + 8.0.0-rc.1.23419.4 + 8.0.0-rc.1.23419.4 5.0.0 - 8.0.0-rc.1.23415.2 + 8.0.0-rc.1.23419.4 5.0.0 - 8.0.0-rc.1.23415.2 - 8.0.0-rc.1.23415.2 - 8.0.0-rc.1.23415.2 - 8.0.0-rc.1.23415.2 + 8.0.0-rc.1.23419.4 + 8.0.0-rc.1.23419.4 + 8.0.0-rc.1.23419.4 + 8.0.0-rc.1.23419.4 6.0.0 5.0.0 - 8.0.0-rc.1.23415.2 - 8.0.0-rc.1.23415.2 - 8.0.0-rc.1.23415.2 - 8.0.0-rc.1.23415.2 + 8.0.0-rc.1.23419.4 + 8.0.0-rc.1.23419.4 + 8.0.0-rc.1.23419.4 + 8.0.0-rc.1.23419.4 5.0.0 - 8.0.0-rc.1.23415.2 - 8.0.0-rc.1.23415.2 - 8.0.0-rc.1.23415.2 - 8.0.0-rc.1.23415.2 - 8.0.0-rc.1.23415.2 - 8.0.0-rc.1.23415.2 + 8.0.0-rc.1.23419.4 + 8.0.0-rc.1.23419.4 + 8.0.0-rc.1.23419.4 + 8.0.0-rc.1.23419.4 + 8.0.0-rc.1.23419.4 + 8.0.0-rc.1.23419.4 4.10.0 - 9.0.0-alpha.1.23415.7 - 9.0.0-alpha.1.23415.7 - 9.0.0-alpha.1.23415.7 + 8.0.0-rc.1.23419.5 + 8.0.0-rc.1.23419.5 + 8.0.0-rc.1.23419.5 - 8.0.0-rc.1.23417.1 - 8.0.0-rc.1.23417.1 + 8.0.0-rc.1.23420.4 + 8.0.0-rc.1.23420.4 From e4d44aca1c8e74a2e35ab41fb067bed7015c41f1 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Mon, 21 Aug 2023 17:27:20 +0000 Subject: [PATCH 006/222] [release/8.0] Update dependencies from dotnet/arcade (#3809) [release/8.0] Update dependencies from dotnet/arcade --- eng/Version.Details.xml | 24 ++++++++++++------------ eng/Versions.props | 8 ++++---- global.json | 4 ++-- 3 files changed, 18 insertions(+), 18 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index fd2bdf6be..6fbbb6e71 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -151,29 +151,29 @@ - + https://github.com/dotnet/arcade - 7837a0b504ed9a598daebd50f20520ccda5fe2b1 + 385129cbc980a515ddee2fa56f6b16f3183ed9bc - + https://github.com/dotnet/arcade - 7837a0b504ed9a598daebd50f20520ccda5fe2b1 + 385129cbc980a515ddee2fa56f6b16f3183ed9bc - + https://github.com/dotnet/arcade - 7837a0b504ed9a598daebd50f20520ccda5fe2b1 + 385129cbc980a515ddee2fa56f6b16f3183ed9bc - + https://github.com/dotnet/arcade - 7837a0b504ed9a598daebd50f20520ccda5fe2b1 + 385129cbc980a515ddee2fa56f6b16f3183ed9bc - + https://github.com/dotnet/arcade - 7837a0b504ed9a598daebd50f20520ccda5fe2b1 + 385129cbc980a515ddee2fa56f6b16f3183ed9bc - + https://github.com/dotnet/arcade - 7837a0b504ed9a598daebd50f20520ccda5fe2b1 + 385129cbc980a515ddee2fa56f6b16f3183ed9bc diff --git a/eng/Versions.props b/eng/Versions.props index 8449ca738..2941b4aac 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -11,10 +11,10 @@ - 8.0.0-beta.23417.3 - 8.0.0-beta.23417.3 - 8.0.0-beta.23417.3 - 8.0.0-beta.23417.3 + 8.0.0-beta.23419.1 + 8.0.0-beta.23419.1 + 8.0.0-beta.23419.1 + 8.0.0-beta.23419.1 4.5.0 4.8.5 diff --git a/global.json b/global.json index ddd712f58..16f5d8a61 100644 --- a/global.json +++ b/global.json @@ -3,8 +3,8 @@ "dotnet": "8.0.100-preview.7.23376.3" }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "8.0.0-beta.23417.3", - "Microsoft.DotNet.SharedFramework.Sdk": "8.0.0-beta.23417.3", + "Microsoft.DotNet.Arcade.Sdk": "8.0.0-beta.23419.1", + "Microsoft.DotNet.SharedFramework.Sdk": "8.0.0-beta.23419.1", "Microsoft.Build.NoTargets": "3.7.0", "Microsoft.Build.Traversal": "3.4.0" } From 9de8c00b662e8144f7415a2c8bd587ba9264fa9f Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Mon, 21 Aug 2023 17:29:42 +0000 Subject: [PATCH 007/222] [release/8.0] Update dependencies from dotnet/wpf (#3804) [release/8.0] Update dependencies from dotnet/wpf - Coherency Updates: - Microsoft.Private.Winforms: from 8.0.0-rc.1.23411.1 to 8.0.0-rc.2.23420.2 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Internal.Runtime.WindowsDesktop.Transport: from 8.0.0-rc.1.23410.15 to 8.0.0-rc.2.23417.23 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rc.1.23411.1 to 8.0.0-rc.2.23420.2 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.NETCore.App.Ref: from 8.0.0-rc.1.23410.15 to 8.0.0-rc.2.23417.23 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rc.1.23411.1 to 8.0.0-rc.2.23420.2 (parent: Microsoft.DotNet.Wpf.GitHub) - VS.Redist.Common.NetCore.SharedFramework.x64.8.0: from 8.0.0-rc.1.23410.15 to 8.0.0-rc.2.23417.23 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rc.1.23411.1 to 8.0.0-rc.2.23420.2 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.NETCore.App.Runtime.win-x64: from 8.0.0-rc.1.23410.15 to 8.0.0-rc.2.23417.23 (parent: Microsoft.Private.Winforms) - Microsoft.Dotnet.WinForms.ProjectTemplates: from 8.0.0-rc.1.23411.1 to 8.0.0-rc.2.23420.2 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rc.1.23411.1 to 8.0.0-rc.2.23420.2 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Win32.Registry.AccessControl: from 8.0.0-rc.1.23410.15 to 8.0.0-rc.2.23417.23 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rc.1.23411.1 to 8.0.0-rc.2.23420.2 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Win32.SystemEvents: from 8.0.0-rc.1.23410.15 to 8.0.0-rc.2.23417.23 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rc.1.23411.1 to 8.0.0-rc.2.23420.2 (parent: Microsoft.DotNet.Wpf.GitHub) - System.CodeDom: from 8.0.0-rc.1.23410.15 to 8.0.0-rc.2.23417.23 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rc.1.23411.1 to 8.0.0-rc.2.23420.2 (parent: Microsoft.DotNet.Wpf.GitHub) - System.ComponentModel.Composition: from 8.0.0-rc.1.23410.15 to 8.0.0-rc.2.23417.23 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rc.1.23411.1 to 8.0.0-rc.2.23420.2 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Configuration.ConfigurationManager: from 8.0.0-rc.1.23410.15 to 8.0.0-rc.2.23417.23 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rc.1.23411.1 to 8.0.0-rc.2.23420.2 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Data.Odbc: from 8.0.0-rc.1.23410.15 to 8.0.0-rc.2.23417.23 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rc.1.23411.1 to 8.0.0-rc.2.23420.2 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Data.OleDb: from 8.0.0-rc.1.23410.15 to 8.0.0-rc.2.23417.23 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rc.1.23411.1 to 8.0.0-rc.2.23420.2 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Diagnostics.EventLog: from 8.0.0-rc.1.23410.15 to 8.0.0-rc.2.23417.23 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rc.1.23411.1 to 8.0.0-rc.2.23420.2 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Diagnostics.PerformanceCounter: from 8.0.0-rc.1.23410.15 to 8.0.0-rc.2.23417.23 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rc.1.23411.1 to 8.0.0-rc.2.23420.2 (parent: Microsoft.DotNet.Wpf.GitHub) - System.DirectoryServices.AccountManagement: from 8.0.0-rc.1.23410.15 to 8.0.0-rc.2.23417.23 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rc.1.23411.1 to 8.0.0-rc.2.23420.2 (parent: Microsoft.DotNet.Wpf.GitHub) - System.DirectoryServices.Protocols: from 8.0.0-rc.1.23410.15 to 8.0.0-rc.2.23417.23 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rc.1.23411.1 to 8.0.0-rc.2.23420.2 (parent: Microsoft.DotNet.Wpf.GitHub) - System.DirectoryServices: from 8.0.0-rc.1.23410.15 to 8.0.0-rc.2.23417.23 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rc.1.23411.1 to 8.0.0-rc.2.23420.2 (parent: Microsoft.DotNet.Wpf.GitHub) - System.IO.Packaging: from 8.0.0-rc.1.23410.15 to 8.0.0-rc.2.23417.23 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rc.1.23411.1 to 8.0.0-rc.2.23420.2 (parent: Microsoft.DotNet.Wpf.GitHub) - System.IO.Ports: from 8.0.0-rc.1.23410.15 to 8.0.0-rc.2.23417.23 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rc.1.23411.1 to 8.0.0-rc.2.23420.2 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Management: from 8.0.0-rc.1.23410.15 to 8.0.0-rc.2.23417.23 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rc.1.23411.1 to 8.0.0-rc.2.23420.2 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Reflection.Context: from 8.0.0-rc.1.23410.15 to 8.0.0-rc.2.23417.23 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rc.1.23411.1 to 8.0.0-rc.2.23420.2 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Runtime.Caching: from 8.0.0-rc.1.23410.15 to 8.0.0-rc.2.23417.23 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rc.1.23411.1 to 8.0.0-rc.2.23420.2 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Security.Cryptography.Pkcs: from 8.0.0-rc.1.23410.15 to 8.0.0-rc.2.23417.23 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rc.1.23411.1 to 8.0.0-rc.2.23420.2 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Security.Cryptography.ProtectedData: from 8.0.0-rc.1.23410.15 to 8.0.0-rc.2.23417.23 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rc.1.23411.1 to 8.0.0-rc.2.23420.2 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Security.Cryptography.Xml: from 8.0.0-rc.1.23410.15 to 8.0.0-rc.2.23417.23 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rc.1.23411.1 to 8.0.0-rc.2.23420.2 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Security.Permissions: from 8.0.0-rc.1.23410.15 to 8.0.0-rc.2.23417.23 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rc.1.23411.1 to 8.0.0-rc.2.23420.2 (parent: Microsoft.DotNet.Wpf.GitHub) - System.ServiceModel.Syndication: from 8.0.0-rc.1.23410.15 to 8.0.0-rc.2.23417.23 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rc.1.23411.1 to 8.0.0-rc.2.23420.2 (parent: Microsoft.DotNet.Wpf.GitHub) - System.ServiceProcess.ServiceController: from 8.0.0-rc.1.23410.15 to 8.0.0-rc.2.23417.23 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rc.1.23411.1 to 8.0.0-rc.2.23420.2 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Speech: from 8.0.0-rc.1.23410.15 to 8.0.0-rc.2.23417.23 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rc.1.23411.1 to 8.0.0-rc.2.23420.2 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Text.Encoding.CodePages: from 8.0.0-rc.1.23410.15 to 8.0.0-rc.2.23417.23 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rc.1.23411.1 to 8.0.0-rc.2.23420.2 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Threading.AccessControl: from 8.0.0-rc.1.23410.15 to 8.0.0-rc.2.23417.23 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rc.1.23411.1 to 8.0.0-rc.2.23420.2 (parent: Microsoft.DotNet.Wpf.GitHub) - System.ComponentModel.Composition.Registration: from 8.0.0-rc.1.23410.15 to 8.0.0-rc.2.23417.23 (parent: Microsoft.Private.Winforms) - System.Drawing.Common: from 8.0.0-rc.1.23411.1 to 8.0.0-rc.2.23420.2 (parent: Microsoft.DotNet.Wpf.GitHub) --- eng/Version.Details.xml | 148 ++++++++++++++++++++-------------------- eng/Versions.props | 72 +++++++++---------- 2 files changed, 110 insertions(+), 110 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 6fbbb6e71..e0953c63f 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,153 +1,153 @@ - + https://github.com/dotnet/runtime - 786b9872ad306d5b0febdc2e6c820b69e0e232dc + f7df78f4c9b3944d1b937b264601d7b5da55f3ab - + https://github.com/dotnet/winforms - 4eae6075b679fb57727d7bee8a6eefd5929aec03 + dda048454d7c52e545672150e80d2e9efc01b87f - + https://github.com/dotnet/wpf - 026f338641b847dace824f36376beae5f5ad021a + 0399be4b0a7131584417910bb708d45373e10630 - + https://github.com/dotnet/wpf - 026f338641b847dace824f36376beae5f5ad021a + 0399be4b0a7131584417910bb708d45373e10630 - + https://github.com/dotnet/runtime - 786b9872ad306d5b0febdc2e6c820b69e0e232dc + f7df78f4c9b3944d1b937b264601d7b5da55f3ab - + https://github.com/dotnet/runtime - 786b9872ad306d5b0febdc2e6c820b69e0e232dc + f7df78f4c9b3944d1b937b264601d7b5da55f3ab - + https://github.com/dotnet/runtime - 786b9872ad306d5b0febdc2e6c820b69e0e232dc + f7df78f4c9b3944d1b937b264601d7b5da55f3ab - + https://github.com/dotnet/winforms - 4eae6075b679fb57727d7bee8a6eefd5929aec03 + dda048454d7c52e545672150e80d2e9efc01b87f - + https://github.com/dotnet/wpf - 026f338641b847dace824f36376beae5f5ad021a + 0399be4b0a7131584417910bb708d45373e10630 - + https://github.com/dotnet/runtime - 786b9872ad306d5b0febdc2e6c820b69e0e232dc + f7df78f4c9b3944d1b937b264601d7b5da55f3ab - + https://github.com/dotnet/runtime - 786b9872ad306d5b0febdc2e6c820b69e0e232dc + f7df78f4c9b3944d1b937b264601d7b5da55f3ab - + https://github.com/dotnet/runtime - 786b9872ad306d5b0febdc2e6c820b69e0e232dc + f7df78f4c9b3944d1b937b264601d7b5da55f3ab - + https://github.com/dotnet/runtime - 786b9872ad306d5b0febdc2e6c820b69e0e232dc + f7df78f4c9b3944d1b937b264601d7b5da55f3ab - + https://github.com/dotnet/runtime - 786b9872ad306d5b0febdc2e6c820b69e0e232dc + f7df78f4c9b3944d1b937b264601d7b5da55f3ab - + https://github.com/dotnet/runtime - 786b9872ad306d5b0febdc2e6c820b69e0e232dc + f7df78f4c9b3944d1b937b264601d7b5da55f3ab - + https://github.com/dotnet/runtime - 786b9872ad306d5b0febdc2e6c820b69e0e232dc + f7df78f4c9b3944d1b937b264601d7b5da55f3ab - + https://github.com/dotnet/runtime - 786b9872ad306d5b0febdc2e6c820b69e0e232dc + f7df78f4c9b3944d1b937b264601d7b5da55f3ab - + https://github.com/dotnet/runtime - 786b9872ad306d5b0febdc2e6c820b69e0e232dc + f7df78f4c9b3944d1b937b264601d7b5da55f3ab - + https://github.com/dotnet/runtime - 786b9872ad306d5b0febdc2e6c820b69e0e232dc + f7df78f4c9b3944d1b937b264601d7b5da55f3ab - + https://github.com/dotnet/runtime - 786b9872ad306d5b0febdc2e6c820b69e0e232dc + f7df78f4c9b3944d1b937b264601d7b5da55f3ab - + https://github.com/dotnet/runtime - 786b9872ad306d5b0febdc2e6c820b69e0e232dc + f7df78f4c9b3944d1b937b264601d7b5da55f3ab - + https://github.com/dotnet/runtime - 786b9872ad306d5b0febdc2e6c820b69e0e232dc + f7df78f4c9b3944d1b937b264601d7b5da55f3ab - + https://github.com/dotnet/runtime - 786b9872ad306d5b0febdc2e6c820b69e0e232dc + f7df78f4c9b3944d1b937b264601d7b5da55f3ab - + https://github.com/dotnet/runtime - 786b9872ad306d5b0febdc2e6c820b69e0e232dc + f7df78f4c9b3944d1b937b264601d7b5da55f3ab - + https://github.com/dotnet/runtime - 786b9872ad306d5b0febdc2e6c820b69e0e232dc + f7df78f4c9b3944d1b937b264601d7b5da55f3ab - + https://github.com/dotnet/runtime - 786b9872ad306d5b0febdc2e6c820b69e0e232dc + f7df78f4c9b3944d1b937b264601d7b5da55f3ab - + https://github.com/dotnet/runtime - 786b9872ad306d5b0febdc2e6c820b69e0e232dc + f7df78f4c9b3944d1b937b264601d7b5da55f3ab - + https://github.com/dotnet/runtime - 786b9872ad306d5b0febdc2e6c820b69e0e232dc + f7df78f4c9b3944d1b937b264601d7b5da55f3ab - + https://github.com/dotnet/runtime - 786b9872ad306d5b0febdc2e6c820b69e0e232dc + f7df78f4c9b3944d1b937b264601d7b5da55f3ab - + https://github.com/dotnet/runtime - 786b9872ad306d5b0febdc2e6c820b69e0e232dc + f7df78f4c9b3944d1b937b264601d7b5da55f3ab - + https://github.com/dotnet/runtime - 786b9872ad306d5b0febdc2e6c820b69e0e232dc + f7df78f4c9b3944d1b937b264601d7b5da55f3ab - + https://github.com/dotnet/runtime - 786b9872ad306d5b0febdc2e6c820b69e0e232dc + f7df78f4c9b3944d1b937b264601d7b5da55f3ab - + https://github.com/dotnet/runtime - 786b9872ad306d5b0febdc2e6c820b69e0e232dc + f7df78f4c9b3944d1b937b264601d7b5da55f3ab - + https://github.com/dotnet/runtime - 786b9872ad306d5b0febdc2e6c820b69e0e232dc + f7df78f4c9b3944d1b937b264601d7b5da55f3ab - + https://github.com/dotnet/runtime - 786b9872ad306d5b0febdc2e6c820b69e0e232dc + f7df78f4c9b3944d1b937b264601d7b5da55f3ab - + https://github.com/dotnet/runtime - 786b9872ad306d5b0febdc2e6c820b69e0e232dc + f7df78f4c9b3944d1b937b264601d7b5da55f3ab - + https://github.com/dotnet/winforms - 4eae6075b679fb57727d7bee8a6eefd5929aec03 + dda048454d7c52e545672150e80d2e9efc01b87f diff --git a/eng/Versions.props b/eng/Versions.props index 2941b4aac..28bedd9f3 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -24,51 +24,51 @@ 6.2.4 - 8.0.0-rc.1.23410.15 - 8.0.0-rc.1.23410.15 - 8.0.0-rc.1.23410.15 - 8.0.0-rc.1.23410.15 + 8.0.0-rc.2.23417.23 + 8.0.0-rc.2.23417.23 + 8.0.0-rc.2.23417.23 + 8.0.0-rc.2.23417.23 5.0.0 - 8.0.0-rc.1.23410.15 - 8.0.0-rc.1.23410.15 - 8.0.0-rc.1.23410.15 - 8.0.0-rc.1.23410.15 - 8.0.0-rc.1.23410.15 - 8.0.0-rc.1.23410.15 - 8.0.0-rc.1.23410.15 - 8.0.0-rc.1.23410.15 - 8.0.0-rc.1.23410.15 - 8.0.0-rc.1.23410.15 - 8.0.0-rc.1.23410.15 - 8.0.0-rc.1.23410.15 + 8.0.0-rc.2.23417.23 + 8.0.0-rc.2.23417.23 + 8.0.0-rc.2.23417.23 + 8.0.0-rc.2.23417.23 + 8.0.0-rc.2.23417.23 + 8.0.0-rc.2.23417.23 + 8.0.0-rc.2.23417.23 + 8.0.0-rc.2.23417.23 + 8.0.0-rc.2.23417.23 + 8.0.0-rc.2.23417.23 + 8.0.0-rc.2.23417.23 + 8.0.0-rc.2.23417.23 5.0.0 - 8.0.0-rc.1.23410.15 + 8.0.0-rc.2.23417.23 5.0.0 - 8.0.0-rc.1.23410.15 - 8.0.0-rc.1.23410.15 - 8.0.0-rc.1.23410.15 - 8.0.0-rc.1.23410.15 + 8.0.0-rc.2.23417.23 + 8.0.0-rc.2.23417.23 + 8.0.0-rc.2.23417.23 + 8.0.0-rc.2.23417.23 6.0.0 5.0.0 - 8.0.0-rc.1.23410.15 - 8.0.0-rc.1.23410.15 - 8.0.0-rc.1.23410.15 - 8.0.0-rc.1.23410.15 + 8.0.0-rc.2.23417.23 + 8.0.0-rc.2.23417.23 + 8.0.0-rc.2.23417.23 + 8.0.0-rc.2.23417.23 5.0.0 - 8.0.0-rc.1.23410.15 - 8.0.0-rc.1.23410.15 - 8.0.0-rc.1.23410.15 - 8.0.0-rc.1.23410.15 - 8.0.0-rc.1.23410.15 - 8.0.0-rc.1.23410.15 + 8.0.0-rc.2.23417.23 + 8.0.0-rc.2.23417.23 + 8.0.0-rc.2.23417.23 + 8.0.0-rc.2.23417.23 + 8.0.0-rc.2.23417.23 + 8.0.0-rc.2.23417.23 4.10.0 - 8.0.0-rc.1.23411.1 - 8.0.0-rc.1.23411.1 - 8.0.0-rc.1.23411.1 + 8.0.0-rc.2.23420.2 + 8.0.0-rc.2.23420.2 + 8.0.0-rc.2.23420.2 - 8.0.0-rc.1.23412.1 - 8.0.0-rc.1.23412.1 + 8.0.0-rc.2.23420.3 + 8.0.0-rc.2.23420.3 From 5991cccfd1bbb5ea92ef20902177c089d0fcc5c9 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Mon, 21 Aug 2023 19:02:26 +0000 Subject: [PATCH 008/222] Update dependencies from https://github.com/dotnet/wpf build 20230821.2 Microsoft.DotNet.Wpf.GitHub , Microsoft.DotNet.Wpf.ProjectTemplates , Microsoft.NET.Sdk.WindowsDesktop From Version 8.0.0-rc.2.23420.3 -> To Version 8.0.0-rc.2.23421.2 Dependency coherency updates Microsoft.Private.Winforms,Microsoft.Internal.Runtime.WindowsDesktop.Transport,Microsoft.Private.Winforms,Microsoft.NETCore.App.Ref,Microsoft.Private.Winforms,VS.Redist.Common.NetCore.SharedFramework.x64.8.0,Microsoft.Private.Winforms,Microsoft.NETCore.App.Runtime.win-x64,Microsoft.Dotnet.WinForms.ProjectTemplates,Microsoft.Private.Winforms,Microsoft.Win32.Registry.AccessControl,Microsoft.Private.Winforms,Microsoft.Win32.SystemEvents,Microsoft.Private.Winforms,System.CodeDom,Microsoft.Private.Winforms,System.ComponentModel.Composition,Microsoft.Private.Winforms,System.Configuration.ConfigurationManager,Microsoft.Private.Winforms,System.Data.Odbc,Microsoft.Private.Winforms,System.Data.OleDb,Microsoft.Private.Winforms,System.Diagnostics.EventLog,Microsoft.Private.Winforms,System.Diagnostics.PerformanceCounter,Microsoft.Private.Winforms,System.DirectoryServices.AccountManagement,Microsoft.Private.Winforms,System.DirectoryServices.Protocols,Microsoft.Private.Winforms,System.DirectoryServices,Microsoft.Private.Winforms,System.IO.Packaging,Microsoft.Private.Winforms,System.IO.Ports,Microsoft.Private.Winforms,System.Management,Microsoft.Private.Winforms,System.Reflection.Context,Microsoft.Private.Winforms,System.Runtime.Caching,Microsoft.Private.Winforms,System.Security.Cryptography.Pkcs,Microsoft.Private.Winforms,System.Security.Cryptography.ProtectedData,Microsoft.Private.Winforms,System.Security.Cryptography.Xml,Microsoft.Private.Winforms,System.Security.Permissions,Microsoft.Private.Winforms,System.ServiceModel.Syndication,Microsoft.Private.Winforms,System.ServiceProcess.ServiceController,Microsoft.Private.Winforms,System.Speech,Microsoft.Private.Winforms,System.Text.Encoding.CodePages,Microsoft.Private.Winforms,System.Threading.AccessControl,Microsoft.Private.Winforms,System.ComponentModel.Composition.Registration,System.Drawing.Common From Version 8.0.0-rc.2.23420.2 -> To Version 8.0.0-rc.2.23421.2 (parent: Microsoft.DotNet.Wpf.GitHub --- eng/Version.Details.xml | 148 ++++++++++++++++++++-------------------- eng/Versions.props | 72 +++++++++---------- 2 files changed, 110 insertions(+), 110 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index e0953c63f..1557e51fc 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,153 +1,153 @@ - + https://github.com/dotnet/runtime - f7df78f4c9b3944d1b937b264601d7b5da55f3ab + 90b92bb265a412592c4c152983d7b30c92236dbe - + https://github.com/dotnet/winforms - dda048454d7c52e545672150e80d2e9efc01b87f + e5992fdc772d1a8bfec3d3f8fd5c8117d15342de - + https://github.com/dotnet/wpf - 0399be4b0a7131584417910bb708d45373e10630 + 7d46d19fc426ef2b5f14c6ffe2fd3b88d33004e6 - + https://github.com/dotnet/wpf - 0399be4b0a7131584417910bb708d45373e10630 + 7d46d19fc426ef2b5f14c6ffe2fd3b88d33004e6 - + https://github.com/dotnet/runtime - f7df78f4c9b3944d1b937b264601d7b5da55f3ab + 90b92bb265a412592c4c152983d7b30c92236dbe - + https://github.com/dotnet/runtime - f7df78f4c9b3944d1b937b264601d7b5da55f3ab + 90b92bb265a412592c4c152983d7b30c92236dbe - + https://github.com/dotnet/runtime - f7df78f4c9b3944d1b937b264601d7b5da55f3ab + 90b92bb265a412592c4c152983d7b30c92236dbe - + https://github.com/dotnet/winforms - dda048454d7c52e545672150e80d2e9efc01b87f + e5992fdc772d1a8bfec3d3f8fd5c8117d15342de - + https://github.com/dotnet/wpf - 0399be4b0a7131584417910bb708d45373e10630 + 7d46d19fc426ef2b5f14c6ffe2fd3b88d33004e6 - + https://github.com/dotnet/runtime - f7df78f4c9b3944d1b937b264601d7b5da55f3ab + 90b92bb265a412592c4c152983d7b30c92236dbe - + https://github.com/dotnet/runtime - f7df78f4c9b3944d1b937b264601d7b5da55f3ab + 90b92bb265a412592c4c152983d7b30c92236dbe - + https://github.com/dotnet/runtime - f7df78f4c9b3944d1b937b264601d7b5da55f3ab + 90b92bb265a412592c4c152983d7b30c92236dbe - + https://github.com/dotnet/runtime - f7df78f4c9b3944d1b937b264601d7b5da55f3ab + 90b92bb265a412592c4c152983d7b30c92236dbe - + https://github.com/dotnet/runtime - f7df78f4c9b3944d1b937b264601d7b5da55f3ab + 90b92bb265a412592c4c152983d7b30c92236dbe - + https://github.com/dotnet/runtime - f7df78f4c9b3944d1b937b264601d7b5da55f3ab + 90b92bb265a412592c4c152983d7b30c92236dbe - + https://github.com/dotnet/runtime - f7df78f4c9b3944d1b937b264601d7b5da55f3ab + 90b92bb265a412592c4c152983d7b30c92236dbe - + https://github.com/dotnet/runtime - f7df78f4c9b3944d1b937b264601d7b5da55f3ab + 90b92bb265a412592c4c152983d7b30c92236dbe - + https://github.com/dotnet/runtime - f7df78f4c9b3944d1b937b264601d7b5da55f3ab + 90b92bb265a412592c4c152983d7b30c92236dbe - + https://github.com/dotnet/runtime - f7df78f4c9b3944d1b937b264601d7b5da55f3ab + 90b92bb265a412592c4c152983d7b30c92236dbe - + https://github.com/dotnet/runtime - f7df78f4c9b3944d1b937b264601d7b5da55f3ab + 90b92bb265a412592c4c152983d7b30c92236dbe - + https://github.com/dotnet/runtime - f7df78f4c9b3944d1b937b264601d7b5da55f3ab + 90b92bb265a412592c4c152983d7b30c92236dbe - + https://github.com/dotnet/runtime - f7df78f4c9b3944d1b937b264601d7b5da55f3ab + 90b92bb265a412592c4c152983d7b30c92236dbe - + https://github.com/dotnet/runtime - f7df78f4c9b3944d1b937b264601d7b5da55f3ab + 90b92bb265a412592c4c152983d7b30c92236dbe - + https://github.com/dotnet/runtime - f7df78f4c9b3944d1b937b264601d7b5da55f3ab + 90b92bb265a412592c4c152983d7b30c92236dbe - + https://github.com/dotnet/runtime - f7df78f4c9b3944d1b937b264601d7b5da55f3ab + 90b92bb265a412592c4c152983d7b30c92236dbe - + https://github.com/dotnet/runtime - f7df78f4c9b3944d1b937b264601d7b5da55f3ab + 90b92bb265a412592c4c152983d7b30c92236dbe - + https://github.com/dotnet/runtime - f7df78f4c9b3944d1b937b264601d7b5da55f3ab + 90b92bb265a412592c4c152983d7b30c92236dbe - + https://github.com/dotnet/runtime - f7df78f4c9b3944d1b937b264601d7b5da55f3ab + 90b92bb265a412592c4c152983d7b30c92236dbe - + https://github.com/dotnet/runtime - f7df78f4c9b3944d1b937b264601d7b5da55f3ab + 90b92bb265a412592c4c152983d7b30c92236dbe - + https://github.com/dotnet/runtime - f7df78f4c9b3944d1b937b264601d7b5da55f3ab + 90b92bb265a412592c4c152983d7b30c92236dbe - + https://github.com/dotnet/runtime - f7df78f4c9b3944d1b937b264601d7b5da55f3ab + 90b92bb265a412592c4c152983d7b30c92236dbe - + https://github.com/dotnet/runtime - f7df78f4c9b3944d1b937b264601d7b5da55f3ab + 90b92bb265a412592c4c152983d7b30c92236dbe - + https://github.com/dotnet/runtime - f7df78f4c9b3944d1b937b264601d7b5da55f3ab + 90b92bb265a412592c4c152983d7b30c92236dbe - + https://github.com/dotnet/runtime - f7df78f4c9b3944d1b937b264601d7b5da55f3ab + 90b92bb265a412592c4c152983d7b30c92236dbe - + https://github.com/dotnet/runtime - f7df78f4c9b3944d1b937b264601d7b5da55f3ab + 90b92bb265a412592c4c152983d7b30c92236dbe - + https://github.com/dotnet/runtime - f7df78f4c9b3944d1b937b264601d7b5da55f3ab + 90b92bb265a412592c4c152983d7b30c92236dbe - + https://github.com/dotnet/winforms - dda048454d7c52e545672150e80d2e9efc01b87f + e5992fdc772d1a8bfec3d3f8fd5c8117d15342de diff --git a/eng/Versions.props b/eng/Versions.props index 28bedd9f3..4951992e7 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -24,51 +24,51 @@ 6.2.4 - 8.0.0-rc.2.23417.23 - 8.0.0-rc.2.23417.23 - 8.0.0-rc.2.23417.23 - 8.0.0-rc.2.23417.23 + 8.0.0-rc.2.23418.14 + 8.0.0-rc.2.23418.14 + 8.0.0-rc.2.23418.14 + 8.0.0-rc.2.23418.14 5.0.0 - 8.0.0-rc.2.23417.23 - 8.0.0-rc.2.23417.23 - 8.0.0-rc.2.23417.23 - 8.0.0-rc.2.23417.23 - 8.0.0-rc.2.23417.23 - 8.0.0-rc.2.23417.23 - 8.0.0-rc.2.23417.23 - 8.0.0-rc.2.23417.23 - 8.0.0-rc.2.23417.23 - 8.0.0-rc.2.23417.23 - 8.0.0-rc.2.23417.23 - 8.0.0-rc.2.23417.23 + 8.0.0-rc.2.23418.14 + 8.0.0-rc.2.23418.14 + 8.0.0-rc.2.23418.14 + 8.0.0-rc.2.23418.14 + 8.0.0-rc.2.23418.14 + 8.0.0-rc.2.23418.14 + 8.0.0-rc.2.23418.14 + 8.0.0-rc.2.23418.14 + 8.0.0-rc.2.23418.14 + 8.0.0-rc.2.23418.14 + 8.0.0-rc.2.23418.14 + 8.0.0-rc.2.23418.14 5.0.0 - 8.0.0-rc.2.23417.23 + 8.0.0-rc.2.23418.14 5.0.0 - 8.0.0-rc.2.23417.23 - 8.0.0-rc.2.23417.23 - 8.0.0-rc.2.23417.23 - 8.0.0-rc.2.23417.23 + 8.0.0-rc.2.23418.14 + 8.0.0-rc.2.23418.14 + 8.0.0-rc.2.23418.14 + 8.0.0-rc.2.23418.14 6.0.0 5.0.0 - 8.0.0-rc.2.23417.23 - 8.0.0-rc.2.23417.23 - 8.0.0-rc.2.23417.23 - 8.0.0-rc.2.23417.23 + 8.0.0-rc.2.23418.14 + 8.0.0-rc.2.23418.14 + 8.0.0-rc.2.23418.14 + 8.0.0-rc.2.23418.14 5.0.0 - 8.0.0-rc.2.23417.23 - 8.0.0-rc.2.23417.23 - 8.0.0-rc.2.23417.23 - 8.0.0-rc.2.23417.23 - 8.0.0-rc.2.23417.23 - 8.0.0-rc.2.23417.23 + 8.0.0-rc.2.23418.14 + 8.0.0-rc.2.23418.14 + 8.0.0-rc.2.23418.14 + 8.0.0-rc.2.23418.14 + 8.0.0-rc.2.23418.14 + 8.0.0-rc.2.23418.14 4.10.0 - 8.0.0-rc.2.23420.2 - 8.0.0-rc.2.23420.2 - 8.0.0-rc.2.23420.2 + 8.0.0-rc.2.23421.2 + 8.0.0-rc.2.23421.2 + 8.0.0-rc.2.23421.2 - 8.0.0-rc.2.23420.3 - 8.0.0-rc.2.23420.3 + 8.0.0-rc.2.23421.2 + 8.0.0-rc.2.23421.2 From 48a6322b90e696a9dfa6c8d452a25a94a3db7a43 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Mon, 21 Aug 2023 23:15:33 +0000 Subject: [PATCH 009/222] Update dependencies from https://github.com/dotnet/wpf build 20230821.3 Microsoft.DotNet.Wpf.GitHub , Microsoft.DotNet.Wpf.ProjectTemplates , Microsoft.NET.Sdk.WindowsDesktop From Version 8.0.0-rc.2.23420.3 -> To Version 8.0.0-rc.2.23421.3 Dependency coherency updates Microsoft.Private.Winforms,Microsoft.Internal.Runtime.WindowsDesktop.Transport,Microsoft.Private.Winforms,Microsoft.NETCore.App.Ref,Microsoft.Private.Winforms,VS.Redist.Common.NetCore.SharedFramework.x64.8.0,Microsoft.Private.Winforms,Microsoft.NETCore.App.Runtime.win-x64,Microsoft.Dotnet.WinForms.ProjectTemplates,Microsoft.Private.Winforms,Microsoft.Win32.Registry.AccessControl,Microsoft.Private.Winforms,Microsoft.Win32.SystemEvents,Microsoft.Private.Winforms,System.CodeDom,Microsoft.Private.Winforms,System.ComponentModel.Composition,Microsoft.Private.Winforms,System.Configuration.ConfigurationManager,Microsoft.Private.Winforms,System.Data.Odbc,Microsoft.Private.Winforms,System.Data.OleDb,Microsoft.Private.Winforms,System.Diagnostics.EventLog,Microsoft.Private.Winforms,System.Diagnostics.PerformanceCounter,Microsoft.Private.Winforms,System.DirectoryServices.AccountManagement,Microsoft.Private.Winforms,System.DirectoryServices.Protocols,Microsoft.Private.Winforms,System.DirectoryServices,Microsoft.Private.Winforms,System.IO.Packaging,Microsoft.Private.Winforms,System.IO.Ports,Microsoft.Private.Winforms,System.Management,Microsoft.Private.Winforms,System.Reflection.Context,Microsoft.Private.Winforms,System.Runtime.Caching,Microsoft.Private.Winforms,System.Security.Cryptography.Pkcs,Microsoft.Private.Winforms,System.Security.Cryptography.ProtectedData,Microsoft.Private.Winforms,System.Security.Cryptography.Xml,Microsoft.Private.Winforms,System.Security.Permissions,Microsoft.Private.Winforms,System.ServiceModel.Syndication,Microsoft.Private.Winforms,System.ServiceProcess.ServiceController,Microsoft.Private.Winforms,System.Speech,Microsoft.Private.Winforms,System.Text.Encoding.CodePages,Microsoft.Private.Winforms,System.Threading.AccessControl,Microsoft.Private.Winforms,System.ComponentModel.Composition.Registration,System.Drawing.Common From Version 8.0.0-rc.2.23420.2 -> To Version 8.0.0-rc.2.23421.7 (parent: Microsoft.DotNet.Wpf.GitHub --- eng/Version.Details.xml | 24 ++++++++++++------------ eng/Versions.props | 10 +++++----- 2 files changed, 17 insertions(+), 17 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 1557e51fc..6b1ba88d4 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -5,17 +5,17 @@ https://github.com/dotnet/runtime 90b92bb265a412592c4c152983d7b30c92236dbe - + https://github.com/dotnet/winforms - e5992fdc772d1a8bfec3d3f8fd5c8117d15342de + 0456b5fc9a14eb72b27a64fca5c5ebdcb69d532b - + https://github.com/dotnet/wpf - 7d46d19fc426ef2b5f14c6ffe2fd3b88d33004e6 + 34a96eb7f857de6faadb3d75f98887baff44a189 - + https://github.com/dotnet/wpf - 7d46d19fc426ef2b5f14c6ffe2fd3b88d33004e6 + 34a96eb7f857de6faadb3d75f98887baff44a189 https://github.com/dotnet/runtime @@ -29,13 +29,13 @@ https://github.com/dotnet/runtime 90b92bb265a412592c4c152983d7b30c92236dbe - + https://github.com/dotnet/winforms - e5992fdc772d1a8bfec3d3f8fd5c8117d15342de + 0456b5fc9a14eb72b27a64fca5c5ebdcb69d532b - + https://github.com/dotnet/wpf - 7d46d19fc426ef2b5f14c6ffe2fd3b88d33004e6 + 34a96eb7f857de6faadb3d75f98887baff44a189 https://github.com/dotnet/runtime @@ -145,9 +145,9 @@ https://github.com/dotnet/runtime 90b92bb265a412592c4c152983d7b30c92236dbe - + https://github.com/dotnet/winforms - e5992fdc772d1a8bfec3d3f8fd5c8117d15342de + 0456b5fc9a14eb72b27a64fca5c5ebdcb69d532b diff --git a/eng/Versions.props b/eng/Versions.props index 4951992e7..c0315352f 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -64,11 +64,11 @@ 4.10.0 - 8.0.0-rc.2.23421.2 - 8.0.0-rc.2.23421.2 - 8.0.0-rc.2.23421.2 + 8.0.0-rc.2.23421.7 + 8.0.0-rc.2.23421.7 + 8.0.0-rc.2.23421.7 - 8.0.0-rc.2.23421.2 - 8.0.0-rc.2.23421.2 + 8.0.0-rc.2.23421.3 + 8.0.0-rc.2.23421.3 From 1bfeddbe126780458fa7943c40dd6738dd7a0279 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Wed, 23 Aug 2023 12:45:47 +0000 Subject: [PATCH 010/222] Update dependencies from https://github.com/dotnet/arcade build 20230822.1 Microsoft.DotNet.Arcade.Sdk , Microsoft.DotNet.Build.Tasks.Archives , Microsoft.DotNet.Build.Tasks.Feed , Microsoft.DotNet.Build.Tasks.Installers , Microsoft.DotNet.SharedFramework.Sdk , Microsoft.DotNet.VersionTools.Tasks From Version 8.0.0-beta.23419.1 -> To Version 8.0.0-beta.23422.1 --- eng/Version.Details.xml | 24 +++++++++---------- eng/Versions.props | 8 +++---- eng/common/loc/P22DotNetHtmlLocalization.lss | Bin 3842 -> 1876 bytes global.json | 4 ++-- 4 files changed, 18 insertions(+), 18 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index e0953c63f..b957a5170 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -151,29 +151,29 @@ - + https://github.com/dotnet/arcade - 385129cbc980a515ddee2fa56f6b16f3183ed9bc + 4d9945d230fdd8324ce16a31c7dbd74e27a0fc9b - + https://github.com/dotnet/arcade - 385129cbc980a515ddee2fa56f6b16f3183ed9bc + 4d9945d230fdd8324ce16a31c7dbd74e27a0fc9b - + https://github.com/dotnet/arcade - 385129cbc980a515ddee2fa56f6b16f3183ed9bc + 4d9945d230fdd8324ce16a31c7dbd74e27a0fc9b - + https://github.com/dotnet/arcade - 385129cbc980a515ddee2fa56f6b16f3183ed9bc + 4d9945d230fdd8324ce16a31c7dbd74e27a0fc9b - + https://github.com/dotnet/arcade - 385129cbc980a515ddee2fa56f6b16f3183ed9bc + 4d9945d230fdd8324ce16a31c7dbd74e27a0fc9b - + https://github.com/dotnet/arcade - 385129cbc980a515ddee2fa56f6b16f3183ed9bc + 4d9945d230fdd8324ce16a31c7dbd74e27a0fc9b diff --git a/eng/Versions.props b/eng/Versions.props index 28bedd9f3..380742067 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -11,10 +11,10 @@ - 8.0.0-beta.23419.1 - 8.0.0-beta.23419.1 - 8.0.0-beta.23419.1 - 8.0.0-beta.23419.1 + 8.0.0-beta.23422.1 + 8.0.0-beta.23422.1 + 8.0.0-beta.23422.1 + 8.0.0-beta.23422.1 4.5.0 4.8.5 diff --git a/eng/common/loc/P22DotNetHtmlLocalization.lss b/eng/common/loc/P22DotNetHtmlLocalization.lss index 858a0b237c62ce4f2ee12aa14794f160f6b122b7..5d892d619398f9feeac4cefc1c53ff18a807f732 100644 GIT binary patch literal 1876 zcmd5-O>Y`85WVMDO!tse0|`=3Kq5qFvJwFroLr(PGHdUyD`QjJ8$y14$Ln3lZW2{J zwGs!I&o^(Lhrz|mTEa6oR%kVh&N`>j#re@-x_nwr2#IG`%ct-0baH+K&@f(3mgC!a zLE`z$`_TL4VSG6vqld@GGPwJ;L@RorHxAn^xdXw5(R4X4f7_@k)pTF-lorz22$--N zNp~~4=EJDUfxSBovWjDy#&0y*A$Y%{951Lgf#O!hPmkZU}#I!)Wng z1f<%)R3}u5SL$^NOII+VJC!`W+V>zz0i%$|xtEKJRoWJsS2-4>j6oFy0;9}2)ZXS? z!4+5B;BS?^g*W;n#c6Okuah`~R7l#LlUM`Wwgi;X`GgRCXg2Aj93+p!!wlyufdm#b2J0d!FWGIX~B#Nn{?*T z-%qWy16eI?CAp^@t!rT|vicQ-vsH(!kP=oLa9cnNr~Mvq*K+4!SBpR#0ixlQVLn!4 z_-b`9x-gH#c?z0gti{WerraQ#kQ%)%r?a{+35PnWsUFnNN^8lf0v68Oy&oSBa0E$V ze5J~88to5MDZA?699~0Him^%vH|v?chtS*Ws!BWhyEn^bjuBh5M+wg@h`3AQ cw&^?j6MgS4IM#l5)SHHef6(}&EB`Bh1GJK71^@s6 literal 3842 zcmd^?%T5$g5Qb}Q;yWB!uo4gwSD=IdDhbFa0~=!u%y4NlOykf9`fh|r;uZYH%XVd_Hn3nn?a)ScZi%Hfv^O?o^EPX*xG&pV zdv4F4*^+JAj(y{^Ze6Yo`)Kdu$~&GnS-les=(}Hd4Z$5-wa;woL^azeDs1)bFYF6K zYqo;O3eR7;3PMXZcdt9G7M2L|%(A;+cL+Vh<;40ia7DRYcz+HE1jrRpV_p*&!nF z$63@IaaFcvPRXqUT!EoEiMw~cG<%Xu1rqKRFp4w~aJ8hjgHT7ZDe-mb8W8O!t5`M} ztjgBRJpt|=SdiLxc+i9U&FGh9|IZv$NUelFF6qG*xY~f;wk`WWC*7iH2HNhpSVO7O zyjh))z5&gu%l(Qp>Nx07A`jIOXn!e02v|!Y!amv(`^`P?xq%*=(IC|pQx2Mm#Wop? zaijLey=o_a!^t>PhS7L4AbHDoC--rqkF#Y>vg5i&^y;GPmsmXHUEuiBT|Lj=5A8Un zViJHWkF=5jOaLV5s#-dX{vP4sfVZ=}?;@uYMqc~3{L6QHIy{PC)9lJ@k#y=HUqMdP z=#t_YRzBG-DDIK;Y5PHn(kQ#ieaMsI&5-MIikcQm zB9?pn%E>6AT}IUVSi2;S8K#g0d(Ee4XBw2{|D?DN(56#J`IN_F465Cx8|@w=tHXbj zU&@|NZLLZ7222|77ga@RWjf<2u>)ikm8K_A{31S!HRE05qRWsu=1qcb*PrKMEaNuH zxG7hoiSg&T9>yF6JSZ32L1c$;kl)UW(|FgMr)Xcsb Date: Wed, 23 Aug 2023 16:29:52 +0000 Subject: [PATCH 011/222] Update dependencies from https://github.com/dotnet/wpf build 20230823.3 Microsoft.DotNet.Wpf.GitHub , Microsoft.DotNet.Wpf.ProjectTemplates , Microsoft.NET.Sdk.WindowsDesktop From Version 8.0.0-rc.2.23420.3 -> To Version 8.0.0-rc.2.23423.3 Dependency coherency updates Microsoft.Private.Winforms,Microsoft.Internal.Runtime.WindowsDesktop.Transport,Microsoft.Private.Winforms,Microsoft.NETCore.App.Ref,Microsoft.Private.Winforms,VS.Redist.Common.NetCore.SharedFramework.x64.8.0,Microsoft.Private.Winforms,Microsoft.NETCore.App.Runtime.win-x64,Microsoft.Dotnet.WinForms.ProjectTemplates,Microsoft.Private.Winforms,Microsoft.Win32.Registry.AccessControl,Microsoft.Private.Winforms,Microsoft.Win32.SystemEvents,Microsoft.Private.Winforms,System.CodeDom,Microsoft.Private.Winforms,System.ComponentModel.Composition,Microsoft.Private.Winforms,System.Configuration.ConfigurationManager,Microsoft.Private.Winforms,System.Data.Odbc,Microsoft.Private.Winforms,System.Data.OleDb,Microsoft.Private.Winforms,System.Diagnostics.EventLog,Microsoft.Private.Winforms,System.Diagnostics.PerformanceCounter,Microsoft.Private.Winforms,System.DirectoryServices.AccountManagement,Microsoft.Private.Winforms,System.DirectoryServices.Protocols,Microsoft.Private.Winforms,System.DirectoryServices,Microsoft.Private.Winforms,System.IO.Packaging,Microsoft.Private.Winforms,System.IO.Ports,Microsoft.Private.Winforms,System.Management,Microsoft.Private.Winforms,System.Reflection.Context,Microsoft.Private.Winforms,System.Runtime.Caching,Microsoft.Private.Winforms,System.Security.Cryptography.Pkcs,Microsoft.Private.Winforms,System.Security.Cryptography.ProtectedData,Microsoft.Private.Winforms,System.Security.Cryptography.Xml,Microsoft.Private.Winforms,System.Security.Permissions,Microsoft.Private.Winforms,System.ServiceModel.Syndication,Microsoft.Private.Winforms,System.ServiceProcess.ServiceController,Microsoft.Private.Winforms,System.Speech,Microsoft.Private.Winforms,System.Text.Encoding.CodePages,Microsoft.Private.Winforms,System.Threading.AccessControl,Microsoft.Private.Winforms,System.ComponentModel.Composition.Registration,System.Drawing.Common From Version 8.0.0-rc.2.23420.2 -> To Version 8.0.0-rc.2.23423.2 (parent: Microsoft.DotNet.Wpf.GitHub --- eng/Version.Details.xml | 24 ++++++++++++------------ eng/Versions.props | 10 +++++----- 2 files changed, 17 insertions(+), 17 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 6b1ba88d4..7e3e9b9d6 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -5,17 +5,17 @@ https://github.com/dotnet/runtime 90b92bb265a412592c4c152983d7b30c92236dbe - + https://github.com/dotnet/winforms - 0456b5fc9a14eb72b27a64fca5c5ebdcb69d532b + 8e3450c428dece7623858ec84620158dc2d6552c - + https://github.com/dotnet/wpf - 34a96eb7f857de6faadb3d75f98887baff44a189 + 2ad6d24da21eb8e85fcc22981ca2c76aa3988b5d - + https://github.com/dotnet/wpf - 34a96eb7f857de6faadb3d75f98887baff44a189 + 2ad6d24da21eb8e85fcc22981ca2c76aa3988b5d https://github.com/dotnet/runtime @@ -29,13 +29,13 @@ https://github.com/dotnet/runtime 90b92bb265a412592c4c152983d7b30c92236dbe - + https://github.com/dotnet/winforms - 0456b5fc9a14eb72b27a64fca5c5ebdcb69d532b + 8e3450c428dece7623858ec84620158dc2d6552c - + https://github.com/dotnet/wpf - 34a96eb7f857de6faadb3d75f98887baff44a189 + 2ad6d24da21eb8e85fcc22981ca2c76aa3988b5d https://github.com/dotnet/runtime @@ -145,9 +145,9 @@ https://github.com/dotnet/runtime 90b92bb265a412592c4c152983d7b30c92236dbe - + https://github.com/dotnet/winforms - 0456b5fc9a14eb72b27a64fca5c5ebdcb69d532b + 8e3450c428dece7623858ec84620158dc2d6552c diff --git a/eng/Versions.props b/eng/Versions.props index c0315352f..3a86f8129 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -64,11 +64,11 @@ 4.10.0 - 8.0.0-rc.2.23421.7 - 8.0.0-rc.2.23421.7 - 8.0.0-rc.2.23421.7 + 8.0.0-rc.2.23423.2 + 8.0.0-rc.2.23423.2 + 8.0.0-rc.2.23423.2 - 8.0.0-rc.2.23421.3 - 8.0.0-rc.2.23421.3 + 8.0.0-rc.2.23423.3 + 8.0.0-rc.2.23423.3 From 93ca2638d4ce0008357bb54d2fe218a71029af4b Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Thu, 24 Aug 2023 19:08:15 +0000 Subject: [PATCH 012/222] Update dependencies from https://github.com/dotnet/wpf build 20230824.1 Microsoft.DotNet.Wpf.GitHub , Microsoft.DotNet.Wpf.ProjectTemplates , Microsoft.NET.Sdk.WindowsDesktop From Version 8.0.0-rc.2.23420.3 -> To Version 8.0.0-rc.2.23424.1 Dependency coherency updates Microsoft.Private.Winforms,Microsoft.Internal.Runtime.WindowsDesktop.Transport,Microsoft.Private.Winforms,Microsoft.NETCore.App.Ref,Microsoft.Private.Winforms,VS.Redist.Common.NetCore.SharedFramework.x64.8.0,Microsoft.Private.Winforms,Microsoft.NETCore.App.Runtime.win-x64,Microsoft.Dotnet.WinForms.ProjectTemplates,Microsoft.Private.Winforms,Microsoft.Win32.Registry.AccessControl,Microsoft.Private.Winforms,Microsoft.Win32.SystemEvents,Microsoft.Private.Winforms,System.CodeDom,Microsoft.Private.Winforms,System.ComponentModel.Composition,Microsoft.Private.Winforms,System.Configuration.ConfigurationManager,Microsoft.Private.Winforms,System.Data.Odbc,Microsoft.Private.Winforms,System.Data.OleDb,Microsoft.Private.Winforms,System.Diagnostics.EventLog,Microsoft.Private.Winforms,System.Diagnostics.PerformanceCounter,Microsoft.Private.Winforms,System.DirectoryServices.AccountManagement,Microsoft.Private.Winforms,System.DirectoryServices.Protocols,Microsoft.Private.Winforms,System.DirectoryServices,Microsoft.Private.Winforms,System.IO.Packaging,Microsoft.Private.Winforms,System.IO.Ports,Microsoft.Private.Winforms,System.Management,Microsoft.Private.Winforms,System.Reflection.Context,Microsoft.Private.Winforms,System.Runtime.Caching,Microsoft.Private.Winforms,System.Security.Cryptography.Pkcs,Microsoft.Private.Winforms,System.Security.Cryptography.ProtectedData,Microsoft.Private.Winforms,System.Security.Cryptography.Xml,Microsoft.Private.Winforms,System.Security.Permissions,Microsoft.Private.Winforms,System.ServiceModel.Syndication,Microsoft.Private.Winforms,System.ServiceProcess.ServiceController,Microsoft.Private.Winforms,System.Speech,Microsoft.Private.Winforms,System.Text.Encoding.CodePages,Microsoft.Private.Winforms,System.Threading.AccessControl,Microsoft.Private.Winforms,System.ComponentModel.Composition.Registration,System.Drawing.Common From Version 8.0.0-rc.2.23420.2 -> To Version 8.0.0-rc.2.23424.1 (parent: Microsoft.DotNet.Wpf.GitHub --- eng/Version.Details.xml | 148 ++++++++++++++++++++-------------------- eng/Versions.props | 72 +++++++++---------- 2 files changed, 110 insertions(+), 110 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 7e3e9b9d6..fa183a37c 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,153 +1,153 @@ - + https://github.com/dotnet/runtime - 90b92bb265a412592c4c152983d7b30c92236dbe + 3d1b2543593f0dc3fbbdc2b8cad9b1f8e7554af6 - + https://github.com/dotnet/winforms - 8e3450c428dece7623858ec84620158dc2d6552c + 62be78789f2d7efdb4d115bf7ab0c791a3c87425 - + https://github.com/dotnet/wpf - 2ad6d24da21eb8e85fcc22981ca2c76aa3988b5d + 091256088cd99f2f0fe0983860d4232692c624f1 - + https://github.com/dotnet/wpf - 2ad6d24da21eb8e85fcc22981ca2c76aa3988b5d + 091256088cd99f2f0fe0983860d4232692c624f1 - + https://github.com/dotnet/runtime - 90b92bb265a412592c4c152983d7b30c92236dbe + 3d1b2543593f0dc3fbbdc2b8cad9b1f8e7554af6 - + https://github.com/dotnet/runtime - 90b92bb265a412592c4c152983d7b30c92236dbe + 3d1b2543593f0dc3fbbdc2b8cad9b1f8e7554af6 - + https://github.com/dotnet/runtime - 90b92bb265a412592c4c152983d7b30c92236dbe + 3d1b2543593f0dc3fbbdc2b8cad9b1f8e7554af6 - + https://github.com/dotnet/winforms - 8e3450c428dece7623858ec84620158dc2d6552c + 62be78789f2d7efdb4d115bf7ab0c791a3c87425 - + https://github.com/dotnet/wpf - 2ad6d24da21eb8e85fcc22981ca2c76aa3988b5d + 091256088cd99f2f0fe0983860d4232692c624f1 - + https://github.com/dotnet/runtime - 90b92bb265a412592c4c152983d7b30c92236dbe + 3d1b2543593f0dc3fbbdc2b8cad9b1f8e7554af6 - + https://github.com/dotnet/runtime - 90b92bb265a412592c4c152983d7b30c92236dbe + 3d1b2543593f0dc3fbbdc2b8cad9b1f8e7554af6 - + https://github.com/dotnet/runtime - 90b92bb265a412592c4c152983d7b30c92236dbe + 3d1b2543593f0dc3fbbdc2b8cad9b1f8e7554af6 - + https://github.com/dotnet/runtime - 90b92bb265a412592c4c152983d7b30c92236dbe + 3d1b2543593f0dc3fbbdc2b8cad9b1f8e7554af6 - + https://github.com/dotnet/runtime - 90b92bb265a412592c4c152983d7b30c92236dbe + 3d1b2543593f0dc3fbbdc2b8cad9b1f8e7554af6 - + https://github.com/dotnet/runtime - 90b92bb265a412592c4c152983d7b30c92236dbe + 3d1b2543593f0dc3fbbdc2b8cad9b1f8e7554af6 - + https://github.com/dotnet/runtime - 90b92bb265a412592c4c152983d7b30c92236dbe + 3d1b2543593f0dc3fbbdc2b8cad9b1f8e7554af6 - + https://github.com/dotnet/runtime - 90b92bb265a412592c4c152983d7b30c92236dbe + 3d1b2543593f0dc3fbbdc2b8cad9b1f8e7554af6 - + https://github.com/dotnet/runtime - 90b92bb265a412592c4c152983d7b30c92236dbe + 3d1b2543593f0dc3fbbdc2b8cad9b1f8e7554af6 - + https://github.com/dotnet/runtime - 90b92bb265a412592c4c152983d7b30c92236dbe + 3d1b2543593f0dc3fbbdc2b8cad9b1f8e7554af6 - + https://github.com/dotnet/runtime - 90b92bb265a412592c4c152983d7b30c92236dbe + 3d1b2543593f0dc3fbbdc2b8cad9b1f8e7554af6 - + https://github.com/dotnet/runtime - 90b92bb265a412592c4c152983d7b30c92236dbe + 3d1b2543593f0dc3fbbdc2b8cad9b1f8e7554af6 - + https://github.com/dotnet/runtime - 90b92bb265a412592c4c152983d7b30c92236dbe + 3d1b2543593f0dc3fbbdc2b8cad9b1f8e7554af6 - + https://github.com/dotnet/runtime - 90b92bb265a412592c4c152983d7b30c92236dbe + 3d1b2543593f0dc3fbbdc2b8cad9b1f8e7554af6 - + https://github.com/dotnet/runtime - 90b92bb265a412592c4c152983d7b30c92236dbe + 3d1b2543593f0dc3fbbdc2b8cad9b1f8e7554af6 - + https://github.com/dotnet/runtime - 90b92bb265a412592c4c152983d7b30c92236dbe + 3d1b2543593f0dc3fbbdc2b8cad9b1f8e7554af6 - + https://github.com/dotnet/runtime - 90b92bb265a412592c4c152983d7b30c92236dbe + 3d1b2543593f0dc3fbbdc2b8cad9b1f8e7554af6 - + https://github.com/dotnet/runtime - 90b92bb265a412592c4c152983d7b30c92236dbe + 3d1b2543593f0dc3fbbdc2b8cad9b1f8e7554af6 - + https://github.com/dotnet/runtime - 90b92bb265a412592c4c152983d7b30c92236dbe + 3d1b2543593f0dc3fbbdc2b8cad9b1f8e7554af6 - + https://github.com/dotnet/runtime - 90b92bb265a412592c4c152983d7b30c92236dbe + 3d1b2543593f0dc3fbbdc2b8cad9b1f8e7554af6 - + https://github.com/dotnet/runtime - 90b92bb265a412592c4c152983d7b30c92236dbe + 3d1b2543593f0dc3fbbdc2b8cad9b1f8e7554af6 - + https://github.com/dotnet/runtime - 90b92bb265a412592c4c152983d7b30c92236dbe + 3d1b2543593f0dc3fbbdc2b8cad9b1f8e7554af6 - + https://github.com/dotnet/runtime - 90b92bb265a412592c4c152983d7b30c92236dbe + 3d1b2543593f0dc3fbbdc2b8cad9b1f8e7554af6 - + https://github.com/dotnet/runtime - 90b92bb265a412592c4c152983d7b30c92236dbe + 3d1b2543593f0dc3fbbdc2b8cad9b1f8e7554af6 - + https://github.com/dotnet/runtime - 90b92bb265a412592c4c152983d7b30c92236dbe + 3d1b2543593f0dc3fbbdc2b8cad9b1f8e7554af6 - + https://github.com/dotnet/runtime - 90b92bb265a412592c4c152983d7b30c92236dbe + 3d1b2543593f0dc3fbbdc2b8cad9b1f8e7554af6 - + https://github.com/dotnet/runtime - 90b92bb265a412592c4c152983d7b30c92236dbe + 3d1b2543593f0dc3fbbdc2b8cad9b1f8e7554af6 - + https://github.com/dotnet/winforms - 8e3450c428dece7623858ec84620158dc2d6552c + 62be78789f2d7efdb4d115bf7ab0c791a3c87425 diff --git a/eng/Versions.props b/eng/Versions.props index 3a86f8129..e7c74ac73 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -24,51 +24,51 @@ 6.2.4 - 8.0.0-rc.2.23418.14 - 8.0.0-rc.2.23418.14 - 8.0.0-rc.2.23418.14 - 8.0.0-rc.2.23418.14 + 8.0.0-rc.2.23423.11 + 8.0.0-rc.2.23423.11 + 8.0.0-rc.2.23423.11 + 8.0.0-rc.2.23423.11 5.0.0 - 8.0.0-rc.2.23418.14 - 8.0.0-rc.2.23418.14 - 8.0.0-rc.2.23418.14 - 8.0.0-rc.2.23418.14 - 8.0.0-rc.2.23418.14 - 8.0.0-rc.2.23418.14 - 8.0.0-rc.2.23418.14 - 8.0.0-rc.2.23418.14 - 8.0.0-rc.2.23418.14 - 8.0.0-rc.2.23418.14 - 8.0.0-rc.2.23418.14 - 8.0.0-rc.2.23418.14 + 8.0.0-rc.2.23423.11 + 8.0.0-rc.2.23423.11 + 8.0.0-rc.2.23423.11 + 8.0.0-rc.2.23423.11 + 8.0.0-rc.2.23423.11 + 8.0.0-rc.2.23423.11 + 8.0.0-rc.2.23423.11 + 8.0.0-rc.2.23423.11 + 8.0.0-rc.2.23423.11 + 8.0.0-rc.2.23423.11 + 8.0.0-rc.2.23423.11 + 8.0.0-rc.2.23423.11 5.0.0 - 8.0.0-rc.2.23418.14 + 8.0.0-rc.2.23423.11 5.0.0 - 8.0.0-rc.2.23418.14 - 8.0.0-rc.2.23418.14 - 8.0.0-rc.2.23418.14 - 8.0.0-rc.2.23418.14 + 8.0.0-rc.2.23423.11 + 8.0.0-rc.2.23423.11 + 8.0.0-rc.2.23423.11 + 8.0.0-rc.2.23423.11 6.0.0 5.0.0 - 8.0.0-rc.2.23418.14 - 8.0.0-rc.2.23418.14 - 8.0.0-rc.2.23418.14 - 8.0.0-rc.2.23418.14 + 8.0.0-rc.2.23423.11 + 8.0.0-rc.2.23423.11 + 8.0.0-rc.2.23423.11 + 8.0.0-rc.2.23423.11 5.0.0 - 8.0.0-rc.2.23418.14 - 8.0.0-rc.2.23418.14 - 8.0.0-rc.2.23418.14 - 8.0.0-rc.2.23418.14 - 8.0.0-rc.2.23418.14 - 8.0.0-rc.2.23418.14 + 8.0.0-rc.2.23423.11 + 8.0.0-rc.2.23423.11 + 8.0.0-rc.2.23423.11 + 8.0.0-rc.2.23423.11 + 8.0.0-rc.2.23423.11 + 8.0.0-rc.2.23423.11 4.10.0 - 8.0.0-rc.2.23423.2 - 8.0.0-rc.2.23423.2 - 8.0.0-rc.2.23423.2 + 8.0.0-rc.2.23424.1 + 8.0.0-rc.2.23424.1 + 8.0.0-rc.2.23424.1 - 8.0.0-rc.2.23423.3 - 8.0.0-rc.2.23423.3 + 8.0.0-rc.2.23424.1 + 8.0.0-rc.2.23424.1 From 5247dee7c2e3193ed5dcf81cf9ef61deca72400c Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Fri, 25 Aug 2023 00:39:52 +0000 Subject: [PATCH 013/222] Update dependencies from https://github.com/dotnet/wpf build 20230824.2 Microsoft.DotNet.Wpf.GitHub , Microsoft.DotNet.Wpf.ProjectTemplates , Microsoft.NET.Sdk.WindowsDesktop From Version 8.0.0-rc.2.23420.3 -> To Version 8.0.0-rc.2.23424.2 Dependency coherency updates Microsoft.Private.Winforms,Microsoft.Internal.Runtime.WindowsDesktop.Transport,Microsoft.Private.Winforms,Microsoft.NETCore.App.Ref,Microsoft.Private.Winforms,VS.Redist.Common.NetCore.SharedFramework.x64.8.0,Microsoft.Private.Winforms,Microsoft.NETCore.App.Runtime.win-x64,Microsoft.Dotnet.WinForms.ProjectTemplates,Microsoft.Private.Winforms,Microsoft.Win32.Registry.AccessControl,Microsoft.Private.Winforms,Microsoft.Win32.SystemEvents,Microsoft.Private.Winforms,System.CodeDom,Microsoft.Private.Winforms,System.ComponentModel.Composition,Microsoft.Private.Winforms,System.Configuration.ConfigurationManager,Microsoft.Private.Winforms,System.Data.Odbc,Microsoft.Private.Winforms,System.Data.OleDb,Microsoft.Private.Winforms,System.Diagnostics.EventLog,Microsoft.Private.Winforms,System.Diagnostics.PerformanceCounter,Microsoft.Private.Winforms,System.DirectoryServices.AccountManagement,Microsoft.Private.Winforms,System.DirectoryServices.Protocols,Microsoft.Private.Winforms,System.DirectoryServices,Microsoft.Private.Winforms,System.IO.Packaging,Microsoft.Private.Winforms,System.IO.Ports,Microsoft.Private.Winforms,System.Management,Microsoft.Private.Winforms,System.Reflection.Context,Microsoft.Private.Winforms,System.Runtime.Caching,Microsoft.Private.Winforms,System.Security.Cryptography.Pkcs,Microsoft.Private.Winforms,System.Security.Cryptography.ProtectedData,Microsoft.Private.Winforms,System.Security.Cryptography.Xml,Microsoft.Private.Winforms,System.Security.Permissions,Microsoft.Private.Winforms,System.ServiceModel.Syndication,Microsoft.Private.Winforms,System.ServiceProcess.ServiceController,Microsoft.Private.Winforms,System.Speech,Microsoft.Private.Winforms,System.Text.Encoding.CodePages,Microsoft.Private.Winforms,System.Threading.AccessControl,Microsoft.Private.Winforms,System.ComponentModel.Composition.Registration,System.Drawing.Common From Version 8.0.0-rc.2.23420.2 -> To Version 8.0.0-rc.2.23424.3 (parent: Microsoft.DotNet.Wpf.GitHub --- eng/Version.Details.xml | 24 ++++++++++++------------ eng/Versions.props | 10 +++++----- 2 files changed, 17 insertions(+), 17 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index fa183a37c..1f722983a 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -5,17 +5,17 @@ https://github.com/dotnet/runtime 3d1b2543593f0dc3fbbdc2b8cad9b1f8e7554af6 - + https://github.com/dotnet/winforms - 62be78789f2d7efdb4d115bf7ab0c791a3c87425 + 74c0faa2769e54cce07d60eef66526d0438e8c63 - + https://github.com/dotnet/wpf - 091256088cd99f2f0fe0983860d4232692c624f1 + 3de17eb5b337a9d4927fa99f332a852e580a74f8 - + https://github.com/dotnet/wpf - 091256088cd99f2f0fe0983860d4232692c624f1 + 3de17eb5b337a9d4927fa99f332a852e580a74f8 https://github.com/dotnet/runtime @@ -29,13 +29,13 @@ https://github.com/dotnet/runtime 3d1b2543593f0dc3fbbdc2b8cad9b1f8e7554af6 - + https://github.com/dotnet/winforms - 62be78789f2d7efdb4d115bf7ab0c791a3c87425 + 74c0faa2769e54cce07d60eef66526d0438e8c63 - + https://github.com/dotnet/wpf - 091256088cd99f2f0fe0983860d4232692c624f1 + 3de17eb5b337a9d4927fa99f332a852e580a74f8 https://github.com/dotnet/runtime @@ -145,9 +145,9 @@ https://github.com/dotnet/runtime 3d1b2543593f0dc3fbbdc2b8cad9b1f8e7554af6 - + https://github.com/dotnet/winforms - 62be78789f2d7efdb4d115bf7ab0c791a3c87425 + 74c0faa2769e54cce07d60eef66526d0438e8c63 diff --git a/eng/Versions.props b/eng/Versions.props index e7c74ac73..270bf4a60 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -64,11 +64,11 @@ 4.10.0 - 8.0.0-rc.2.23424.1 - 8.0.0-rc.2.23424.1 - 8.0.0-rc.2.23424.1 + 8.0.0-rc.2.23424.3 + 8.0.0-rc.2.23424.3 + 8.0.0-rc.2.23424.3 - 8.0.0-rc.2.23424.1 - 8.0.0-rc.2.23424.1 + 8.0.0-rc.2.23424.2 + 8.0.0-rc.2.23424.2 From b9401b985db464b24b1670532945666c8612c321 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Sat, 26 Aug 2023 12:41:00 +0000 Subject: [PATCH 014/222] Update dependencies from https://github.com/dotnet/arcade build 20230825.2 Microsoft.DotNet.Arcade.Sdk , Microsoft.DotNet.Build.Tasks.Archives , Microsoft.DotNet.Build.Tasks.Feed , Microsoft.DotNet.Build.Tasks.Installers , Microsoft.DotNet.SharedFramework.Sdk , Microsoft.DotNet.VersionTools.Tasks From Version 8.0.0-beta.23419.1 -> To Version 8.0.0-beta.23425.2 --- eng/Version.Details.xml | 24 ++++++++++++------------ eng/Versions.props | 8 ++++---- global.json | 4 ++-- 3 files changed, 18 insertions(+), 18 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index b957a5170..777610d72 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -151,29 +151,29 @@ - + https://github.com/dotnet/arcade - 4d9945d230fdd8324ce16a31c7dbd74e27a0fc9b + 90c167d5c57de4a8bced566379dbd893556c94e8 - + https://github.com/dotnet/arcade - 4d9945d230fdd8324ce16a31c7dbd74e27a0fc9b + 90c167d5c57de4a8bced566379dbd893556c94e8 - + https://github.com/dotnet/arcade - 4d9945d230fdd8324ce16a31c7dbd74e27a0fc9b + 90c167d5c57de4a8bced566379dbd893556c94e8 - + https://github.com/dotnet/arcade - 4d9945d230fdd8324ce16a31c7dbd74e27a0fc9b + 90c167d5c57de4a8bced566379dbd893556c94e8 - + https://github.com/dotnet/arcade - 4d9945d230fdd8324ce16a31c7dbd74e27a0fc9b + 90c167d5c57de4a8bced566379dbd893556c94e8 - + https://github.com/dotnet/arcade - 4d9945d230fdd8324ce16a31c7dbd74e27a0fc9b + 90c167d5c57de4a8bced566379dbd893556c94e8 diff --git a/eng/Versions.props b/eng/Versions.props index 380742067..5d2be46df 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -11,10 +11,10 @@ - 8.0.0-beta.23422.1 - 8.0.0-beta.23422.1 - 8.0.0-beta.23422.1 - 8.0.0-beta.23422.1 + 8.0.0-beta.23425.2 + 8.0.0-beta.23425.2 + 8.0.0-beta.23425.2 + 8.0.0-beta.23425.2 4.5.0 4.8.5 diff --git a/global.json b/global.json index 55a43df1d..825cc0ff1 100644 --- a/global.json +++ b/global.json @@ -3,8 +3,8 @@ "dotnet": "8.0.100-preview.7.23376.3" }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "8.0.0-beta.23422.1", - "Microsoft.DotNet.SharedFramework.Sdk": "8.0.0-beta.23422.1", + "Microsoft.DotNet.Arcade.Sdk": "8.0.0-beta.23425.2", + "Microsoft.DotNet.SharedFramework.Sdk": "8.0.0-beta.23425.2", "Microsoft.Build.NoTargets": "3.7.0", "Microsoft.Build.Traversal": "3.4.0" } From d5096dcf839160b0414003541b0a52d9a4e249ac Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Sat, 26 Aug 2023 14:11:45 +0000 Subject: [PATCH 015/222] Update dependencies from https://github.com/dotnet/wpf build 20230826.2 Microsoft.DotNet.Wpf.GitHub , Microsoft.DotNet.Wpf.ProjectTemplates , Microsoft.NET.Sdk.WindowsDesktop From Version 8.0.0-rc.2.23420.3 -> To Version 8.0.0-rc.2.23426.2 Dependency coherency updates Microsoft.Private.Winforms,Microsoft.Internal.Runtime.WindowsDesktop.Transport,Microsoft.Private.Winforms,Microsoft.NETCore.App.Ref,Microsoft.Private.Winforms,VS.Redist.Common.NetCore.SharedFramework.x64.8.0,Microsoft.Private.Winforms,Microsoft.NETCore.App.Runtime.win-x64,Microsoft.Dotnet.WinForms.ProjectTemplates,Microsoft.Private.Winforms,Microsoft.Win32.Registry.AccessControl,Microsoft.Private.Winforms,Microsoft.Win32.SystemEvents,Microsoft.Private.Winforms,System.CodeDom,Microsoft.Private.Winforms,System.ComponentModel.Composition,Microsoft.Private.Winforms,System.Configuration.ConfigurationManager,Microsoft.Private.Winforms,System.Data.Odbc,Microsoft.Private.Winforms,System.Data.OleDb,Microsoft.Private.Winforms,System.Diagnostics.EventLog,Microsoft.Private.Winforms,System.Diagnostics.PerformanceCounter,Microsoft.Private.Winforms,System.DirectoryServices.AccountManagement,Microsoft.Private.Winforms,System.DirectoryServices.Protocols,Microsoft.Private.Winforms,System.DirectoryServices,Microsoft.Private.Winforms,System.IO.Packaging,Microsoft.Private.Winforms,System.IO.Ports,Microsoft.Private.Winforms,System.Management,Microsoft.Private.Winforms,System.Reflection.Context,Microsoft.Private.Winforms,System.Runtime.Caching,Microsoft.Private.Winforms,System.Security.Cryptography.Pkcs,Microsoft.Private.Winforms,System.Security.Cryptography.ProtectedData,Microsoft.Private.Winforms,System.Security.Cryptography.Xml,Microsoft.Private.Winforms,System.Security.Permissions,Microsoft.Private.Winforms,System.ServiceModel.Syndication,Microsoft.Private.Winforms,System.ServiceProcess.ServiceController,Microsoft.Private.Winforms,System.Speech,Microsoft.Private.Winforms,System.Text.Encoding.CodePages,Microsoft.Private.Winforms,System.Threading.AccessControl,Microsoft.Private.Winforms,System.ComponentModel.Composition.Registration,System.Drawing.Common From Version 8.0.0-rc.2.23420.2 -> To Version 8.0.0-rc.2.23424.3 (parent: Microsoft.DotNet.Wpf.GitHub --- eng/Version.Details.xml | 12 ++++++------ eng/Versions.props | 4 ++-- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 1f722983a..198577ae2 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -9,13 +9,13 @@ https://github.com/dotnet/winforms 74c0faa2769e54cce07d60eef66526d0438e8c63 - + https://github.com/dotnet/wpf - 3de17eb5b337a9d4927fa99f332a852e580a74f8 + 88bc88be8907cf1c85c7dd29ddfe57c904952c85 - + https://github.com/dotnet/wpf - 3de17eb5b337a9d4927fa99f332a852e580a74f8 + 88bc88be8907cf1c85c7dd29ddfe57c904952c85 https://github.com/dotnet/runtime @@ -33,9 +33,9 @@ https://github.com/dotnet/winforms 74c0faa2769e54cce07d60eef66526d0438e8c63 - + https://github.com/dotnet/wpf - 3de17eb5b337a9d4927fa99f332a852e580a74f8 + 88bc88be8907cf1c85c7dd29ddfe57c904952c85 https://github.com/dotnet/runtime diff --git a/eng/Versions.props b/eng/Versions.props index 270bf4a60..a04179c94 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -68,7 +68,7 @@ 8.0.0-rc.2.23424.3 8.0.0-rc.2.23424.3 - 8.0.0-rc.2.23424.2 - 8.0.0-rc.2.23424.2 + 8.0.0-rc.2.23426.2 + 8.0.0-rc.2.23426.2 From d538e9b56d803cd03b75896e52baf6981936c9da Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Mon, 28 Aug 2023 18:57:47 +0000 Subject: [PATCH 016/222] Update dependencies from https://github.com/dotnet/wpf build 20230828.1 Microsoft.DotNet.Wpf.GitHub , Microsoft.DotNet.Wpf.ProjectTemplates , Microsoft.NET.Sdk.WindowsDesktop From Version 8.0.0-rc.2.23420.3 -> To Version 8.0.0-rc.2.23428.1 Dependency coherency updates Microsoft.Private.Winforms,Microsoft.Internal.Runtime.WindowsDesktop.Transport,Microsoft.Private.Winforms,Microsoft.NETCore.App.Ref,Microsoft.Private.Winforms,VS.Redist.Common.NetCore.SharedFramework.x64.8.0,Microsoft.Private.Winforms,Microsoft.NETCore.App.Runtime.win-x64,Microsoft.Dotnet.WinForms.ProjectTemplates,Microsoft.Private.Winforms,Microsoft.Win32.Registry.AccessControl,Microsoft.Private.Winforms,Microsoft.Win32.SystemEvents,Microsoft.Private.Winforms,System.CodeDom,Microsoft.Private.Winforms,System.ComponentModel.Composition,Microsoft.Private.Winforms,System.Configuration.ConfigurationManager,Microsoft.Private.Winforms,System.Data.Odbc,Microsoft.Private.Winforms,System.Data.OleDb,Microsoft.Private.Winforms,System.Diagnostics.EventLog,Microsoft.Private.Winforms,System.Diagnostics.PerformanceCounter,Microsoft.Private.Winforms,System.DirectoryServices.AccountManagement,Microsoft.Private.Winforms,System.DirectoryServices.Protocols,Microsoft.Private.Winforms,System.DirectoryServices,Microsoft.Private.Winforms,System.IO.Packaging,Microsoft.Private.Winforms,System.IO.Ports,Microsoft.Private.Winforms,System.Management,Microsoft.Private.Winforms,System.Reflection.Context,Microsoft.Private.Winforms,System.Runtime.Caching,Microsoft.Private.Winforms,System.Security.Cryptography.Pkcs,Microsoft.Private.Winforms,System.Security.Cryptography.ProtectedData,Microsoft.Private.Winforms,System.Security.Cryptography.Xml,Microsoft.Private.Winforms,System.Security.Permissions,Microsoft.Private.Winforms,System.ServiceModel.Syndication,Microsoft.Private.Winforms,System.ServiceProcess.ServiceController,Microsoft.Private.Winforms,System.Speech,Microsoft.Private.Winforms,System.Text.Encoding.CodePages,Microsoft.Private.Winforms,System.Threading.AccessControl,Microsoft.Private.Winforms,System.ComponentModel.Composition.Registration,System.Drawing.Common From Version 8.0.0-rc.2.23420.2 -> To Version 8.0.0-rc.2.23428.1 (parent: Microsoft.DotNet.Wpf.GitHub --- eng/Version.Details.xml | 148 ++++++++++++++++++++-------------------- eng/Versions.props | 72 +++++++++---------- 2 files changed, 110 insertions(+), 110 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 198577ae2..ef5da6422 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,153 +1,153 @@ - + https://github.com/dotnet/runtime - 3d1b2543593f0dc3fbbdc2b8cad9b1f8e7554af6 + 4122c63a13cfe40e97ac1f9ef01d8110a66943f4 - + https://github.com/dotnet/winforms - 74c0faa2769e54cce07d60eef66526d0438e8c63 + ff5aa85916d206be705eff2597679efded468c10 - + https://github.com/dotnet/wpf - 88bc88be8907cf1c85c7dd29ddfe57c904952c85 + 9c1b8dbef63ee28ce1eecf6b727f975d0c3cd923 - + https://github.com/dotnet/wpf - 88bc88be8907cf1c85c7dd29ddfe57c904952c85 + 9c1b8dbef63ee28ce1eecf6b727f975d0c3cd923 - + https://github.com/dotnet/runtime - 3d1b2543593f0dc3fbbdc2b8cad9b1f8e7554af6 + 4122c63a13cfe40e97ac1f9ef01d8110a66943f4 - + https://github.com/dotnet/runtime - 3d1b2543593f0dc3fbbdc2b8cad9b1f8e7554af6 + 4122c63a13cfe40e97ac1f9ef01d8110a66943f4 - + https://github.com/dotnet/runtime - 3d1b2543593f0dc3fbbdc2b8cad9b1f8e7554af6 + 4122c63a13cfe40e97ac1f9ef01d8110a66943f4 - + https://github.com/dotnet/winforms - 74c0faa2769e54cce07d60eef66526d0438e8c63 + ff5aa85916d206be705eff2597679efded468c10 - + https://github.com/dotnet/wpf - 88bc88be8907cf1c85c7dd29ddfe57c904952c85 + 9c1b8dbef63ee28ce1eecf6b727f975d0c3cd923 - + https://github.com/dotnet/runtime - 3d1b2543593f0dc3fbbdc2b8cad9b1f8e7554af6 + 4122c63a13cfe40e97ac1f9ef01d8110a66943f4 - + https://github.com/dotnet/runtime - 3d1b2543593f0dc3fbbdc2b8cad9b1f8e7554af6 + 4122c63a13cfe40e97ac1f9ef01d8110a66943f4 - + https://github.com/dotnet/runtime - 3d1b2543593f0dc3fbbdc2b8cad9b1f8e7554af6 + 4122c63a13cfe40e97ac1f9ef01d8110a66943f4 - + https://github.com/dotnet/runtime - 3d1b2543593f0dc3fbbdc2b8cad9b1f8e7554af6 + 4122c63a13cfe40e97ac1f9ef01d8110a66943f4 - + https://github.com/dotnet/runtime - 3d1b2543593f0dc3fbbdc2b8cad9b1f8e7554af6 + 4122c63a13cfe40e97ac1f9ef01d8110a66943f4 - + https://github.com/dotnet/runtime - 3d1b2543593f0dc3fbbdc2b8cad9b1f8e7554af6 + 4122c63a13cfe40e97ac1f9ef01d8110a66943f4 - + https://github.com/dotnet/runtime - 3d1b2543593f0dc3fbbdc2b8cad9b1f8e7554af6 + 4122c63a13cfe40e97ac1f9ef01d8110a66943f4 - + https://github.com/dotnet/runtime - 3d1b2543593f0dc3fbbdc2b8cad9b1f8e7554af6 + 4122c63a13cfe40e97ac1f9ef01d8110a66943f4 - + https://github.com/dotnet/runtime - 3d1b2543593f0dc3fbbdc2b8cad9b1f8e7554af6 + 4122c63a13cfe40e97ac1f9ef01d8110a66943f4 - + https://github.com/dotnet/runtime - 3d1b2543593f0dc3fbbdc2b8cad9b1f8e7554af6 + 4122c63a13cfe40e97ac1f9ef01d8110a66943f4 - + https://github.com/dotnet/runtime - 3d1b2543593f0dc3fbbdc2b8cad9b1f8e7554af6 + 4122c63a13cfe40e97ac1f9ef01d8110a66943f4 - + https://github.com/dotnet/runtime - 3d1b2543593f0dc3fbbdc2b8cad9b1f8e7554af6 + 4122c63a13cfe40e97ac1f9ef01d8110a66943f4 - + https://github.com/dotnet/runtime - 3d1b2543593f0dc3fbbdc2b8cad9b1f8e7554af6 + 4122c63a13cfe40e97ac1f9ef01d8110a66943f4 - + https://github.com/dotnet/runtime - 3d1b2543593f0dc3fbbdc2b8cad9b1f8e7554af6 + 4122c63a13cfe40e97ac1f9ef01d8110a66943f4 - + https://github.com/dotnet/runtime - 3d1b2543593f0dc3fbbdc2b8cad9b1f8e7554af6 + 4122c63a13cfe40e97ac1f9ef01d8110a66943f4 - + https://github.com/dotnet/runtime - 3d1b2543593f0dc3fbbdc2b8cad9b1f8e7554af6 + 4122c63a13cfe40e97ac1f9ef01d8110a66943f4 - + https://github.com/dotnet/runtime - 3d1b2543593f0dc3fbbdc2b8cad9b1f8e7554af6 + 4122c63a13cfe40e97ac1f9ef01d8110a66943f4 - + https://github.com/dotnet/runtime - 3d1b2543593f0dc3fbbdc2b8cad9b1f8e7554af6 + 4122c63a13cfe40e97ac1f9ef01d8110a66943f4 - + https://github.com/dotnet/runtime - 3d1b2543593f0dc3fbbdc2b8cad9b1f8e7554af6 + 4122c63a13cfe40e97ac1f9ef01d8110a66943f4 - + https://github.com/dotnet/runtime - 3d1b2543593f0dc3fbbdc2b8cad9b1f8e7554af6 + 4122c63a13cfe40e97ac1f9ef01d8110a66943f4 - + https://github.com/dotnet/runtime - 3d1b2543593f0dc3fbbdc2b8cad9b1f8e7554af6 + 4122c63a13cfe40e97ac1f9ef01d8110a66943f4 - + https://github.com/dotnet/runtime - 3d1b2543593f0dc3fbbdc2b8cad9b1f8e7554af6 + 4122c63a13cfe40e97ac1f9ef01d8110a66943f4 - + https://github.com/dotnet/runtime - 3d1b2543593f0dc3fbbdc2b8cad9b1f8e7554af6 + 4122c63a13cfe40e97ac1f9ef01d8110a66943f4 - + https://github.com/dotnet/runtime - 3d1b2543593f0dc3fbbdc2b8cad9b1f8e7554af6 + 4122c63a13cfe40e97ac1f9ef01d8110a66943f4 - + https://github.com/dotnet/runtime - 3d1b2543593f0dc3fbbdc2b8cad9b1f8e7554af6 + 4122c63a13cfe40e97ac1f9ef01d8110a66943f4 - + https://github.com/dotnet/runtime - 3d1b2543593f0dc3fbbdc2b8cad9b1f8e7554af6 + 4122c63a13cfe40e97ac1f9ef01d8110a66943f4 - + https://github.com/dotnet/runtime - 3d1b2543593f0dc3fbbdc2b8cad9b1f8e7554af6 + 4122c63a13cfe40e97ac1f9ef01d8110a66943f4 - + https://github.com/dotnet/winforms - 74c0faa2769e54cce07d60eef66526d0438e8c63 + ff5aa85916d206be705eff2597679efded468c10 diff --git a/eng/Versions.props b/eng/Versions.props index a04179c94..3c79c933a 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -24,51 +24,51 @@ 6.2.4 - 8.0.0-rc.2.23423.11 - 8.0.0-rc.2.23423.11 - 8.0.0-rc.2.23423.11 - 8.0.0-rc.2.23423.11 + 8.0.0-rc.2.23426.4 + 8.0.0-rc.2.23426.4 + 8.0.0-rc.2.23426.4 + 8.0.0-rc.2.23426.4 5.0.0 - 8.0.0-rc.2.23423.11 - 8.0.0-rc.2.23423.11 - 8.0.0-rc.2.23423.11 - 8.0.0-rc.2.23423.11 - 8.0.0-rc.2.23423.11 - 8.0.0-rc.2.23423.11 - 8.0.0-rc.2.23423.11 - 8.0.0-rc.2.23423.11 - 8.0.0-rc.2.23423.11 - 8.0.0-rc.2.23423.11 - 8.0.0-rc.2.23423.11 - 8.0.0-rc.2.23423.11 + 8.0.0-rc.2.23426.4 + 8.0.0-rc.2.23426.4 + 8.0.0-rc.2.23426.4 + 8.0.0-rc.2.23426.4 + 8.0.0-rc.2.23426.4 + 8.0.0-rc.2.23426.4 + 8.0.0-rc.2.23426.4 + 8.0.0-rc.2.23426.4 + 8.0.0-rc.2.23426.4 + 8.0.0-rc.2.23426.4 + 8.0.0-rc.2.23426.4 + 8.0.0-rc.2.23426.4 5.0.0 - 8.0.0-rc.2.23423.11 + 8.0.0-rc.2.23426.4 5.0.0 - 8.0.0-rc.2.23423.11 - 8.0.0-rc.2.23423.11 - 8.0.0-rc.2.23423.11 - 8.0.0-rc.2.23423.11 + 8.0.0-rc.2.23426.4 + 8.0.0-rc.2.23426.4 + 8.0.0-rc.2.23426.4 + 8.0.0-rc.2.23426.4 6.0.0 5.0.0 - 8.0.0-rc.2.23423.11 - 8.0.0-rc.2.23423.11 - 8.0.0-rc.2.23423.11 - 8.0.0-rc.2.23423.11 + 8.0.0-rc.2.23426.4 + 8.0.0-rc.2.23426.4 + 8.0.0-rc.2.23426.4 + 8.0.0-rc.2.23426.4 5.0.0 - 8.0.0-rc.2.23423.11 - 8.0.0-rc.2.23423.11 - 8.0.0-rc.2.23423.11 - 8.0.0-rc.2.23423.11 - 8.0.0-rc.2.23423.11 - 8.0.0-rc.2.23423.11 + 8.0.0-rc.2.23426.4 + 8.0.0-rc.2.23426.4 + 8.0.0-rc.2.23426.4 + 8.0.0-rc.2.23426.4 + 8.0.0-rc.2.23426.4 + 8.0.0-rc.2.23426.4 4.10.0 - 8.0.0-rc.2.23424.3 - 8.0.0-rc.2.23424.3 - 8.0.0-rc.2.23424.3 + 8.0.0-rc.2.23428.1 + 8.0.0-rc.2.23428.1 + 8.0.0-rc.2.23428.1 - 8.0.0-rc.2.23426.2 - 8.0.0-rc.2.23426.2 + 8.0.0-rc.2.23428.1 + 8.0.0-rc.2.23428.1 From 1a7a7ccb2c1f9105b1f74f758caeffd776f5b744 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Mon, 28 Aug 2023 23:55:52 +0000 Subject: [PATCH 017/222] Update dependencies from https://github.com/dotnet/wpf build 20230828.2 Microsoft.DotNet.Wpf.GitHub , Microsoft.DotNet.Wpf.ProjectTemplates , Microsoft.NET.Sdk.WindowsDesktop From Version 8.0.0-rc.2.23420.3 -> To Version 8.0.0-rc.2.23428.2 Dependency coherency updates Microsoft.Private.Winforms,Microsoft.Internal.Runtime.WindowsDesktop.Transport,Microsoft.Private.Winforms,Microsoft.NETCore.App.Ref,Microsoft.Private.Winforms,VS.Redist.Common.NetCore.SharedFramework.x64.8.0,Microsoft.Private.Winforms,Microsoft.NETCore.App.Runtime.win-x64,Microsoft.Dotnet.WinForms.ProjectTemplates,Microsoft.Private.Winforms,Microsoft.Win32.Registry.AccessControl,Microsoft.Private.Winforms,Microsoft.Win32.SystemEvents,Microsoft.Private.Winforms,System.CodeDom,Microsoft.Private.Winforms,System.ComponentModel.Composition,Microsoft.Private.Winforms,System.Configuration.ConfigurationManager,Microsoft.Private.Winforms,System.Data.Odbc,Microsoft.Private.Winforms,System.Data.OleDb,Microsoft.Private.Winforms,System.Diagnostics.EventLog,Microsoft.Private.Winforms,System.Diagnostics.PerformanceCounter,Microsoft.Private.Winforms,System.DirectoryServices.AccountManagement,Microsoft.Private.Winforms,System.DirectoryServices.Protocols,Microsoft.Private.Winforms,System.DirectoryServices,Microsoft.Private.Winforms,System.IO.Packaging,Microsoft.Private.Winforms,System.IO.Ports,Microsoft.Private.Winforms,System.Management,Microsoft.Private.Winforms,System.Reflection.Context,Microsoft.Private.Winforms,System.Runtime.Caching,Microsoft.Private.Winforms,System.Security.Cryptography.Pkcs,Microsoft.Private.Winforms,System.Security.Cryptography.ProtectedData,Microsoft.Private.Winforms,System.Security.Cryptography.Xml,Microsoft.Private.Winforms,System.Security.Permissions,Microsoft.Private.Winforms,System.ServiceModel.Syndication,Microsoft.Private.Winforms,System.ServiceProcess.ServiceController,Microsoft.Private.Winforms,System.Speech,Microsoft.Private.Winforms,System.Text.Encoding.CodePages,Microsoft.Private.Winforms,System.Threading.AccessControl,Microsoft.Private.Winforms,System.ComponentModel.Composition.Registration,System.Drawing.Common From Version 8.0.0-rc.2.23420.2 -> To Version 8.0.0-rc.2.23428.5 (parent: Microsoft.DotNet.Wpf.GitHub --- eng/Version.Details.xml | 24 ++++++++++++------------ eng/Versions.props | 10 +++++----- 2 files changed, 17 insertions(+), 17 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index ef5da6422..e772b630e 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -5,17 +5,17 @@ https://github.com/dotnet/runtime 4122c63a13cfe40e97ac1f9ef01d8110a66943f4 - + https://github.com/dotnet/winforms - ff5aa85916d206be705eff2597679efded468c10 + 0007999f35493702c217d13a9b7f8f635b1ec851 - + https://github.com/dotnet/wpf - 9c1b8dbef63ee28ce1eecf6b727f975d0c3cd923 + b893b9bbcd117032cec4ec97d036298a65e42b8d - + https://github.com/dotnet/wpf - 9c1b8dbef63ee28ce1eecf6b727f975d0c3cd923 + b893b9bbcd117032cec4ec97d036298a65e42b8d https://github.com/dotnet/runtime @@ -29,13 +29,13 @@ https://github.com/dotnet/runtime 4122c63a13cfe40e97ac1f9ef01d8110a66943f4 - + https://github.com/dotnet/winforms - ff5aa85916d206be705eff2597679efded468c10 + 0007999f35493702c217d13a9b7f8f635b1ec851 - + https://github.com/dotnet/wpf - 9c1b8dbef63ee28ce1eecf6b727f975d0c3cd923 + b893b9bbcd117032cec4ec97d036298a65e42b8d https://github.com/dotnet/runtime @@ -145,9 +145,9 @@ https://github.com/dotnet/runtime 4122c63a13cfe40e97ac1f9ef01d8110a66943f4 - + https://github.com/dotnet/winforms - ff5aa85916d206be705eff2597679efded468c10 + 0007999f35493702c217d13a9b7f8f635b1ec851 diff --git a/eng/Versions.props b/eng/Versions.props index 3c79c933a..298e4c542 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -64,11 +64,11 @@ 4.10.0 - 8.0.0-rc.2.23428.1 - 8.0.0-rc.2.23428.1 - 8.0.0-rc.2.23428.1 + 8.0.0-rc.2.23428.5 + 8.0.0-rc.2.23428.5 + 8.0.0-rc.2.23428.5 - 8.0.0-rc.2.23428.1 - 8.0.0-rc.2.23428.1 + 8.0.0-rc.2.23428.2 + 8.0.0-rc.2.23428.2 From 028ba75743d25f5e5cd8df886ed7f80e81d3a9b4 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Tue, 29 Aug 2023 12:49:27 +0000 Subject: [PATCH 018/222] Update dependencies from https://github.com/dotnet/arcade build 20230828.2 Microsoft.DotNet.Arcade.Sdk , Microsoft.DotNet.Build.Tasks.Archives , Microsoft.DotNet.Build.Tasks.Feed , Microsoft.DotNet.Build.Tasks.Installers , Microsoft.DotNet.SharedFramework.Sdk , Microsoft.DotNet.VersionTools.Tasks From Version 8.0.0-beta.23419.1 -> To Version 8.0.0-beta.23428.2 --- eng/Version.Details.xml | 24 ++++++++++++------------ eng/Versions.props | 8 ++++---- global.json | 4 ++-- 3 files changed, 18 insertions(+), 18 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 777610d72..2148f290d 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -151,29 +151,29 @@ - + https://github.com/dotnet/arcade - 90c167d5c57de4a8bced566379dbd893556c94e8 + 3d92d0bfd8c9006f5fe1687e465dc4f8aa068b00 - + https://github.com/dotnet/arcade - 90c167d5c57de4a8bced566379dbd893556c94e8 + 3d92d0bfd8c9006f5fe1687e465dc4f8aa068b00 - + https://github.com/dotnet/arcade - 90c167d5c57de4a8bced566379dbd893556c94e8 + 3d92d0bfd8c9006f5fe1687e465dc4f8aa068b00 - + https://github.com/dotnet/arcade - 90c167d5c57de4a8bced566379dbd893556c94e8 + 3d92d0bfd8c9006f5fe1687e465dc4f8aa068b00 - + https://github.com/dotnet/arcade - 90c167d5c57de4a8bced566379dbd893556c94e8 + 3d92d0bfd8c9006f5fe1687e465dc4f8aa068b00 - + https://github.com/dotnet/arcade - 90c167d5c57de4a8bced566379dbd893556c94e8 + 3d92d0bfd8c9006f5fe1687e465dc4f8aa068b00 diff --git a/eng/Versions.props b/eng/Versions.props index 5d2be46df..0a63ac3c4 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -11,10 +11,10 @@ - 8.0.0-beta.23425.2 - 8.0.0-beta.23425.2 - 8.0.0-beta.23425.2 - 8.0.0-beta.23425.2 + 8.0.0-beta.23428.2 + 8.0.0-beta.23428.2 + 8.0.0-beta.23428.2 + 8.0.0-beta.23428.2 4.5.0 4.8.5 diff --git a/global.json b/global.json index 825cc0ff1..36db85d52 100644 --- a/global.json +++ b/global.json @@ -3,8 +3,8 @@ "dotnet": "8.0.100-preview.7.23376.3" }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "8.0.0-beta.23425.2", - "Microsoft.DotNet.SharedFramework.Sdk": "8.0.0-beta.23425.2", + "Microsoft.DotNet.Arcade.Sdk": "8.0.0-beta.23428.2", + "Microsoft.DotNet.SharedFramework.Sdk": "8.0.0-beta.23428.2", "Microsoft.Build.NoTargets": "3.7.0", "Microsoft.Build.Traversal": "3.4.0" } From 6fdcc178de7c86369959ca17c71ee63d413bcaae Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Tue, 29 Aug 2023 14:25:43 +0000 Subject: [PATCH 019/222] Update dependencies from https://github.com/dotnet/wpf build 20230829.2 Microsoft.DotNet.Wpf.GitHub , Microsoft.DotNet.Wpf.ProjectTemplates , Microsoft.NET.Sdk.WindowsDesktop From Version 8.0.0-rc.2.23420.3 -> To Version 8.0.0-rc.2.23429.2 Dependency coherency updates Microsoft.Private.Winforms,Microsoft.Internal.Runtime.WindowsDesktop.Transport,Microsoft.Private.Winforms,Microsoft.NETCore.App.Ref,Microsoft.Private.Winforms,VS.Redist.Common.NetCore.SharedFramework.x64.8.0,Microsoft.Private.Winforms,Microsoft.NETCore.App.Runtime.win-x64,Microsoft.Dotnet.WinForms.ProjectTemplates,Microsoft.Private.Winforms,Microsoft.Win32.Registry.AccessControl,Microsoft.Private.Winforms,Microsoft.Win32.SystemEvents,Microsoft.Private.Winforms,System.CodeDom,Microsoft.Private.Winforms,System.ComponentModel.Composition,Microsoft.Private.Winforms,System.Configuration.ConfigurationManager,Microsoft.Private.Winforms,System.Data.Odbc,Microsoft.Private.Winforms,System.Data.OleDb,Microsoft.Private.Winforms,System.Diagnostics.EventLog,Microsoft.Private.Winforms,System.Diagnostics.PerformanceCounter,Microsoft.Private.Winforms,System.DirectoryServices.AccountManagement,Microsoft.Private.Winforms,System.DirectoryServices.Protocols,Microsoft.Private.Winforms,System.DirectoryServices,Microsoft.Private.Winforms,System.IO.Packaging,Microsoft.Private.Winforms,System.IO.Ports,Microsoft.Private.Winforms,System.Management,Microsoft.Private.Winforms,System.Reflection.Context,Microsoft.Private.Winforms,System.Runtime.Caching,Microsoft.Private.Winforms,System.Security.Cryptography.Pkcs,Microsoft.Private.Winforms,System.Security.Cryptography.ProtectedData,Microsoft.Private.Winforms,System.Security.Cryptography.Xml,Microsoft.Private.Winforms,System.Security.Permissions,Microsoft.Private.Winforms,System.ServiceModel.Syndication,Microsoft.Private.Winforms,System.ServiceProcess.ServiceController,Microsoft.Private.Winforms,System.Speech,Microsoft.Private.Winforms,System.Text.Encoding.CodePages,Microsoft.Private.Winforms,System.Threading.AccessControl,Microsoft.Private.Winforms,System.ComponentModel.Composition.Registration,System.Drawing.Common From Version 8.0.0-rc.2.23420.2 -> To Version 8.0.0-rc.2.23428.5 (parent: Microsoft.DotNet.Wpf.GitHub --- eng/Version.Details.xml | 12 ++++++------ eng/Versions.props | 4 ++-- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index e772b630e..17395499f 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -9,13 +9,13 @@ https://github.com/dotnet/winforms 0007999f35493702c217d13a9b7f8f635b1ec851 - + https://github.com/dotnet/wpf - b893b9bbcd117032cec4ec97d036298a65e42b8d + 2927338d85e21ba859d0b9b3615cc596b9d6bdf5 - + https://github.com/dotnet/wpf - b893b9bbcd117032cec4ec97d036298a65e42b8d + 2927338d85e21ba859d0b9b3615cc596b9d6bdf5 https://github.com/dotnet/runtime @@ -33,9 +33,9 @@ https://github.com/dotnet/winforms 0007999f35493702c217d13a9b7f8f635b1ec851 - + https://github.com/dotnet/wpf - b893b9bbcd117032cec4ec97d036298a65e42b8d + 2927338d85e21ba859d0b9b3615cc596b9d6bdf5 https://github.com/dotnet/runtime diff --git a/eng/Versions.props b/eng/Versions.props index 298e4c542..0716f52eb 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -68,7 +68,7 @@ 8.0.0-rc.2.23428.5 8.0.0-rc.2.23428.5 - 8.0.0-rc.2.23428.2 - 8.0.0-rc.2.23428.2 + 8.0.0-rc.2.23429.2 + 8.0.0-rc.2.23429.2 From 324d4a410bf221178cada1be56231223b2b463bf Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Tue, 29 Aug 2023 15:45:22 +0000 Subject: [PATCH 020/222] Update dependencies from https://github.com/dotnet/wpf build 20230829.3 Microsoft.DotNet.Wpf.GitHub , Microsoft.DotNet.Wpf.ProjectTemplates , Microsoft.NET.Sdk.WindowsDesktop From Version 8.0.0-rc.2.23420.3 -> To Version 8.0.0-rc.2.23429.3 Dependency coherency updates Microsoft.Private.Winforms,Microsoft.Internal.Runtime.WindowsDesktop.Transport,Microsoft.Private.Winforms,Microsoft.NETCore.App.Ref,Microsoft.Private.Winforms,VS.Redist.Common.NetCore.SharedFramework.x64.8.0,Microsoft.Private.Winforms,Microsoft.NETCore.App.Runtime.win-x64,Microsoft.Dotnet.WinForms.ProjectTemplates,Microsoft.Private.Winforms,Microsoft.Win32.Registry.AccessControl,Microsoft.Private.Winforms,Microsoft.Win32.SystemEvents,Microsoft.Private.Winforms,System.CodeDom,Microsoft.Private.Winforms,System.ComponentModel.Composition,Microsoft.Private.Winforms,System.Configuration.ConfigurationManager,Microsoft.Private.Winforms,System.Data.Odbc,Microsoft.Private.Winforms,System.Data.OleDb,Microsoft.Private.Winforms,System.Diagnostics.EventLog,Microsoft.Private.Winforms,System.Diagnostics.PerformanceCounter,Microsoft.Private.Winforms,System.DirectoryServices.AccountManagement,Microsoft.Private.Winforms,System.DirectoryServices.Protocols,Microsoft.Private.Winforms,System.DirectoryServices,Microsoft.Private.Winforms,System.IO.Packaging,Microsoft.Private.Winforms,System.IO.Ports,Microsoft.Private.Winforms,System.Management,Microsoft.Private.Winforms,System.Reflection.Context,Microsoft.Private.Winforms,System.Runtime.Caching,Microsoft.Private.Winforms,System.Security.Cryptography.Pkcs,Microsoft.Private.Winforms,System.Security.Cryptography.ProtectedData,Microsoft.Private.Winforms,System.Security.Cryptography.Xml,Microsoft.Private.Winforms,System.Security.Permissions,Microsoft.Private.Winforms,System.ServiceModel.Syndication,Microsoft.Private.Winforms,System.ServiceProcess.ServiceController,Microsoft.Private.Winforms,System.Speech,Microsoft.Private.Winforms,System.Text.Encoding.CodePages,Microsoft.Private.Winforms,System.Threading.AccessControl,Microsoft.Private.Winforms,System.ComponentModel.Composition.Registration,System.Drawing.Common From Version 8.0.0-rc.2.23420.2 -> To Version 8.0.0-rc.2.23429.2 (parent: Microsoft.DotNet.Wpf.GitHub --- eng/Version.Details.xml | 24 ++++++++++++------------ eng/Versions.props | 10 +++++----- 2 files changed, 17 insertions(+), 17 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 17395499f..b98795b9b 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -5,17 +5,17 @@ https://github.com/dotnet/runtime 4122c63a13cfe40e97ac1f9ef01d8110a66943f4 - + https://github.com/dotnet/winforms - 0007999f35493702c217d13a9b7f8f635b1ec851 + c3140083fc4cc224169dbb71b26495cc903cedfc - + https://github.com/dotnet/wpf - 2927338d85e21ba859d0b9b3615cc596b9d6bdf5 + c6c7cb848ea5def7c902c999543483841c0af331 - + https://github.com/dotnet/wpf - 2927338d85e21ba859d0b9b3615cc596b9d6bdf5 + c6c7cb848ea5def7c902c999543483841c0af331 https://github.com/dotnet/runtime @@ -29,13 +29,13 @@ https://github.com/dotnet/runtime 4122c63a13cfe40e97ac1f9ef01d8110a66943f4 - + https://github.com/dotnet/winforms - 0007999f35493702c217d13a9b7f8f635b1ec851 + c3140083fc4cc224169dbb71b26495cc903cedfc - + https://github.com/dotnet/wpf - 2927338d85e21ba859d0b9b3615cc596b9d6bdf5 + c6c7cb848ea5def7c902c999543483841c0af331 https://github.com/dotnet/runtime @@ -145,9 +145,9 @@ https://github.com/dotnet/runtime 4122c63a13cfe40e97ac1f9ef01d8110a66943f4 - + https://github.com/dotnet/winforms - 0007999f35493702c217d13a9b7f8f635b1ec851 + c3140083fc4cc224169dbb71b26495cc903cedfc diff --git a/eng/Versions.props b/eng/Versions.props index 0716f52eb..d485a0b6b 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -64,11 +64,11 @@ 4.10.0 - 8.0.0-rc.2.23428.5 - 8.0.0-rc.2.23428.5 - 8.0.0-rc.2.23428.5 + 8.0.0-rc.2.23429.2 + 8.0.0-rc.2.23429.2 + 8.0.0-rc.2.23429.2 - 8.0.0-rc.2.23429.2 - 8.0.0-rc.2.23429.2 + 8.0.0-rc.2.23429.3 + 8.0.0-rc.2.23429.3 From 355957e366585d5b244ab296dd4a6f6e8b89e3ec Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Wed, 30 Aug 2023 02:55:21 +0000 Subject: [PATCH 021/222] Update dependencies from https://github.com/dotnet/wpf build 20230829.4 Microsoft.DotNet.Wpf.GitHub , Microsoft.DotNet.Wpf.ProjectTemplates , Microsoft.NET.Sdk.WindowsDesktop From Version 8.0.0-rc.2.23429.3 -> To Version 8.0.0-rc.2.23429.4 Dependency coherency updates Microsoft.Private.Winforms,Microsoft.Internal.Runtime.WindowsDesktop.Transport,Microsoft.Private.Winforms,Microsoft.NETCore.App.Ref,Microsoft.Private.Winforms,VS.Redist.Common.NetCore.SharedFramework.x64.8.0,Microsoft.Private.Winforms,Microsoft.NETCore.App.Runtime.win-x64,Microsoft.Dotnet.WinForms.ProjectTemplates,Microsoft.Private.Winforms,Microsoft.Win32.Registry.AccessControl,Microsoft.Private.Winforms,Microsoft.Win32.SystemEvents,Microsoft.Private.Winforms,System.CodeDom,Microsoft.Private.Winforms,System.ComponentModel.Composition,Microsoft.Private.Winforms,System.Configuration.ConfigurationManager,Microsoft.Private.Winforms,System.Data.Odbc,Microsoft.Private.Winforms,System.Data.OleDb,Microsoft.Private.Winforms,System.Diagnostics.EventLog,Microsoft.Private.Winforms,System.Diagnostics.PerformanceCounter,Microsoft.Private.Winforms,System.DirectoryServices.AccountManagement,Microsoft.Private.Winforms,System.DirectoryServices.Protocols,Microsoft.Private.Winforms,System.DirectoryServices,Microsoft.Private.Winforms,System.IO.Packaging,Microsoft.Private.Winforms,System.IO.Ports,Microsoft.Private.Winforms,System.Management,Microsoft.Private.Winforms,System.Reflection.Context,Microsoft.Private.Winforms,System.Runtime.Caching,Microsoft.Private.Winforms,System.Security.Cryptography.Pkcs,Microsoft.Private.Winforms,System.Security.Cryptography.ProtectedData,Microsoft.Private.Winforms,System.Security.Cryptography.Xml,Microsoft.Private.Winforms,System.Security.Permissions,Microsoft.Private.Winforms,System.ServiceModel.Syndication,Microsoft.Private.Winforms,System.ServiceProcess.ServiceController,Microsoft.Private.Winforms,System.Speech,Microsoft.Private.Winforms,System.Text.Encoding.CodePages,Microsoft.Private.Winforms,System.Threading.AccessControl,Microsoft.Private.Winforms,System.ComponentModel.Composition.Registration,System.Drawing.Common From Version 8.0.0-rc.2.23429.2 -> To Version 8.0.0-rc.2.23429.6 (parent: Microsoft.DotNet.Wpf.GitHub --- eng/Version.Details.xml | 148 ++++++++++++++++++++-------------------- eng/Versions.props | 72 +++++++++---------- 2 files changed, 110 insertions(+), 110 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index b98795b9b..65ff771c4 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,153 +1,153 @@ - + https://github.com/dotnet/runtime - 4122c63a13cfe40e97ac1f9ef01d8110a66943f4 + bbaba10171c0e8d26b9d31877799d2ebe309c7ee - + https://github.com/dotnet/winforms - c3140083fc4cc224169dbb71b26495cc903cedfc + 4d1be8c373dc51853f7ee9d38f92ccf38250d891 - + https://github.com/dotnet/wpf - c6c7cb848ea5def7c902c999543483841c0af331 + 1e503471a548d13c4a300e24e8c6f98bbcc5d5c6 - + https://github.com/dotnet/wpf - c6c7cb848ea5def7c902c999543483841c0af331 + 1e503471a548d13c4a300e24e8c6f98bbcc5d5c6 - + https://github.com/dotnet/runtime - 4122c63a13cfe40e97ac1f9ef01d8110a66943f4 + bbaba10171c0e8d26b9d31877799d2ebe309c7ee - + https://github.com/dotnet/runtime - 4122c63a13cfe40e97ac1f9ef01d8110a66943f4 + bbaba10171c0e8d26b9d31877799d2ebe309c7ee - + https://github.com/dotnet/runtime - 4122c63a13cfe40e97ac1f9ef01d8110a66943f4 + bbaba10171c0e8d26b9d31877799d2ebe309c7ee - + https://github.com/dotnet/winforms - c3140083fc4cc224169dbb71b26495cc903cedfc + 4d1be8c373dc51853f7ee9d38f92ccf38250d891 - + https://github.com/dotnet/wpf - c6c7cb848ea5def7c902c999543483841c0af331 + 1e503471a548d13c4a300e24e8c6f98bbcc5d5c6 - + https://github.com/dotnet/runtime - 4122c63a13cfe40e97ac1f9ef01d8110a66943f4 + bbaba10171c0e8d26b9d31877799d2ebe309c7ee - + https://github.com/dotnet/runtime - 4122c63a13cfe40e97ac1f9ef01d8110a66943f4 + bbaba10171c0e8d26b9d31877799d2ebe309c7ee - + https://github.com/dotnet/runtime - 4122c63a13cfe40e97ac1f9ef01d8110a66943f4 + bbaba10171c0e8d26b9d31877799d2ebe309c7ee - + https://github.com/dotnet/runtime - 4122c63a13cfe40e97ac1f9ef01d8110a66943f4 + bbaba10171c0e8d26b9d31877799d2ebe309c7ee - + https://github.com/dotnet/runtime - 4122c63a13cfe40e97ac1f9ef01d8110a66943f4 + bbaba10171c0e8d26b9d31877799d2ebe309c7ee - + https://github.com/dotnet/runtime - 4122c63a13cfe40e97ac1f9ef01d8110a66943f4 + bbaba10171c0e8d26b9d31877799d2ebe309c7ee - + https://github.com/dotnet/runtime - 4122c63a13cfe40e97ac1f9ef01d8110a66943f4 + bbaba10171c0e8d26b9d31877799d2ebe309c7ee - + https://github.com/dotnet/runtime - 4122c63a13cfe40e97ac1f9ef01d8110a66943f4 + bbaba10171c0e8d26b9d31877799d2ebe309c7ee - + https://github.com/dotnet/runtime - 4122c63a13cfe40e97ac1f9ef01d8110a66943f4 + bbaba10171c0e8d26b9d31877799d2ebe309c7ee - + https://github.com/dotnet/runtime - 4122c63a13cfe40e97ac1f9ef01d8110a66943f4 + bbaba10171c0e8d26b9d31877799d2ebe309c7ee - + https://github.com/dotnet/runtime - 4122c63a13cfe40e97ac1f9ef01d8110a66943f4 + bbaba10171c0e8d26b9d31877799d2ebe309c7ee - + https://github.com/dotnet/runtime - 4122c63a13cfe40e97ac1f9ef01d8110a66943f4 + bbaba10171c0e8d26b9d31877799d2ebe309c7ee - + https://github.com/dotnet/runtime - 4122c63a13cfe40e97ac1f9ef01d8110a66943f4 + bbaba10171c0e8d26b9d31877799d2ebe309c7ee - + https://github.com/dotnet/runtime - 4122c63a13cfe40e97ac1f9ef01d8110a66943f4 + bbaba10171c0e8d26b9d31877799d2ebe309c7ee - + https://github.com/dotnet/runtime - 4122c63a13cfe40e97ac1f9ef01d8110a66943f4 + bbaba10171c0e8d26b9d31877799d2ebe309c7ee - + https://github.com/dotnet/runtime - 4122c63a13cfe40e97ac1f9ef01d8110a66943f4 + bbaba10171c0e8d26b9d31877799d2ebe309c7ee - + https://github.com/dotnet/runtime - 4122c63a13cfe40e97ac1f9ef01d8110a66943f4 + bbaba10171c0e8d26b9d31877799d2ebe309c7ee - + https://github.com/dotnet/runtime - 4122c63a13cfe40e97ac1f9ef01d8110a66943f4 + bbaba10171c0e8d26b9d31877799d2ebe309c7ee - + https://github.com/dotnet/runtime - 4122c63a13cfe40e97ac1f9ef01d8110a66943f4 + bbaba10171c0e8d26b9d31877799d2ebe309c7ee - + https://github.com/dotnet/runtime - 4122c63a13cfe40e97ac1f9ef01d8110a66943f4 + bbaba10171c0e8d26b9d31877799d2ebe309c7ee - + https://github.com/dotnet/runtime - 4122c63a13cfe40e97ac1f9ef01d8110a66943f4 + bbaba10171c0e8d26b9d31877799d2ebe309c7ee - + https://github.com/dotnet/runtime - 4122c63a13cfe40e97ac1f9ef01d8110a66943f4 + bbaba10171c0e8d26b9d31877799d2ebe309c7ee - + https://github.com/dotnet/runtime - 4122c63a13cfe40e97ac1f9ef01d8110a66943f4 + bbaba10171c0e8d26b9d31877799d2ebe309c7ee - + https://github.com/dotnet/runtime - 4122c63a13cfe40e97ac1f9ef01d8110a66943f4 + bbaba10171c0e8d26b9d31877799d2ebe309c7ee - + https://github.com/dotnet/runtime - 4122c63a13cfe40e97ac1f9ef01d8110a66943f4 + bbaba10171c0e8d26b9d31877799d2ebe309c7ee - + https://github.com/dotnet/runtime - 4122c63a13cfe40e97ac1f9ef01d8110a66943f4 + bbaba10171c0e8d26b9d31877799d2ebe309c7ee - + https://github.com/dotnet/runtime - 4122c63a13cfe40e97ac1f9ef01d8110a66943f4 + bbaba10171c0e8d26b9d31877799d2ebe309c7ee - + https://github.com/dotnet/winforms - c3140083fc4cc224169dbb71b26495cc903cedfc + 4d1be8c373dc51853f7ee9d38f92ccf38250d891 diff --git a/eng/Versions.props b/eng/Versions.props index d485a0b6b..14836460a 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -24,51 +24,51 @@ 6.2.4 - 8.0.0-rc.2.23426.4 - 8.0.0-rc.2.23426.4 - 8.0.0-rc.2.23426.4 - 8.0.0-rc.2.23426.4 + 8.0.0-rc.2.23429.12 + 8.0.0-rc.2.23429.12 + 8.0.0-rc.2.23429.12 + 8.0.0-rc.2.23429.12 5.0.0 - 8.0.0-rc.2.23426.4 - 8.0.0-rc.2.23426.4 - 8.0.0-rc.2.23426.4 - 8.0.0-rc.2.23426.4 - 8.0.0-rc.2.23426.4 - 8.0.0-rc.2.23426.4 - 8.0.0-rc.2.23426.4 - 8.0.0-rc.2.23426.4 - 8.0.0-rc.2.23426.4 - 8.0.0-rc.2.23426.4 - 8.0.0-rc.2.23426.4 - 8.0.0-rc.2.23426.4 + 8.0.0-rc.2.23429.12 + 8.0.0-rc.2.23429.12 + 8.0.0-rc.2.23429.12 + 8.0.0-rc.2.23429.12 + 8.0.0-rc.2.23429.12 + 8.0.0-rc.2.23429.12 + 8.0.0-rc.2.23429.12 + 8.0.0-rc.2.23429.12 + 8.0.0-rc.2.23429.12 + 8.0.0-rc.2.23429.12 + 8.0.0-rc.2.23429.12 + 8.0.0-rc.2.23429.12 5.0.0 - 8.0.0-rc.2.23426.4 + 8.0.0-rc.2.23429.12 5.0.0 - 8.0.0-rc.2.23426.4 - 8.0.0-rc.2.23426.4 - 8.0.0-rc.2.23426.4 - 8.0.0-rc.2.23426.4 + 8.0.0-rc.2.23429.12 + 8.0.0-rc.2.23429.12 + 8.0.0-rc.2.23429.12 + 8.0.0-rc.2.23429.12 6.0.0 5.0.0 - 8.0.0-rc.2.23426.4 - 8.0.0-rc.2.23426.4 - 8.0.0-rc.2.23426.4 - 8.0.0-rc.2.23426.4 + 8.0.0-rc.2.23429.12 + 8.0.0-rc.2.23429.12 + 8.0.0-rc.2.23429.12 + 8.0.0-rc.2.23429.12 5.0.0 - 8.0.0-rc.2.23426.4 - 8.0.0-rc.2.23426.4 - 8.0.0-rc.2.23426.4 - 8.0.0-rc.2.23426.4 - 8.0.0-rc.2.23426.4 - 8.0.0-rc.2.23426.4 + 8.0.0-rc.2.23429.12 + 8.0.0-rc.2.23429.12 + 8.0.0-rc.2.23429.12 + 8.0.0-rc.2.23429.12 + 8.0.0-rc.2.23429.12 + 8.0.0-rc.2.23429.12 4.10.0 - 8.0.0-rc.2.23429.2 - 8.0.0-rc.2.23429.2 - 8.0.0-rc.2.23429.2 + 8.0.0-rc.2.23429.6 + 8.0.0-rc.2.23429.6 + 8.0.0-rc.2.23429.6 - 8.0.0-rc.2.23429.3 - 8.0.0-rc.2.23429.3 + 8.0.0-rc.2.23429.4 + 8.0.0-rc.2.23429.4 From 17a6b325fee457cc9cd96c094b49a96c97e341c6 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Wed, 30 Aug 2023 12:44:52 +0000 Subject: [PATCH 022/222] Update dependencies from https://github.com/dotnet/arcade build 20230829.1 Microsoft.DotNet.Arcade.Sdk , Microsoft.DotNet.Build.Tasks.Archives , Microsoft.DotNet.Build.Tasks.Feed , Microsoft.DotNet.Build.Tasks.Installers , Microsoft.DotNet.SharedFramework.Sdk , Microsoft.DotNet.VersionTools.Tasks From Version 8.0.0-beta.23419.1 -> To Version 8.0.0-beta.23429.1 --- eng/Version.Details.xml | 24 ++++++++++++------------ eng/Versions.props | 8 ++++---- global.json | 4 ++-- 3 files changed, 18 insertions(+), 18 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 2148f290d..9faccc6ed 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -151,29 +151,29 @@ - + https://github.com/dotnet/arcade - 3d92d0bfd8c9006f5fe1687e465dc4f8aa068b00 + 804d586c07a6c598551a2913f0958680cb9135a9 - + https://github.com/dotnet/arcade - 3d92d0bfd8c9006f5fe1687e465dc4f8aa068b00 + 804d586c07a6c598551a2913f0958680cb9135a9 - + https://github.com/dotnet/arcade - 3d92d0bfd8c9006f5fe1687e465dc4f8aa068b00 + 804d586c07a6c598551a2913f0958680cb9135a9 - + https://github.com/dotnet/arcade - 3d92d0bfd8c9006f5fe1687e465dc4f8aa068b00 + 804d586c07a6c598551a2913f0958680cb9135a9 - + https://github.com/dotnet/arcade - 3d92d0bfd8c9006f5fe1687e465dc4f8aa068b00 + 804d586c07a6c598551a2913f0958680cb9135a9 - + https://github.com/dotnet/arcade - 3d92d0bfd8c9006f5fe1687e465dc4f8aa068b00 + 804d586c07a6c598551a2913f0958680cb9135a9 diff --git a/eng/Versions.props b/eng/Versions.props index 0a63ac3c4..4759c22bf 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -11,10 +11,10 @@ - 8.0.0-beta.23428.2 - 8.0.0-beta.23428.2 - 8.0.0-beta.23428.2 - 8.0.0-beta.23428.2 + 8.0.0-beta.23429.1 + 8.0.0-beta.23429.1 + 8.0.0-beta.23429.1 + 8.0.0-beta.23429.1 4.5.0 4.8.5 diff --git a/global.json b/global.json index 36db85d52..748dd9747 100644 --- a/global.json +++ b/global.json @@ -3,8 +3,8 @@ "dotnet": "8.0.100-preview.7.23376.3" }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "8.0.0-beta.23428.2", - "Microsoft.DotNet.SharedFramework.Sdk": "8.0.0-beta.23428.2", + "Microsoft.DotNet.Arcade.Sdk": "8.0.0-beta.23429.1", + "Microsoft.DotNet.SharedFramework.Sdk": "8.0.0-beta.23429.1", "Microsoft.Build.NoTargets": "3.7.0", "Microsoft.Build.Traversal": "3.4.0" } From adace150a0acb25444cae72912641e1ddea72e18 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Wed, 30 Aug 2023 14:21:58 +0000 Subject: [PATCH 023/222] Update dependencies from https://github.com/dotnet/wpf build 20230830.2 Microsoft.DotNet.Wpf.GitHub , Microsoft.DotNet.Wpf.ProjectTemplates , Microsoft.NET.Sdk.WindowsDesktop From Version 8.0.0-rc.2.23429.3 -> To Version 8.0.0-rc.2.23430.2 Dependency coherency updates Microsoft.Private.Winforms,Microsoft.Internal.Runtime.WindowsDesktop.Transport,Microsoft.Private.Winforms,Microsoft.NETCore.App.Ref,Microsoft.Private.Winforms,VS.Redist.Common.NetCore.SharedFramework.x64.8.0,Microsoft.Private.Winforms,Microsoft.NETCore.App.Runtime.win-x64,Microsoft.Dotnet.WinForms.ProjectTemplates,Microsoft.Private.Winforms,Microsoft.Win32.Registry.AccessControl,Microsoft.Private.Winforms,Microsoft.Win32.SystemEvents,Microsoft.Private.Winforms,System.CodeDom,Microsoft.Private.Winforms,System.ComponentModel.Composition,Microsoft.Private.Winforms,System.Configuration.ConfigurationManager,Microsoft.Private.Winforms,System.Data.Odbc,Microsoft.Private.Winforms,System.Data.OleDb,Microsoft.Private.Winforms,System.Diagnostics.EventLog,Microsoft.Private.Winforms,System.Diagnostics.PerformanceCounter,Microsoft.Private.Winforms,System.DirectoryServices.AccountManagement,Microsoft.Private.Winforms,System.DirectoryServices.Protocols,Microsoft.Private.Winforms,System.DirectoryServices,Microsoft.Private.Winforms,System.IO.Packaging,Microsoft.Private.Winforms,System.IO.Ports,Microsoft.Private.Winforms,System.Management,Microsoft.Private.Winforms,System.Reflection.Context,Microsoft.Private.Winforms,System.Runtime.Caching,Microsoft.Private.Winforms,System.Security.Cryptography.Pkcs,Microsoft.Private.Winforms,System.Security.Cryptography.ProtectedData,Microsoft.Private.Winforms,System.Security.Cryptography.Xml,Microsoft.Private.Winforms,System.Security.Permissions,Microsoft.Private.Winforms,System.ServiceModel.Syndication,Microsoft.Private.Winforms,System.ServiceProcess.ServiceController,Microsoft.Private.Winforms,System.Speech,Microsoft.Private.Winforms,System.Text.Encoding.CodePages,Microsoft.Private.Winforms,System.Threading.AccessControl,Microsoft.Private.Winforms,System.ComponentModel.Composition.Registration,System.Drawing.Common From Version 8.0.0-rc.2.23429.2 -> To Version 8.0.0-rc.2.23429.6 (parent: Microsoft.DotNet.Wpf.GitHub --- eng/Version.Details.xml | 12 ++++++------ eng/Versions.props | 4 ++-- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 65ff771c4..0b41a3982 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -9,13 +9,13 @@ https://github.com/dotnet/winforms 4d1be8c373dc51853f7ee9d38f92ccf38250d891 - + https://github.com/dotnet/wpf - 1e503471a548d13c4a300e24e8c6f98bbcc5d5c6 + e859a0d7a0f76ddb0a8eff8b5dd248459158a17d - + https://github.com/dotnet/wpf - 1e503471a548d13c4a300e24e8c6f98bbcc5d5c6 + e859a0d7a0f76ddb0a8eff8b5dd248459158a17d https://github.com/dotnet/runtime @@ -33,9 +33,9 @@ https://github.com/dotnet/winforms 4d1be8c373dc51853f7ee9d38f92ccf38250d891 - + https://github.com/dotnet/wpf - 1e503471a548d13c4a300e24e8c6f98bbcc5d5c6 + e859a0d7a0f76ddb0a8eff8b5dd248459158a17d https://github.com/dotnet/runtime diff --git a/eng/Versions.props b/eng/Versions.props index 14836460a..5d7abc0e4 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -68,7 +68,7 @@ 8.0.0-rc.2.23429.6 8.0.0-rc.2.23429.6 - 8.0.0-rc.2.23429.4 - 8.0.0-rc.2.23429.4 + 8.0.0-rc.2.23430.2 + 8.0.0-rc.2.23430.2 From 5630d2b3d777ec68c1f78bd5c8d1160813a3eb25 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Wed, 30 Aug 2023 15:46:19 +0000 Subject: [PATCH 024/222] Update dependencies from https://github.com/dotnet/wpf build 20230830.4 Microsoft.DotNet.Wpf.GitHub , Microsoft.DotNet.Wpf.ProjectTemplates , Microsoft.NET.Sdk.WindowsDesktop From Version 8.0.0-rc.2.23429.3 -> To Version 8.0.0-rc.2.23430.4 Dependency coherency updates Microsoft.Private.Winforms,Microsoft.Internal.Runtime.WindowsDesktop.Transport,Microsoft.Private.Winforms,Microsoft.NETCore.App.Ref,Microsoft.Private.Winforms,VS.Redist.Common.NetCore.SharedFramework.x64.8.0,Microsoft.Private.Winforms,Microsoft.NETCore.App.Runtime.win-x64,Microsoft.Dotnet.WinForms.ProjectTemplates,Microsoft.Private.Winforms,Microsoft.Win32.Registry.AccessControl,Microsoft.Private.Winforms,Microsoft.Win32.SystemEvents,Microsoft.Private.Winforms,System.CodeDom,Microsoft.Private.Winforms,System.ComponentModel.Composition,Microsoft.Private.Winforms,System.Configuration.ConfigurationManager,Microsoft.Private.Winforms,System.Data.Odbc,Microsoft.Private.Winforms,System.Data.OleDb,Microsoft.Private.Winforms,System.Diagnostics.EventLog,Microsoft.Private.Winforms,System.Diagnostics.PerformanceCounter,Microsoft.Private.Winforms,System.DirectoryServices.AccountManagement,Microsoft.Private.Winforms,System.DirectoryServices.Protocols,Microsoft.Private.Winforms,System.DirectoryServices,Microsoft.Private.Winforms,System.IO.Packaging,Microsoft.Private.Winforms,System.IO.Ports,Microsoft.Private.Winforms,System.Management,Microsoft.Private.Winforms,System.Reflection.Context,Microsoft.Private.Winforms,System.Runtime.Caching,Microsoft.Private.Winforms,System.Security.Cryptography.Pkcs,Microsoft.Private.Winforms,System.Security.Cryptography.ProtectedData,Microsoft.Private.Winforms,System.Security.Cryptography.Xml,Microsoft.Private.Winforms,System.Security.Permissions,Microsoft.Private.Winforms,System.ServiceModel.Syndication,Microsoft.Private.Winforms,System.ServiceProcess.ServiceController,Microsoft.Private.Winforms,System.Speech,Microsoft.Private.Winforms,System.Text.Encoding.CodePages,Microsoft.Private.Winforms,System.Threading.AccessControl,Microsoft.Private.Winforms,System.ComponentModel.Composition.Registration,System.Drawing.Common From Version 8.0.0-rc.2.23429.2 -> To Version 8.0.0-rc.2.23430.2 (parent: Microsoft.DotNet.Wpf.GitHub --- eng/Version.Details.xml | 24 ++++++++++++------------ eng/Versions.props | 10 +++++----- 2 files changed, 17 insertions(+), 17 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 0b41a3982..583d2881c 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -5,17 +5,17 @@ https://github.com/dotnet/runtime bbaba10171c0e8d26b9d31877799d2ebe309c7ee - + https://github.com/dotnet/winforms - 4d1be8c373dc51853f7ee9d38f92ccf38250d891 + e81476382d461465acfc741097dc5fff8ea67eaa - + https://github.com/dotnet/wpf - e859a0d7a0f76ddb0a8eff8b5dd248459158a17d + 31d1f63f02e1618db5284267c973b9bc54d6c7b4 - + https://github.com/dotnet/wpf - e859a0d7a0f76ddb0a8eff8b5dd248459158a17d + 31d1f63f02e1618db5284267c973b9bc54d6c7b4 https://github.com/dotnet/runtime @@ -29,13 +29,13 @@ https://github.com/dotnet/runtime bbaba10171c0e8d26b9d31877799d2ebe309c7ee - + https://github.com/dotnet/winforms - 4d1be8c373dc51853f7ee9d38f92ccf38250d891 + e81476382d461465acfc741097dc5fff8ea67eaa - + https://github.com/dotnet/wpf - e859a0d7a0f76ddb0a8eff8b5dd248459158a17d + 31d1f63f02e1618db5284267c973b9bc54d6c7b4 https://github.com/dotnet/runtime @@ -145,9 +145,9 @@ https://github.com/dotnet/runtime bbaba10171c0e8d26b9d31877799d2ebe309c7ee - + https://github.com/dotnet/winforms - 4d1be8c373dc51853f7ee9d38f92ccf38250d891 + e81476382d461465acfc741097dc5fff8ea67eaa diff --git a/eng/Versions.props b/eng/Versions.props index 5d7abc0e4..4f75f0780 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -64,11 +64,11 @@ 4.10.0 - 8.0.0-rc.2.23429.6 - 8.0.0-rc.2.23429.6 - 8.0.0-rc.2.23429.6 + 8.0.0-rc.2.23430.2 + 8.0.0-rc.2.23430.2 + 8.0.0-rc.2.23430.2 - 8.0.0-rc.2.23430.2 - 8.0.0-rc.2.23430.2 + 8.0.0-rc.2.23430.4 + 8.0.0-rc.2.23430.4 From 82376ae52285e9b244e4b74b725c4159ecc8313a Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Wed, 30 Aug 2023 18:56:17 +0000 Subject: [PATCH 025/222] Update dependencies from https://github.com/dotnet/wpf build 20230830.5 Microsoft.DotNet.Wpf.GitHub , Microsoft.DotNet.Wpf.ProjectTemplates , Microsoft.NET.Sdk.WindowsDesktop From Version 8.0.0-rc.2.23429.3 -> To Version 8.0.0-rc.2.23430.5 Dependency coherency updates Microsoft.Private.Winforms,Microsoft.Internal.Runtime.WindowsDesktop.Transport,Microsoft.Private.Winforms,Microsoft.NETCore.App.Ref,Microsoft.Private.Winforms,VS.Redist.Common.NetCore.SharedFramework.x64.8.0,Microsoft.Private.Winforms,Microsoft.NETCore.App.Runtime.win-x64,Microsoft.Dotnet.WinForms.ProjectTemplates,Microsoft.Private.Winforms,Microsoft.Win32.Registry.AccessControl,Microsoft.Private.Winforms,Microsoft.Win32.SystemEvents,Microsoft.Private.Winforms,System.CodeDom,Microsoft.Private.Winforms,System.ComponentModel.Composition,Microsoft.Private.Winforms,System.Configuration.ConfigurationManager,Microsoft.Private.Winforms,System.Data.Odbc,Microsoft.Private.Winforms,System.Data.OleDb,Microsoft.Private.Winforms,System.Diagnostics.EventLog,Microsoft.Private.Winforms,System.Diagnostics.PerformanceCounter,Microsoft.Private.Winforms,System.DirectoryServices.AccountManagement,Microsoft.Private.Winforms,System.DirectoryServices.Protocols,Microsoft.Private.Winforms,System.DirectoryServices,Microsoft.Private.Winforms,System.IO.Packaging,Microsoft.Private.Winforms,System.IO.Ports,Microsoft.Private.Winforms,System.Management,Microsoft.Private.Winforms,System.Reflection.Context,Microsoft.Private.Winforms,System.Runtime.Caching,Microsoft.Private.Winforms,System.Security.Cryptography.Pkcs,Microsoft.Private.Winforms,System.Security.Cryptography.ProtectedData,Microsoft.Private.Winforms,System.Security.Cryptography.Xml,Microsoft.Private.Winforms,System.Security.Permissions,Microsoft.Private.Winforms,System.ServiceModel.Syndication,Microsoft.Private.Winforms,System.ServiceProcess.ServiceController,Microsoft.Private.Winforms,System.Speech,Microsoft.Private.Winforms,System.Text.Encoding.CodePages,Microsoft.Private.Winforms,System.Threading.AccessControl,Microsoft.Private.Winforms,System.ComponentModel.Composition.Registration,System.Drawing.Common From Version 8.0.0-rc.2.23429.2 -> To Version 8.0.0-rc.2.23430.4 (parent: Microsoft.DotNet.Wpf.GitHub --- eng/Version.Details.xml | 148 ++++++++++++++++++++-------------------- eng/Versions.props | 72 +++++++++---------- 2 files changed, 110 insertions(+), 110 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 583d2881c..35d528e27 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,153 +1,153 @@ - + https://github.com/dotnet/runtime - bbaba10171c0e8d26b9d31877799d2ebe309c7ee + 36b3790bfc6fe077c4047aec0d64a0157c0c7928 - + https://github.com/dotnet/winforms - e81476382d461465acfc741097dc5fff8ea67eaa + ce3b8e5ad41118b1d277cb29c26733208cc284e8 - + https://github.com/dotnet/wpf - 31d1f63f02e1618db5284267c973b9bc54d6c7b4 + 007d3454f71ed98fcb3a526efa0871b69fce5425 - + https://github.com/dotnet/wpf - 31d1f63f02e1618db5284267c973b9bc54d6c7b4 + 007d3454f71ed98fcb3a526efa0871b69fce5425 - + https://github.com/dotnet/runtime - bbaba10171c0e8d26b9d31877799d2ebe309c7ee + 36b3790bfc6fe077c4047aec0d64a0157c0c7928 - + https://github.com/dotnet/runtime - bbaba10171c0e8d26b9d31877799d2ebe309c7ee + 36b3790bfc6fe077c4047aec0d64a0157c0c7928 - + https://github.com/dotnet/runtime - bbaba10171c0e8d26b9d31877799d2ebe309c7ee + 36b3790bfc6fe077c4047aec0d64a0157c0c7928 - + https://github.com/dotnet/winforms - e81476382d461465acfc741097dc5fff8ea67eaa + ce3b8e5ad41118b1d277cb29c26733208cc284e8 - + https://github.com/dotnet/wpf - 31d1f63f02e1618db5284267c973b9bc54d6c7b4 + 007d3454f71ed98fcb3a526efa0871b69fce5425 - + https://github.com/dotnet/runtime - bbaba10171c0e8d26b9d31877799d2ebe309c7ee + 36b3790bfc6fe077c4047aec0d64a0157c0c7928 - + https://github.com/dotnet/runtime - bbaba10171c0e8d26b9d31877799d2ebe309c7ee + 36b3790bfc6fe077c4047aec0d64a0157c0c7928 - + https://github.com/dotnet/runtime - bbaba10171c0e8d26b9d31877799d2ebe309c7ee + 36b3790bfc6fe077c4047aec0d64a0157c0c7928 - + https://github.com/dotnet/runtime - bbaba10171c0e8d26b9d31877799d2ebe309c7ee + 36b3790bfc6fe077c4047aec0d64a0157c0c7928 - + https://github.com/dotnet/runtime - bbaba10171c0e8d26b9d31877799d2ebe309c7ee + 36b3790bfc6fe077c4047aec0d64a0157c0c7928 - + https://github.com/dotnet/runtime - bbaba10171c0e8d26b9d31877799d2ebe309c7ee + 36b3790bfc6fe077c4047aec0d64a0157c0c7928 - + https://github.com/dotnet/runtime - bbaba10171c0e8d26b9d31877799d2ebe309c7ee + 36b3790bfc6fe077c4047aec0d64a0157c0c7928 - + https://github.com/dotnet/runtime - bbaba10171c0e8d26b9d31877799d2ebe309c7ee + 36b3790bfc6fe077c4047aec0d64a0157c0c7928 - + https://github.com/dotnet/runtime - bbaba10171c0e8d26b9d31877799d2ebe309c7ee + 36b3790bfc6fe077c4047aec0d64a0157c0c7928 - + https://github.com/dotnet/runtime - bbaba10171c0e8d26b9d31877799d2ebe309c7ee + 36b3790bfc6fe077c4047aec0d64a0157c0c7928 - + https://github.com/dotnet/runtime - bbaba10171c0e8d26b9d31877799d2ebe309c7ee + 36b3790bfc6fe077c4047aec0d64a0157c0c7928 - + https://github.com/dotnet/runtime - bbaba10171c0e8d26b9d31877799d2ebe309c7ee + 36b3790bfc6fe077c4047aec0d64a0157c0c7928 - + https://github.com/dotnet/runtime - bbaba10171c0e8d26b9d31877799d2ebe309c7ee + 36b3790bfc6fe077c4047aec0d64a0157c0c7928 - + https://github.com/dotnet/runtime - bbaba10171c0e8d26b9d31877799d2ebe309c7ee + 36b3790bfc6fe077c4047aec0d64a0157c0c7928 - + https://github.com/dotnet/runtime - bbaba10171c0e8d26b9d31877799d2ebe309c7ee + 36b3790bfc6fe077c4047aec0d64a0157c0c7928 - + https://github.com/dotnet/runtime - bbaba10171c0e8d26b9d31877799d2ebe309c7ee + 36b3790bfc6fe077c4047aec0d64a0157c0c7928 - + https://github.com/dotnet/runtime - bbaba10171c0e8d26b9d31877799d2ebe309c7ee + 36b3790bfc6fe077c4047aec0d64a0157c0c7928 - + https://github.com/dotnet/runtime - bbaba10171c0e8d26b9d31877799d2ebe309c7ee + 36b3790bfc6fe077c4047aec0d64a0157c0c7928 - + https://github.com/dotnet/runtime - bbaba10171c0e8d26b9d31877799d2ebe309c7ee + 36b3790bfc6fe077c4047aec0d64a0157c0c7928 - + https://github.com/dotnet/runtime - bbaba10171c0e8d26b9d31877799d2ebe309c7ee + 36b3790bfc6fe077c4047aec0d64a0157c0c7928 - + https://github.com/dotnet/runtime - bbaba10171c0e8d26b9d31877799d2ebe309c7ee + 36b3790bfc6fe077c4047aec0d64a0157c0c7928 - + https://github.com/dotnet/runtime - bbaba10171c0e8d26b9d31877799d2ebe309c7ee + 36b3790bfc6fe077c4047aec0d64a0157c0c7928 - + https://github.com/dotnet/runtime - bbaba10171c0e8d26b9d31877799d2ebe309c7ee + 36b3790bfc6fe077c4047aec0d64a0157c0c7928 - + https://github.com/dotnet/runtime - bbaba10171c0e8d26b9d31877799d2ebe309c7ee + 36b3790bfc6fe077c4047aec0d64a0157c0c7928 - + https://github.com/dotnet/runtime - bbaba10171c0e8d26b9d31877799d2ebe309c7ee + 36b3790bfc6fe077c4047aec0d64a0157c0c7928 - + https://github.com/dotnet/runtime - bbaba10171c0e8d26b9d31877799d2ebe309c7ee + 36b3790bfc6fe077c4047aec0d64a0157c0c7928 - + https://github.com/dotnet/runtime - bbaba10171c0e8d26b9d31877799d2ebe309c7ee + 36b3790bfc6fe077c4047aec0d64a0157c0c7928 - + https://github.com/dotnet/winforms - e81476382d461465acfc741097dc5fff8ea67eaa + ce3b8e5ad41118b1d277cb29c26733208cc284e8 diff --git a/eng/Versions.props b/eng/Versions.props index 4f75f0780..082c98027 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -24,51 +24,51 @@ 6.2.4 - 8.0.0-rc.2.23429.12 - 8.0.0-rc.2.23429.12 - 8.0.0-rc.2.23429.12 - 8.0.0-rc.2.23429.12 + 8.0.0-rc.2.23429.20 + 8.0.0-rc.2.23429.20 + 8.0.0-rc.2.23429.20 + 8.0.0-rc.2.23429.20 5.0.0 - 8.0.0-rc.2.23429.12 - 8.0.0-rc.2.23429.12 - 8.0.0-rc.2.23429.12 - 8.0.0-rc.2.23429.12 - 8.0.0-rc.2.23429.12 - 8.0.0-rc.2.23429.12 - 8.0.0-rc.2.23429.12 - 8.0.0-rc.2.23429.12 - 8.0.0-rc.2.23429.12 - 8.0.0-rc.2.23429.12 - 8.0.0-rc.2.23429.12 - 8.0.0-rc.2.23429.12 + 8.0.0-rc.2.23429.20 + 8.0.0-rc.2.23429.20 + 8.0.0-rc.2.23429.20 + 8.0.0-rc.2.23429.20 + 8.0.0-rc.2.23429.20 + 8.0.0-rc.2.23429.20 + 8.0.0-rc.2.23429.20 + 8.0.0-rc.2.23429.20 + 8.0.0-rc.2.23429.20 + 8.0.0-rc.2.23429.20 + 8.0.0-rc.2.23429.20 + 8.0.0-rc.2.23429.20 5.0.0 - 8.0.0-rc.2.23429.12 + 8.0.0-rc.2.23429.20 5.0.0 - 8.0.0-rc.2.23429.12 - 8.0.0-rc.2.23429.12 - 8.0.0-rc.2.23429.12 - 8.0.0-rc.2.23429.12 + 8.0.0-rc.2.23429.20 + 8.0.0-rc.2.23429.20 + 8.0.0-rc.2.23429.20 + 8.0.0-rc.2.23429.20 6.0.0 5.0.0 - 8.0.0-rc.2.23429.12 - 8.0.0-rc.2.23429.12 - 8.0.0-rc.2.23429.12 - 8.0.0-rc.2.23429.12 + 8.0.0-rc.2.23429.20 + 8.0.0-rc.2.23429.20 + 8.0.0-rc.2.23429.20 + 8.0.0-rc.2.23429.20 5.0.0 - 8.0.0-rc.2.23429.12 - 8.0.0-rc.2.23429.12 - 8.0.0-rc.2.23429.12 - 8.0.0-rc.2.23429.12 - 8.0.0-rc.2.23429.12 - 8.0.0-rc.2.23429.12 + 8.0.0-rc.2.23429.20 + 8.0.0-rc.2.23429.20 + 8.0.0-rc.2.23429.20 + 8.0.0-rc.2.23429.20 + 8.0.0-rc.2.23429.20 + 8.0.0-rc.2.23429.20 4.10.0 - 8.0.0-rc.2.23430.2 - 8.0.0-rc.2.23430.2 - 8.0.0-rc.2.23430.2 + 8.0.0-rc.2.23430.4 + 8.0.0-rc.2.23430.4 + 8.0.0-rc.2.23430.4 - 8.0.0-rc.2.23430.4 - 8.0.0-rc.2.23430.4 + 8.0.0-rc.2.23430.5 + 8.0.0-rc.2.23430.5 From 7131bbac82bc55f5956bfed0d1ede37ff01a4c15 Mon Sep 17 00:00:00 2001 From: Matt Mitchell Date: Wed, 30 Aug 2023 14:35:58 -0700 Subject: [PATCH 026/222] [release/8.0] Fixup and clean publishing a bit (#3828) Fixup and clean publishing a bit (#3825) Reduce the number of files published via Maestro. We were overgenerating checksums, publishing wixpacks where not necessary, etc. Reduces the total size of the non-nupkg artifacts from 808MB->538MB --- src/publish/prepare-artifacts.proj | 31 +++++++++++++++++------------- 1 file changed, 18 insertions(+), 13 deletions(-) diff --git a/src/publish/prepare-artifacts.proj b/src/publish/prepare-artifacts.proj index 9909cd1cf..d9d2965cf 100644 --- a/src/publish/prepare-artifacts.proj +++ b/src/publish/prepare-artifacts.proj @@ -87,8 +87,16 @@ + Include="@(DownloadedNonShippingArtifactFile)" + Exclude="@(DownloadedSymbolNupkgFile);@(DownloadedNupkgFile)"> + $(InstallersRelativePath)%(Filename)%(Extension) + true + NonShipping=true + + + $(InstallersRelativePath)%(Filename)%(Extension) true @@ -170,18 +178,18 @@ - + + + + + + - - - From ab38b052dae3ac1162e44a74cadcd6400e1e56c1 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Thu, 31 Aug 2023 02:46:23 +0000 Subject: [PATCH 027/222] Update dependencies from https://github.com/dotnet/wpf build 20230830.6 Microsoft.DotNet.Wpf.GitHub , Microsoft.DotNet.Wpf.ProjectTemplates , Microsoft.NET.Sdk.WindowsDesktop From Version 8.0.0-rc.2.23430.5 -> To Version 8.0.0-rc.2.23430.6 Dependency coherency updates Microsoft.Private.Winforms,Microsoft.Internal.Runtime.WindowsDesktop.Transport,Microsoft.Private.Winforms,Microsoft.NETCore.App.Ref,Microsoft.Private.Winforms,VS.Redist.Common.NetCore.SharedFramework.x64.8.0,Microsoft.Private.Winforms,Microsoft.NETCore.App.Runtime.win-x64,Microsoft.Dotnet.WinForms.ProjectTemplates,Microsoft.Private.Winforms,Microsoft.Win32.Registry.AccessControl,Microsoft.Private.Winforms,Microsoft.Win32.SystemEvents,Microsoft.Private.Winforms,System.CodeDom,Microsoft.Private.Winforms,System.ComponentModel.Composition,Microsoft.Private.Winforms,System.Configuration.ConfigurationManager,Microsoft.Private.Winforms,System.Data.Odbc,Microsoft.Private.Winforms,System.Data.OleDb,Microsoft.Private.Winforms,System.Diagnostics.EventLog,Microsoft.Private.Winforms,System.Diagnostics.PerformanceCounter,Microsoft.Private.Winforms,System.DirectoryServices.AccountManagement,Microsoft.Private.Winforms,System.DirectoryServices.Protocols,Microsoft.Private.Winforms,System.DirectoryServices,Microsoft.Private.Winforms,System.IO.Packaging,Microsoft.Private.Winforms,System.IO.Ports,Microsoft.Private.Winforms,System.Management,Microsoft.Private.Winforms,System.Reflection.Context,Microsoft.Private.Winforms,System.Runtime.Caching,Microsoft.Private.Winforms,System.Security.Cryptography.Pkcs,Microsoft.Private.Winforms,System.Security.Cryptography.ProtectedData,Microsoft.Private.Winforms,System.Security.Cryptography.Xml,Microsoft.Private.Winforms,System.Security.Permissions,Microsoft.Private.Winforms,System.ServiceModel.Syndication,Microsoft.Private.Winforms,System.ServiceProcess.ServiceController,Microsoft.Private.Winforms,System.Speech,Microsoft.Private.Winforms,System.Text.Encoding.CodePages,Microsoft.Private.Winforms,System.Threading.AccessControl,Microsoft.Private.Winforms,System.ComponentModel.Composition.Registration,System.Drawing.Common From Version 8.0.0-rc.2.23430.4 -> To Version 8.0.0-rc.2.23430.6 (parent: Microsoft.DotNet.Wpf.GitHub --- eng/Version.Details.xml | 148 ++++++++++++++++++++-------------------- eng/Versions.props | 72 +++++++++---------- 2 files changed, 110 insertions(+), 110 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 6efa712c7..a4ff8bf60 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,153 +1,153 @@ - + https://github.com/dotnet/runtime - 36b3790bfc6fe077c4047aec0d64a0157c0c7928 + 40d2134aa50389d70fd845a7a6c06f46383e602e - + https://github.com/dotnet/winforms - ce3b8e5ad41118b1d277cb29c26733208cc284e8 + f518fa7b48fea8a1609d6d88491c0de996686f81 - + https://github.com/dotnet/wpf - 007d3454f71ed98fcb3a526efa0871b69fce5425 + bb3c3836a0a7a54dc58a9125d692d91a20fb8198 - + https://github.com/dotnet/wpf - 007d3454f71ed98fcb3a526efa0871b69fce5425 + bb3c3836a0a7a54dc58a9125d692d91a20fb8198 - + https://github.com/dotnet/runtime - 36b3790bfc6fe077c4047aec0d64a0157c0c7928 + 40d2134aa50389d70fd845a7a6c06f46383e602e - + https://github.com/dotnet/runtime - 36b3790bfc6fe077c4047aec0d64a0157c0c7928 + 40d2134aa50389d70fd845a7a6c06f46383e602e - + https://github.com/dotnet/runtime - 36b3790bfc6fe077c4047aec0d64a0157c0c7928 + 40d2134aa50389d70fd845a7a6c06f46383e602e - + https://github.com/dotnet/winforms - ce3b8e5ad41118b1d277cb29c26733208cc284e8 + f518fa7b48fea8a1609d6d88491c0de996686f81 - + https://github.com/dotnet/wpf - 007d3454f71ed98fcb3a526efa0871b69fce5425 + bb3c3836a0a7a54dc58a9125d692d91a20fb8198 - + https://github.com/dotnet/runtime - 36b3790bfc6fe077c4047aec0d64a0157c0c7928 + 40d2134aa50389d70fd845a7a6c06f46383e602e - + https://github.com/dotnet/runtime - 36b3790bfc6fe077c4047aec0d64a0157c0c7928 + 40d2134aa50389d70fd845a7a6c06f46383e602e - + https://github.com/dotnet/runtime - 36b3790bfc6fe077c4047aec0d64a0157c0c7928 + 40d2134aa50389d70fd845a7a6c06f46383e602e - + https://github.com/dotnet/runtime - 36b3790bfc6fe077c4047aec0d64a0157c0c7928 + 40d2134aa50389d70fd845a7a6c06f46383e602e - + https://github.com/dotnet/runtime - 36b3790bfc6fe077c4047aec0d64a0157c0c7928 + 40d2134aa50389d70fd845a7a6c06f46383e602e - + https://github.com/dotnet/runtime - 36b3790bfc6fe077c4047aec0d64a0157c0c7928 + 40d2134aa50389d70fd845a7a6c06f46383e602e - + https://github.com/dotnet/runtime - 36b3790bfc6fe077c4047aec0d64a0157c0c7928 + 40d2134aa50389d70fd845a7a6c06f46383e602e - + https://github.com/dotnet/runtime - 36b3790bfc6fe077c4047aec0d64a0157c0c7928 + 40d2134aa50389d70fd845a7a6c06f46383e602e - + https://github.com/dotnet/runtime - 36b3790bfc6fe077c4047aec0d64a0157c0c7928 + 40d2134aa50389d70fd845a7a6c06f46383e602e - + https://github.com/dotnet/runtime - 36b3790bfc6fe077c4047aec0d64a0157c0c7928 + 40d2134aa50389d70fd845a7a6c06f46383e602e - + https://github.com/dotnet/runtime - 36b3790bfc6fe077c4047aec0d64a0157c0c7928 + 40d2134aa50389d70fd845a7a6c06f46383e602e - + https://github.com/dotnet/runtime - 36b3790bfc6fe077c4047aec0d64a0157c0c7928 + 40d2134aa50389d70fd845a7a6c06f46383e602e - + https://github.com/dotnet/runtime - 36b3790bfc6fe077c4047aec0d64a0157c0c7928 + 40d2134aa50389d70fd845a7a6c06f46383e602e - + https://github.com/dotnet/runtime - 36b3790bfc6fe077c4047aec0d64a0157c0c7928 + 40d2134aa50389d70fd845a7a6c06f46383e602e - + https://github.com/dotnet/runtime - 36b3790bfc6fe077c4047aec0d64a0157c0c7928 + 40d2134aa50389d70fd845a7a6c06f46383e602e - + https://github.com/dotnet/runtime - 36b3790bfc6fe077c4047aec0d64a0157c0c7928 + 40d2134aa50389d70fd845a7a6c06f46383e602e - + https://github.com/dotnet/runtime - 36b3790bfc6fe077c4047aec0d64a0157c0c7928 + 40d2134aa50389d70fd845a7a6c06f46383e602e - + https://github.com/dotnet/runtime - 36b3790bfc6fe077c4047aec0d64a0157c0c7928 + 40d2134aa50389d70fd845a7a6c06f46383e602e - + https://github.com/dotnet/runtime - 36b3790bfc6fe077c4047aec0d64a0157c0c7928 + 40d2134aa50389d70fd845a7a6c06f46383e602e - + https://github.com/dotnet/runtime - 36b3790bfc6fe077c4047aec0d64a0157c0c7928 + 40d2134aa50389d70fd845a7a6c06f46383e602e - + https://github.com/dotnet/runtime - 36b3790bfc6fe077c4047aec0d64a0157c0c7928 + 40d2134aa50389d70fd845a7a6c06f46383e602e - + https://github.com/dotnet/runtime - 36b3790bfc6fe077c4047aec0d64a0157c0c7928 + 40d2134aa50389d70fd845a7a6c06f46383e602e - + https://github.com/dotnet/runtime - 36b3790bfc6fe077c4047aec0d64a0157c0c7928 + 40d2134aa50389d70fd845a7a6c06f46383e602e - + https://github.com/dotnet/runtime - 36b3790bfc6fe077c4047aec0d64a0157c0c7928 + 40d2134aa50389d70fd845a7a6c06f46383e602e - + https://github.com/dotnet/runtime - 36b3790bfc6fe077c4047aec0d64a0157c0c7928 + 40d2134aa50389d70fd845a7a6c06f46383e602e - + https://github.com/dotnet/runtime - 36b3790bfc6fe077c4047aec0d64a0157c0c7928 + 40d2134aa50389d70fd845a7a6c06f46383e602e - + https://github.com/dotnet/runtime - 36b3790bfc6fe077c4047aec0d64a0157c0c7928 + 40d2134aa50389d70fd845a7a6c06f46383e602e - + https://github.com/dotnet/winforms - ce3b8e5ad41118b1d277cb29c26733208cc284e8 + f518fa7b48fea8a1609d6d88491c0de996686f81 diff --git a/eng/Versions.props b/eng/Versions.props index f50ab4be4..f46187e12 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -24,51 +24,51 @@ 6.2.4 - 8.0.0-rc.2.23429.20 - 8.0.0-rc.2.23429.20 - 8.0.0-rc.2.23429.20 - 8.0.0-rc.2.23429.20 + 8.0.0-rc.2.23430.5 + 8.0.0-rc.2.23430.5 + 8.0.0-rc.2.23430.5 + 8.0.0-rc.2.23430.5 5.0.0 - 8.0.0-rc.2.23429.20 - 8.0.0-rc.2.23429.20 - 8.0.0-rc.2.23429.20 - 8.0.0-rc.2.23429.20 - 8.0.0-rc.2.23429.20 - 8.0.0-rc.2.23429.20 - 8.0.0-rc.2.23429.20 - 8.0.0-rc.2.23429.20 - 8.0.0-rc.2.23429.20 - 8.0.0-rc.2.23429.20 - 8.0.0-rc.2.23429.20 - 8.0.0-rc.2.23429.20 + 8.0.0-rc.2.23430.5 + 8.0.0-rc.2.23430.5 + 8.0.0-rc.2.23430.5 + 8.0.0-rc.2.23430.5 + 8.0.0-rc.2.23430.5 + 8.0.0-rc.2.23430.5 + 8.0.0-rc.2.23430.5 + 8.0.0-rc.2.23430.5 + 8.0.0-rc.2.23430.5 + 8.0.0-rc.2.23430.5 + 8.0.0-rc.2.23430.5 + 8.0.0-rc.2.23430.5 5.0.0 - 8.0.0-rc.2.23429.20 + 8.0.0-rc.2.23430.5 5.0.0 - 8.0.0-rc.2.23429.20 - 8.0.0-rc.2.23429.20 - 8.0.0-rc.2.23429.20 - 8.0.0-rc.2.23429.20 + 8.0.0-rc.2.23430.5 + 8.0.0-rc.2.23430.5 + 8.0.0-rc.2.23430.5 + 8.0.0-rc.2.23430.5 6.0.0 5.0.0 - 8.0.0-rc.2.23429.20 - 8.0.0-rc.2.23429.20 - 8.0.0-rc.2.23429.20 - 8.0.0-rc.2.23429.20 + 8.0.0-rc.2.23430.5 + 8.0.0-rc.2.23430.5 + 8.0.0-rc.2.23430.5 + 8.0.0-rc.2.23430.5 5.0.0 - 8.0.0-rc.2.23429.20 - 8.0.0-rc.2.23429.20 - 8.0.0-rc.2.23429.20 - 8.0.0-rc.2.23429.20 - 8.0.0-rc.2.23429.20 - 8.0.0-rc.2.23429.20 + 8.0.0-rc.2.23430.5 + 8.0.0-rc.2.23430.5 + 8.0.0-rc.2.23430.5 + 8.0.0-rc.2.23430.5 + 8.0.0-rc.2.23430.5 + 8.0.0-rc.2.23430.5 4.10.0 - 8.0.0-rc.2.23430.4 - 8.0.0-rc.2.23430.4 - 8.0.0-rc.2.23430.4 + 8.0.0-rc.2.23430.6 + 8.0.0-rc.2.23430.6 + 8.0.0-rc.2.23430.6 - 8.0.0-rc.2.23430.5 - 8.0.0-rc.2.23430.5 + 8.0.0-rc.2.23430.6 + 8.0.0-rc.2.23430.6 From 4088662b6b2a0e188c914c40bc6ba5c0685e3545 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Thu, 31 Aug 2023 04:50:07 +0000 Subject: [PATCH 028/222] Update dependencies from https://github.com/dotnet/wpf build 20230830.8 Microsoft.DotNet.Wpf.GitHub , Microsoft.DotNet.Wpf.ProjectTemplates , Microsoft.NET.Sdk.WindowsDesktop From Version 8.0.0-rc.2.23430.5 -> To Version 8.0.0-rc.2.23430.8 Dependency coherency updates Microsoft.Private.Winforms,Microsoft.Internal.Runtime.WindowsDesktop.Transport,Microsoft.Private.Winforms,Microsoft.NETCore.App.Ref,Microsoft.Private.Winforms,VS.Redist.Common.NetCore.SharedFramework.x64.8.0,Microsoft.Private.Winforms,Microsoft.NETCore.App.Runtime.win-x64,Microsoft.Dotnet.WinForms.ProjectTemplates,Microsoft.Private.Winforms,Microsoft.Win32.Registry.AccessControl,Microsoft.Private.Winforms,Microsoft.Win32.SystemEvents,Microsoft.Private.Winforms,System.CodeDom,Microsoft.Private.Winforms,System.ComponentModel.Composition,Microsoft.Private.Winforms,System.Configuration.ConfigurationManager,Microsoft.Private.Winforms,System.Data.Odbc,Microsoft.Private.Winforms,System.Data.OleDb,Microsoft.Private.Winforms,System.Diagnostics.EventLog,Microsoft.Private.Winforms,System.Diagnostics.PerformanceCounter,Microsoft.Private.Winforms,System.DirectoryServices.AccountManagement,Microsoft.Private.Winforms,System.DirectoryServices.Protocols,Microsoft.Private.Winforms,System.DirectoryServices,Microsoft.Private.Winforms,System.IO.Packaging,Microsoft.Private.Winforms,System.IO.Ports,Microsoft.Private.Winforms,System.Management,Microsoft.Private.Winforms,System.Reflection.Context,Microsoft.Private.Winforms,System.Runtime.Caching,Microsoft.Private.Winforms,System.Security.Cryptography.Pkcs,Microsoft.Private.Winforms,System.Security.Cryptography.ProtectedData,Microsoft.Private.Winforms,System.Security.Cryptography.Xml,Microsoft.Private.Winforms,System.Security.Permissions,Microsoft.Private.Winforms,System.ServiceModel.Syndication,Microsoft.Private.Winforms,System.ServiceProcess.ServiceController,Microsoft.Private.Winforms,System.Speech,Microsoft.Private.Winforms,System.Text.Encoding.CodePages,Microsoft.Private.Winforms,System.Threading.AccessControl,Microsoft.Private.Winforms,System.ComponentModel.Composition.Registration,System.Drawing.Common From Version 8.0.0-rc.2.23430.4 -> To Version 8.0.0-rc.2.23430.9 (parent: Microsoft.DotNet.Wpf.GitHub --- eng/Version.Details.xml | 24 ++++++++++++------------ eng/Versions.props | 10 +++++----- 2 files changed, 17 insertions(+), 17 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index a4ff8bf60..c720b4645 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -5,17 +5,17 @@ https://github.com/dotnet/runtime 40d2134aa50389d70fd845a7a6c06f46383e602e - + https://github.com/dotnet/winforms - f518fa7b48fea8a1609d6d88491c0de996686f81 + 3cd45483f28fcc3674edab5e45a4d4355428fce7 - + https://github.com/dotnet/wpf - bb3c3836a0a7a54dc58a9125d692d91a20fb8198 + bd2d7bd26f62a5aaeb5bfb2dabd2a79d4d0e7519 - + https://github.com/dotnet/wpf - bb3c3836a0a7a54dc58a9125d692d91a20fb8198 + bd2d7bd26f62a5aaeb5bfb2dabd2a79d4d0e7519 https://github.com/dotnet/runtime @@ -29,13 +29,13 @@ https://github.com/dotnet/runtime 40d2134aa50389d70fd845a7a6c06f46383e602e - + https://github.com/dotnet/winforms - f518fa7b48fea8a1609d6d88491c0de996686f81 + 3cd45483f28fcc3674edab5e45a4d4355428fce7 - + https://github.com/dotnet/wpf - bb3c3836a0a7a54dc58a9125d692d91a20fb8198 + bd2d7bd26f62a5aaeb5bfb2dabd2a79d4d0e7519 https://github.com/dotnet/runtime @@ -145,9 +145,9 @@ https://github.com/dotnet/runtime 40d2134aa50389d70fd845a7a6c06f46383e602e - + https://github.com/dotnet/winforms - f518fa7b48fea8a1609d6d88491c0de996686f81 + 3cd45483f28fcc3674edab5e45a4d4355428fce7 diff --git a/eng/Versions.props b/eng/Versions.props index f46187e12..418910eff 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -64,11 +64,11 @@ 4.10.0 - 8.0.0-rc.2.23430.6 - 8.0.0-rc.2.23430.6 - 8.0.0-rc.2.23430.6 + 8.0.0-rc.2.23430.9 + 8.0.0-rc.2.23430.9 + 8.0.0-rc.2.23430.9 - 8.0.0-rc.2.23430.6 - 8.0.0-rc.2.23430.6 + 8.0.0-rc.2.23430.8 + 8.0.0-rc.2.23430.8 From 53247de35b8880d7cdc431fcbfeb0b7a9c7f6990 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Thu, 31 Aug 2023 19:48:52 +0000 Subject: [PATCH 029/222] Update dependencies from https://github.com/dotnet/wpf build 20230831.1 Microsoft.DotNet.Wpf.GitHub , Microsoft.DotNet.Wpf.ProjectTemplates , Microsoft.NET.Sdk.WindowsDesktop From Version 8.0.0-rc.2.23430.8 -> To Version 8.0.0-rc.2.23431.1 Dependency coherency updates Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Dotnet.WinForms.ProjectTemplates,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,System.Drawing.Common From Version 8.0.0-rc.2.23430.9 -> To Version 8.0.0-rc.2.23431.3 (parent: Microsoft.DotNet.Wpf.GitHub --- eng/Version.Details.xml | 24 ++++++++++++------------ eng/Versions.props | 10 +++++----- 2 files changed, 17 insertions(+), 17 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index c720b4645..be5e5d8c7 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -5,17 +5,17 @@ https://github.com/dotnet/runtime 40d2134aa50389d70fd845a7a6c06f46383e602e - + https://github.com/dotnet/winforms - 3cd45483f28fcc3674edab5e45a4d4355428fce7 + af1d0be175b550200aa88d82f9fcd097747d912b - + https://github.com/dotnet/wpf - bd2d7bd26f62a5aaeb5bfb2dabd2a79d4d0e7519 + ef8f2a40324f5820800355b3fb762ed605b37fac - + https://github.com/dotnet/wpf - bd2d7bd26f62a5aaeb5bfb2dabd2a79d4d0e7519 + ef8f2a40324f5820800355b3fb762ed605b37fac https://github.com/dotnet/runtime @@ -29,13 +29,13 @@ https://github.com/dotnet/runtime 40d2134aa50389d70fd845a7a6c06f46383e602e - + https://github.com/dotnet/winforms - 3cd45483f28fcc3674edab5e45a4d4355428fce7 + af1d0be175b550200aa88d82f9fcd097747d912b - + https://github.com/dotnet/wpf - bd2d7bd26f62a5aaeb5bfb2dabd2a79d4d0e7519 + ef8f2a40324f5820800355b3fb762ed605b37fac https://github.com/dotnet/runtime @@ -145,9 +145,9 @@ https://github.com/dotnet/runtime 40d2134aa50389d70fd845a7a6c06f46383e602e - + https://github.com/dotnet/winforms - 3cd45483f28fcc3674edab5e45a4d4355428fce7 + af1d0be175b550200aa88d82f9fcd097747d912b diff --git a/eng/Versions.props b/eng/Versions.props index 418910eff..13c5e5319 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -64,11 +64,11 @@ 4.10.0 - 8.0.0-rc.2.23430.9 - 8.0.0-rc.2.23430.9 - 8.0.0-rc.2.23430.9 + 8.0.0-rc.2.23431.3 + 8.0.0-rc.2.23431.3 + 8.0.0-rc.2.23431.3 - 8.0.0-rc.2.23430.8 - 8.0.0-rc.2.23430.8 + 8.0.0-rc.2.23431.1 + 8.0.0-rc.2.23431.1 From 4fbdae9a4c163ceb2cb4b906ce2b7d3698a9ae6b Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Fri, 1 Sep 2023 12:46:02 +0000 Subject: [PATCH 030/222] Update dependencies from https://github.com/dotnet/arcade build 20230831.2 Microsoft.DotNet.Arcade.Sdk , Microsoft.DotNet.Build.Tasks.Archives , Microsoft.DotNet.Build.Tasks.Feed , Microsoft.DotNet.Build.Tasks.Installers , Microsoft.DotNet.SharedFramework.Sdk , Microsoft.DotNet.VersionTools.Tasks From Version 8.0.0-beta.23429.1 -> To Version 8.0.0-beta.23431.2 --- eng/Version.Details.xml | 24 ++++++++++++------------ eng/Versions.props | 8 ++++---- eng/common/cross/toolchain.cmake | 2 +- global.json | 4 ++-- 4 files changed, 19 insertions(+), 19 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index c720b4645..ec66f8641 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -151,29 +151,29 @@ - + https://github.com/dotnet/arcade - 804d586c07a6c598551a2913f0958680cb9135a9 + ec030fdef9faf8b2bd6f5f422545e8d8f7054e48 - + https://github.com/dotnet/arcade - 804d586c07a6c598551a2913f0958680cb9135a9 + ec030fdef9faf8b2bd6f5f422545e8d8f7054e48 - + https://github.com/dotnet/arcade - 804d586c07a6c598551a2913f0958680cb9135a9 + ec030fdef9faf8b2bd6f5f422545e8d8f7054e48 - + https://github.com/dotnet/arcade - 804d586c07a6c598551a2913f0958680cb9135a9 + ec030fdef9faf8b2bd6f5f422545e8d8f7054e48 - + https://github.com/dotnet/arcade - 804d586c07a6c598551a2913f0958680cb9135a9 + ec030fdef9faf8b2bd6f5f422545e8d8f7054e48 - + https://github.com/dotnet/arcade - 804d586c07a6c598551a2913f0958680cb9135a9 + ec030fdef9faf8b2bd6f5f422545e8d8f7054e48 diff --git a/eng/Versions.props b/eng/Versions.props index 418910eff..78b192533 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -11,10 +11,10 @@ - 8.0.0-beta.23429.1 - 8.0.0-beta.23429.1 - 8.0.0-beta.23429.1 - 8.0.0-beta.23429.1 + 8.0.0-beta.23431.2 + 8.0.0-beta.23431.2 + 8.0.0-beta.23431.2 + 8.0.0-beta.23431.2 4.5.0 4.8.5 diff --git a/eng/common/cross/toolchain.cmake b/eng/common/cross/toolchain.cmake index a88d643c8..0998e875e 100644 --- a/eng/common/cross/toolchain.cmake +++ b/eng/common/cross/toolchain.cmake @@ -207,6 +207,7 @@ elseif(ILLUMOS) set(CMAKE_CXX_STANDARD_LIBRARIES "${CMAKE_CXX_STANDARD_LIBRARIES} -lssp") elseif(HAIKU) set(CMAKE_SYSROOT "${CROSS_ROOTFS}") + set(CMAKE_PROGRAM_PATH "${CMAKE_PROGRAM_PATH};${CROSS_ROOTFS}/cross-tools-x86_64/bin") set(TOOLSET_PREFIX ${TOOLCHAIN}-) function(locate_toolchain_exec exec var) @@ -217,7 +218,6 @@ elseif(HAIKU) endif() find_program(EXEC_LOCATION_${exec} - PATHS "${CROSS_ROOTFS}/cross-tools-x86_64/bin" NAMES "${TOOLSET_PREFIX}${exec}${CLR_CMAKE_COMPILER_FILE_NAME_VERSION}" "${TOOLSET_PREFIX}${exec}") diff --git a/global.json b/global.json index 748dd9747..6847231cb 100644 --- a/global.json +++ b/global.json @@ -3,8 +3,8 @@ "dotnet": "8.0.100-preview.7.23376.3" }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "8.0.0-beta.23429.1", - "Microsoft.DotNet.SharedFramework.Sdk": "8.0.0-beta.23429.1", + "Microsoft.DotNet.Arcade.Sdk": "8.0.0-beta.23431.2", + "Microsoft.DotNet.SharedFramework.Sdk": "8.0.0-beta.23431.2", "Microsoft.Build.NoTargets": "3.7.0", "Microsoft.Build.Traversal": "3.4.0" } From 426ee7372433122c01692a0860e2ae84e7ee57d8 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Fri, 1 Sep 2023 14:24:59 +0000 Subject: [PATCH 031/222] Update dependencies from https://github.com/dotnet/wpf build 20230901.2 Microsoft.DotNet.Wpf.GitHub , Microsoft.DotNet.Wpf.ProjectTemplates , Microsoft.NET.Sdk.WindowsDesktop From Version 8.0.0-rc.2.23430.8 -> To Version 8.0.0-rc.2.23451.2 Dependency coherency updates Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Dotnet.WinForms.ProjectTemplates,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,System.Drawing.Common From Version 8.0.0-rc.2.23430.9 -> To Version 8.0.0-rc.2.23431.3 (parent: Microsoft.DotNet.Wpf.GitHub --- eng/Version.Details.xml | 12 ++++++------ eng/Versions.props | 4 ++-- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index be5e5d8c7..88660d8c9 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -9,13 +9,13 @@ https://github.com/dotnet/winforms af1d0be175b550200aa88d82f9fcd097747d912b - + https://github.com/dotnet/wpf - ef8f2a40324f5820800355b3fb762ed605b37fac + 553f775e5fcf19e38728e1d2476a8f5abc6465fa - + https://github.com/dotnet/wpf - ef8f2a40324f5820800355b3fb762ed605b37fac + 553f775e5fcf19e38728e1d2476a8f5abc6465fa https://github.com/dotnet/runtime @@ -33,9 +33,9 @@ https://github.com/dotnet/winforms af1d0be175b550200aa88d82f9fcd097747d912b - + https://github.com/dotnet/wpf - ef8f2a40324f5820800355b3fb762ed605b37fac + 553f775e5fcf19e38728e1d2476a8f5abc6465fa https://github.com/dotnet/runtime diff --git a/eng/Versions.props b/eng/Versions.props index 13c5e5319..a66186cb1 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -68,7 +68,7 @@ 8.0.0-rc.2.23431.3 8.0.0-rc.2.23431.3 - 8.0.0-rc.2.23431.1 - 8.0.0-rc.2.23431.1 + 8.0.0-rc.2.23451.2 + 8.0.0-rc.2.23451.2 From 6e94b064d42a0a6d4aae812958a444af3ae58052 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Fri, 1 Sep 2023 15:41:17 +0000 Subject: [PATCH 032/222] Update dependencies from https://github.com/dotnet/wpf build 20230901.3 Microsoft.DotNet.Wpf.GitHub , Microsoft.DotNet.Wpf.ProjectTemplates , Microsoft.NET.Sdk.WindowsDesktop From Version 8.0.0-rc.2.23430.8 -> To Version 8.0.0-rc.2.23451.3 Dependency coherency updates Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Dotnet.WinForms.ProjectTemplates,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,System.Drawing.Common From Version 8.0.0-rc.2.23430.9 -> To Version 8.0.0-rc.2.23451.2 (parent: Microsoft.DotNet.Wpf.GitHub --- eng/Version.Details.xml | 24 ++++++++++++------------ eng/Versions.props | 10 +++++----- 2 files changed, 17 insertions(+), 17 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 88660d8c9..6feaf366e 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -5,17 +5,17 @@ https://github.com/dotnet/runtime 40d2134aa50389d70fd845a7a6c06f46383e602e - + https://github.com/dotnet/winforms - af1d0be175b550200aa88d82f9fcd097747d912b + e12274df85a972e9466aef54f62432c194949a7d - + https://github.com/dotnet/wpf - 553f775e5fcf19e38728e1d2476a8f5abc6465fa + 7cb89c7c9a8147b2c3dcef124d98b02fdf3e1861 - + https://github.com/dotnet/wpf - 553f775e5fcf19e38728e1d2476a8f5abc6465fa + 7cb89c7c9a8147b2c3dcef124d98b02fdf3e1861 https://github.com/dotnet/runtime @@ -29,13 +29,13 @@ https://github.com/dotnet/runtime 40d2134aa50389d70fd845a7a6c06f46383e602e - + https://github.com/dotnet/winforms - af1d0be175b550200aa88d82f9fcd097747d912b + e12274df85a972e9466aef54f62432c194949a7d - + https://github.com/dotnet/wpf - 553f775e5fcf19e38728e1d2476a8f5abc6465fa + 7cb89c7c9a8147b2c3dcef124d98b02fdf3e1861 https://github.com/dotnet/runtime @@ -145,9 +145,9 @@ https://github.com/dotnet/runtime 40d2134aa50389d70fd845a7a6c06f46383e602e - + https://github.com/dotnet/winforms - af1d0be175b550200aa88d82f9fcd097747d912b + e12274df85a972e9466aef54f62432c194949a7d diff --git a/eng/Versions.props b/eng/Versions.props index a66186cb1..b0d943f4b 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -64,11 +64,11 @@ 4.10.0 - 8.0.0-rc.2.23431.3 - 8.0.0-rc.2.23431.3 - 8.0.0-rc.2.23431.3 + 8.0.0-rc.2.23451.2 + 8.0.0-rc.2.23451.2 + 8.0.0-rc.2.23451.2 - 8.0.0-rc.2.23451.2 - 8.0.0-rc.2.23451.2 + 8.0.0-rc.2.23451.3 + 8.0.0-rc.2.23451.3 From 66d5957c32fc5c0486d3642acf19b0a462eac61d Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Fri, 1 Sep 2023 21:43:43 +0000 Subject: [PATCH 033/222] [release/8.0] Update dependencies from dotnet/wpf (#3836) [release/8.0] Update dependencies from dotnet/wpf - Coherency Updates: - Microsoft.Private.Winforms: from 8.0.0-rc.2.23451.2 to 8.0.0-rc.2.23451.4 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Internal.Runtime.WindowsDesktop.Transport: from 8.0.0-rc.2.23430.5 to 8.0.0-rc.2.23431.9 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rc.2.23451.2 to 8.0.0-rc.2.23451.4 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.NETCore.App.Ref: from 8.0.0-rc.2.23430.5 to 8.0.0-rc.2.23431.9 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rc.2.23451.2 to 8.0.0-rc.2.23451.4 (parent: Microsoft.DotNet.Wpf.GitHub) - VS.Redist.Common.NetCore.SharedFramework.x64.8.0: from 8.0.0-rc.2.23430.5 to 8.0.0-rc.2.23431.9 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rc.2.23451.2 to 8.0.0-rc.2.23451.4 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.NETCore.App.Runtime.win-x64: from 8.0.0-rc.2.23430.5 to 8.0.0-rc.2.23431.9 (parent: Microsoft.Private.Winforms) - Microsoft.Dotnet.WinForms.ProjectTemplates: from 8.0.0-rc.2.23451.2 to 8.0.0-rc.2.23451.4 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rc.2.23451.2 to 8.0.0-rc.2.23451.4 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Win32.Registry.AccessControl: from 8.0.0-rc.2.23430.5 to 8.0.0-rc.2.23431.9 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rc.2.23451.2 to 8.0.0-rc.2.23451.4 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Win32.SystemEvents: from 8.0.0-rc.2.23430.5 to 8.0.0-rc.2.23431.9 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rc.2.23451.2 to 8.0.0-rc.2.23451.4 (parent: Microsoft.DotNet.Wpf.GitHub) - System.CodeDom: from 8.0.0-rc.2.23430.5 to 8.0.0-rc.2.23431.9 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rc.2.23451.2 to 8.0.0-rc.2.23451.4 (parent: Microsoft.DotNet.Wpf.GitHub) - System.ComponentModel.Composition: from 8.0.0-rc.2.23430.5 to 8.0.0-rc.2.23431.9 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rc.2.23451.2 to 8.0.0-rc.2.23451.4 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Configuration.ConfigurationManager: from 8.0.0-rc.2.23430.5 to 8.0.0-rc.2.23431.9 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rc.2.23451.2 to 8.0.0-rc.2.23451.4 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Data.Odbc: from 8.0.0-rc.2.23430.5 to 8.0.0-rc.2.23431.9 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rc.2.23451.2 to 8.0.0-rc.2.23451.4 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Data.OleDb: from 8.0.0-rc.2.23430.5 to 8.0.0-rc.2.23431.9 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rc.2.23451.2 to 8.0.0-rc.2.23451.4 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Diagnostics.EventLog: from 8.0.0-rc.2.23430.5 to 8.0.0-rc.2.23431.9 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rc.2.23451.2 to 8.0.0-rc.2.23451.4 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Diagnostics.PerformanceCounter: from 8.0.0-rc.2.23430.5 to 8.0.0-rc.2.23431.9 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rc.2.23451.2 to 8.0.0-rc.2.23451.4 (parent: Microsoft.DotNet.Wpf.GitHub) - System.DirectoryServices.AccountManagement: from 8.0.0-rc.2.23430.5 to 8.0.0-rc.2.23431.9 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rc.2.23451.2 to 8.0.0-rc.2.23451.4 (parent: Microsoft.DotNet.Wpf.GitHub) - System.DirectoryServices.Protocols: from 8.0.0-rc.2.23430.5 to 8.0.0-rc.2.23431.9 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rc.2.23451.2 to 8.0.0-rc.2.23451.4 (parent: Microsoft.DotNet.Wpf.GitHub) - System.DirectoryServices: from 8.0.0-rc.2.23430.5 to 8.0.0-rc.2.23431.9 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rc.2.23451.2 to 8.0.0-rc.2.23451.4 (parent: Microsoft.DotNet.Wpf.GitHub) - System.IO.Packaging: from 8.0.0-rc.2.23430.5 to 8.0.0-rc.2.23431.9 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rc.2.23451.2 to 8.0.0-rc.2.23451.4 (parent: Microsoft.DotNet.Wpf.GitHub) - System.IO.Ports: from 8.0.0-rc.2.23430.5 to 8.0.0-rc.2.23431.9 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rc.2.23451.2 to 8.0.0-rc.2.23451.4 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Management: from 8.0.0-rc.2.23430.5 to 8.0.0-rc.2.23431.9 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rc.2.23451.2 to 8.0.0-rc.2.23451.4 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Reflection.Context: from 8.0.0-rc.2.23430.5 to 8.0.0-rc.2.23431.9 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rc.2.23451.2 to 8.0.0-rc.2.23451.4 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Runtime.Caching: from 8.0.0-rc.2.23430.5 to 8.0.0-rc.2.23431.9 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rc.2.23451.2 to 8.0.0-rc.2.23451.4 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Security.Cryptography.Pkcs: from 8.0.0-rc.2.23430.5 to 8.0.0-rc.2.23431.9 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rc.2.23451.2 to 8.0.0-rc.2.23451.4 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Security.Cryptography.ProtectedData: from 8.0.0-rc.2.23430.5 to 8.0.0-rc.2.23431.9 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rc.2.23451.2 to 8.0.0-rc.2.23451.4 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Security.Cryptography.Xml: from 8.0.0-rc.2.23430.5 to 8.0.0-rc.2.23431.9 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rc.2.23451.2 to 8.0.0-rc.2.23451.4 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Security.Permissions: from 8.0.0-rc.2.23430.5 to 8.0.0-rc.2.23431.9 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rc.2.23451.2 to 8.0.0-rc.2.23451.4 (parent: Microsoft.DotNet.Wpf.GitHub) - System.ServiceModel.Syndication: from 8.0.0-rc.2.23430.5 to 8.0.0-rc.2.23431.9 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rc.2.23451.2 to 8.0.0-rc.2.23451.4 (parent: Microsoft.DotNet.Wpf.GitHub) - System.ServiceProcess.ServiceController: from 8.0.0-rc.2.23430.5 to 8.0.0-rc.2.23431.9 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rc.2.23451.2 to 8.0.0-rc.2.23451.4 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Speech: from 8.0.0-rc.2.23430.5 to 8.0.0-rc.2.23431.9 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rc.2.23451.2 to 8.0.0-rc.2.23451.4 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Text.Encoding.CodePages: from 8.0.0-rc.2.23430.5 to 8.0.0-rc.2.23431.9 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rc.2.23451.2 to 8.0.0-rc.2.23451.4 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Threading.AccessControl: from 8.0.0-rc.2.23430.5 to 8.0.0-rc.2.23431.9 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rc.2.23451.2 to 8.0.0-rc.2.23451.4 (parent: Microsoft.DotNet.Wpf.GitHub) - System.ComponentModel.Composition.Registration: from 8.0.0-rc.2.23430.5 to 8.0.0-rc.2.23431.9 (parent: Microsoft.Private.Winforms) - System.Drawing.Common: from 8.0.0-rc.2.23451.2 to 8.0.0-rc.2.23451.4 (parent: Microsoft.DotNet.Wpf.GitHub) --- eng/Version.Details.xml | 148 ++++++++++++++++++++-------------------- eng/Versions.props | 72 +++++++++---------- 2 files changed, 110 insertions(+), 110 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index fd53038e1..611fb06c2 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,153 +1,153 @@ - + https://github.com/dotnet/runtime - 40d2134aa50389d70fd845a7a6c06f46383e602e + 3c48925a6c1ab31865b4438a6cb88242d1a8fe4d - + https://github.com/dotnet/winforms - e12274df85a972e9466aef54f62432c194949a7d + af50f5ef63fbc8c127fd3ec6b04ae74f18996227 - + https://github.com/dotnet/wpf - 7cb89c7c9a8147b2c3dcef124d98b02fdf3e1861 + 99661a216fb7b666c360a9872f0c8098c2cb2cfb - + https://github.com/dotnet/wpf - 7cb89c7c9a8147b2c3dcef124d98b02fdf3e1861 + 99661a216fb7b666c360a9872f0c8098c2cb2cfb - + https://github.com/dotnet/runtime - 40d2134aa50389d70fd845a7a6c06f46383e602e + 3c48925a6c1ab31865b4438a6cb88242d1a8fe4d - + https://github.com/dotnet/runtime - 40d2134aa50389d70fd845a7a6c06f46383e602e + 3c48925a6c1ab31865b4438a6cb88242d1a8fe4d - + https://github.com/dotnet/runtime - 40d2134aa50389d70fd845a7a6c06f46383e602e + 3c48925a6c1ab31865b4438a6cb88242d1a8fe4d - + https://github.com/dotnet/winforms - e12274df85a972e9466aef54f62432c194949a7d + af50f5ef63fbc8c127fd3ec6b04ae74f18996227 - + https://github.com/dotnet/wpf - 7cb89c7c9a8147b2c3dcef124d98b02fdf3e1861 + 99661a216fb7b666c360a9872f0c8098c2cb2cfb - + https://github.com/dotnet/runtime - 40d2134aa50389d70fd845a7a6c06f46383e602e + 3c48925a6c1ab31865b4438a6cb88242d1a8fe4d - + https://github.com/dotnet/runtime - 40d2134aa50389d70fd845a7a6c06f46383e602e + 3c48925a6c1ab31865b4438a6cb88242d1a8fe4d - + https://github.com/dotnet/runtime - 40d2134aa50389d70fd845a7a6c06f46383e602e + 3c48925a6c1ab31865b4438a6cb88242d1a8fe4d - + https://github.com/dotnet/runtime - 40d2134aa50389d70fd845a7a6c06f46383e602e + 3c48925a6c1ab31865b4438a6cb88242d1a8fe4d - + https://github.com/dotnet/runtime - 40d2134aa50389d70fd845a7a6c06f46383e602e + 3c48925a6c1ab31865b4438a6cb88242d1a8fe4d - + https://github.com/dotnet/runtime - 40d2134aa50389d70fd845a7a6c06f46383e602e + 3c48925a6c1ab31865b4438a6cb88242d1a8fe4d - + https://github.com/dotnet/runtime - 40d2134aa50389d70fd845a7a6c06f46383e602e + 3c48925a6c1ab31865b4438a6cb88242d1a8fe4d - + https://github.com/dotnet/runtime - 40d2134aa50389d70fd845a7a6c06f46383e602e + 3c48925a6c1ab31865b4438a6cb88242d1a8fe4d - + https://github.com/dotnet/runtime - 40d2134aa50389d70fd845a7a6c06f46383e602e + 3c48925a6c1ab31865b4438a6cb88242d1a8fe4d - + https://github.com/dotnet/runtime - 40d2134aa50389d70fd845a7a6c06f46383e602e + 3c48925a6c1ab31865b4438a6cb88242d1a8fe4d - + https://github.com/dotnet/runtime - 40d2134aa50389d70fd845a7a6c06f46383e602e + 3c48925a6c1ab31865b4438a6cb88242d1a8fe4d - + https://github.com/dotnet/runtime - 40d2134aa50389d70fd845a7a6c06f46383e602e + 3c48925a6c1ab31865b4438a6cb88242d1a8fe4d - + https://github.com/dotnet/runtime - 40d2134aa50389d70fd845a7a6c06f46383e602e + 3c48925a6c1ab31865b4438a6cb88242d1a8fe4d - + https://github.com/dotnet/runtime - 40d2134aa50389d70fd845a7a6c06f46383e602e + 3c48925a6c1ab31865b4438a6cb88242d1a8fe4d - + https://github.com/dotnet/runtime - 40d2134aa50389d70fd845a7a6c06f46383e602e + 3c48925a6c1ab31865b4438a6cb88242d1a8fe4d - + https://github.com/dotnet/runtime - 40d2134aa50389d70fd845a7a6c06f46383e602e + 3c48925a6c1ab31865b4438a6cb88242d1a8fe4d - + https://github.com/dotnet/runtime - 40d2134aa50389d70fd845a7a6c06f46383e602e + 3c48925a6c1ab31865b4438a6cb88242d1a8fe4d - + https://github.com/dotnet/runtime - 40d2134aa50389d70fd845a7a6c06f46383e602e + 3c48925a6c1ab31865b4438a6cb88242d1a8fe4d - + https://github.com/dotnet/runtime - 40d2134aa50389d70fd845a7a6c06f46383e602e + 3c48925a6c1ab31865b4438a6cb88242d1a8fe4d - + https://github.com/dotnet/runtime - 40d2134aa50389d70fd845a7a6c06f46383e602e + 3c48925a6c1ab31865b4438a6cb88242d1a8fe4d - + https://github.com/dotnet/runtime - 40d2134aa50389d70fd845a7a6c06f46383e602e + 3c48925a6c1ab31865b4438a6cb88242d1a8fe4d - + https://github.com/dotnet/runtime - 40d2134aa50389d70fd845a7a6c06f46383e602e + 3c48925a6c1ab31865b4438a6cb88242d1a8fe4d - + https://github.com/dotnet/runtime - 40d2134aa50389d70fd845a7a6c06f46383e602e + 3c48925a6c1ab31865b4438a6cb88242d1a8fe4d - + https://github.com/dotnet/runtime - 40d2134aa50389d70fd845a7a6c06f46383e602e + 3c48925a6c1ab31865b4438a6cb88242d1a8fe4d - + https://github.com/dotnet/runtime - 40d2134aa50389d70fd845a7a6c06f46383e602e + 3c48925a6c1ab31865b4438a6cb88242d1a8fe4d - + https://github.com/dotnet/runtime - 40d2134aa50389d70fd845a7a6c06f46383e602e + 3c48925a6c1ab31865b4438a6cb88242d1a8fe4d - + https://github.com/dotnet/runtime - 40d2134aa50389d70fd845a7a6c06f46383e602e + 3c48925a6c1ab31865b4438a6cb88242d1a8fe4d - + https://github.com/dotnet/winforms - e12274df85a972e9466aef54f62432c194949a7d + af50f5ef63fbc8c127fd3ec6b04ae74f18996227 diff --git a/eng/Versions.props b/eng/Versions.props index b2dd32464..e86821289 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -24,51 +24,51 @@ 6.2.4 - 8.0.0-rc.2.23430.5 - 8.0.0-rc.2.23430.5 - 8.0.0-rc.2.23430.5 - 8.0.0-rc.2.23430.5 + 8.0.0-rc.2.23431.9 + 8.0.0-rc.2.23431.9 + 8.0.0-rc.2.23431.9 + 8.0.0-rc.2.23431.9 5.0.0 - 8.0.0-rc.2.23430.5 - 8.0.0-rc.2.23430.5 - 8.0.0-rc.2.23430.5 - 8.0.0-rc.2.23430.5 - 8.0.0-rc.2.23430.5 - 8.0.0-rc.2.23430.5 - 8.0.0-rc.2.23430.5 - 8.0.0-rc.2.23430.5 - 8.0.0-rc.2.23430.5 - 8.0.0-rc.2.23430.5 - 8.0.0-rc.2.23430.5 - 8.0.0-rc.2.23430.5 + 8.0.0-rc.2.23431.9 + 8.0.0-rc.2.23431.9 + 8.0.0-rc.2.23431.9 + 8.0.0-rc.2.23431.9 + 8.0.0-rc.2.23431.9 + 8.0.0-rc.2.23431.9 + 8.0.0-rc.2.23431.9 + 8.0.0-rc.2.23431.9 + 8.0.0-rc.2.23431.9 + 8.0.0-rc.2.23431.9 + 8.0.0-rc.2.23431.9 + 8.0.0-rc.2.23431.9 5.0.0 - 8.0.0-rc.2.23430.5 + 8.0.0-rc.2.23431.9 5.0.0 - 8.0.0-rc.2.23430.5 - 8.0.0-rc.2.23430.5 - 8.0.0-rc.2.23430.5 - 8.0.0-rc.2.23430.5 + 8.0.0-rc.2.23431.9 + 8.0.0-rc.2.23431.9 + 8.0.0-rc.2.23431.9 + 8.0.0-rc.2.23431.9 6.0.0 5.0.0 - 8.0.0-rc.2.23430.5 - 8.0.0-rc.2.23430.5 - 8.0.0-rc.2.23430.5 - 8.0.0-rc.2.23430.5 + 8.0.0-rc.2.23431.9 + 8.0.0-rc.2.23431.9 + 8.0.0-rc.2.23431.9 + 8.0.0-rc.2.23431.9 5.0.0 - 8.0.0-rc.2.23430.5 - 8.0.0-rc.2.23430.5 - 8.0.0-rc.2.23430.5 - 8.0.0-rc.2.23430.5 - 8.0.0-rc.2.23430.5 - 8.0.0-rc.2.23430.5 + 8.0.0-rc.2.23431.9 + 8.0.0-rc.2.23431.9 + 8.0.0-rc.2.23431.9 + 8.0.0-rc.2.23431.9 + 8.0.0-rc.2.23431.9 + 8.0.0-rc.2.23431.9 4.10.0 - 8.0.0-rc.2.23451.2 - 8.0.0-rc.2.23451.2 - 8.0.0-rc.2.23451.2 + 8.0.0-rc.2.23451.4 + 8.0.0-rc.2.23451.4 + 8.0.0-rc.2.23451.4 - 8.0.0-rc.2.23451.3 - 8.0.0-rc.2.23451.3 + 8.0.0-rc.2.23451.6 + 8.0.0-rc.2.23451.6 From 216f2b8f3f00a176c2705b5d5c95018d30800f8c Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Sat, 2 Sep 2023 12:48:33 +0000 Subject: [PATCH 034/222] Update dependencies from https://github.com/dotnet/arcade build 20230901.1 Microsoft.DotNet.Arcade.Sdk , Microsoft.DotNet.Build.Tasks.Archives , Microsoft.DotNet.Build.Tasks.Feed , Microsoft.DotNet.Build.Tasks.Installers , Microsoft.DotNet.SharedFramework.Sdk , Microsoft.DotNet.VersionTools.Tasks From Version 8.0.0-beta.23431.2 -> To Version 8.0.0-beta.23451.1 --- eng/Version.Details.xml | 24 ++++++++++++------------ eng/Versions.props | 8 ++++---- global.json | 4 ++-- 3 files changed, 18 insertions(+), 18 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 611fb06c2..5bbdc3917 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -151,29 +151,29 @@ - + https://github.com/dotnet/arcade - ec030fdef9faf8b2bd6f5f422545e8d8f7054e48 + 4665b3d04e1da3796b965c3c3e3b97f55c449a6e - + https://github.com/dotnet/arcade - ec030fdef9faf8b2bd6f5f422545e8d8f7054e48 + 4665b3d04e1da3796b965c3c3e3b97f55c449a6e - + https://github.com/dotnet/arcade - ec030fdef9faf8b2bd6f5f422545e8d8f7054e48 + 4665b3d04e1da3796b965c3c3e3b97f55c449a6e - + https://github.com/dotnet/arcade - ec030fdef9faf8b2bd6f5f422545e8d8f7054e48 + 4665b3d04e1da3796b965c3c3e3b97f55c449a6e - + https://github.com/dotnet/arcade - ec030fdef9faf8b2bd6f5f422545e8d8f7054e48 + 4665b3d04e1da3796b965c3c3e3b97f55c449a6e - + https://github.com/dotnet/arcade - ec030fdef9faf8b2bd6f5f422545e8d8f7054e48 + 4665b3d04e1da3796b965c3c3e3b97f55c449a6e diff --git a/eng/Versions.props b/eng/Versions.props index e86821289..5b3083764 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -11,10 +11,10 @@ - 8.0.0-beta.23431.2 - 8.0.0-beta.23431.2 - 8.0.0-beta.23431.2 - 8.0.0-beta.23431.2 + 8.0.0-beta.23451.1 + 8.0.0-beta.23451.1 + 8.0.0-beta.23451.1 + 8.0.0-beta.23451.1 4.5.0 4.8.5 diff --git a/global.json b/global.json index 6847231cb..417b787f1 100644 --- a/global.json +++ b/global.json @@ -3,8 +3,8 @@ "dotnet": "8.0.100-preview.7.23376.3" }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "8.0.0-beta.23431.2", - "Microsoft.DotNet.SharedFramework.Sdk": "8.0.0-beta.23431.2", + "Microsoft.DotNet.Arcade.Sdk": "8.0.0-beta.23451.1", + "Microsoft.DotNet.SharedFramework.Sdk": "8.0.0-beta.23451.1", "Microsoft.Build.NoTargets": "3.7.0", "Microsoft.Build.Traversal": "3.4.0" } From c51504397b22277c70129e09b9ccb7378f1f8610 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Sat, 2 Sep 2023 14:18:44 +0000 Subject: [PATCH 035/222] Update dependencies from https://github.com/dotnet/wpf build 20230902.3 Microsoft.DotNet.Wpf.GitHub , Microsoft.DotNet.Wpf.ProjectTemplates , Microsoft.NET.Sdk.WindowsDesktop From Version 8.0.0-rc.2.23451.6 -> To Version 8.0.0-rc.2.23452.3 --- eng/Version.Details.xml | 12 ++++++------ eng/Versions.props | 4 ++-- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 611fb06c2..556150145 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -9,13 +9,13 @@ https://github.com/dotnet/winforms af50f5ef63fbc8c127fd3ec6b04ae74f18996227 - + https://github.com/dotnet/wpf - 99661a216fb7b666c360a9872f0c8098c2cb2cfb + eccdfbb70bda3eef16f5d374cc906190ba93a12e - + https://github.com/dotnet/wpf - 99661a216fb7b666c360a9872f0c8098c2cb2cfb + eccdfbb70bda3eef16f5d374cc906190ba93a12e https://github.com/dotnet/runtime @@ -33,9 +33,9 @@ https://github.com/dotnet/winforms af50f5ef63fbc8c127fd3ec6b04ae74f18996227 - + https://github.com/dotnet/wpf - 99661a216fb7b666c360a9872f0c8098c2cb2cfb + eccdfbb70bda3eef16f5d374cc906190ba93a12e https://github.com/dotnet/runtime diff --git a/eng/Versions.props b/eng/Versions.props index e86821289..23a65bb74 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -68,7 +68,7 @@ 8.0.0-rc.2.23451.4 8.0.0-rc.2.23451.4 - 8.0.0-rc.2.23451.6 - 8.0.0-rc.2.23451.6 + 8.0.0-rc.2.23452.3 + 8.0.0-rc.2.23452.3 From c0b27bdc1e9d3267546ed0628c7e17f883c341f2 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Sat, 2 Sep 2023 15:39:28 +0000 Subject: [PATCH 036/222] Update dependencies from https://github.com/dotnet/wpf build 20230902.4 Microsoft.DotNet.Wpf.GitHub , Microsoft.DotNet.Wpf.ProjectTemplates , Microsoft.NET.Sdk.WindowsDesktop From Version 8.0.0-rc.2.23451.6 -> To Version 8.0.0-rc.2.23452.4 Dependency coherency updates Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Dotnet.WinForms.ProjectTemplates,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,System.Drawing.Common From Version 8.0.0-rc.2.23451.4 -> To Version 8.0.0-rc.2.23452.2 (parent: Microsoft.DotNet.Wpf.GitHub --- eng/Version.Details.xml | 24 ++++++++++++------------ eng/Versions.props | 10 +++++----- 2 files changed, 17 insertions(+), 17 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 556150145..6181c939e 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -5,17 +5,17 @@ https://github.com/dotnet/runtime 3c48925a6c1ab31865b4438a6cb88242d1a8fe4d - + https://github.com/dotnet/winforms - af50f5ef63fbc8c127fd3ec6b04ae74f18996227 + 0c37f29dd1c771f4134388dc80b11e5727810731 - + https://github.com/dotnet/wpf - eccdfbb70bda3eef16f5d374cc906190ba93a12e + 921e0f8a13ded54098cf33245e3b0413ec7b386c - + https://github.com/dotnet/wpf - eccdfbb70bda3eef16f5d374cc906190ba93a12e + 921e0f8a13ded54098cf33245e3b0413ec7b386c https://github.com/dotnet/runtime @@ -29,13 +29,13 @@ https://github.com/dotnet/runtime 3c48925a6c1ab31865b4438a6cb88242d1a8fe4d - + https://github.com/dotnet/winforms - af50f5ef63fbc8c127fd3ec6b04ae74f18996227 + 0c37f29dd1c771f4134388dc80b11e5727810731 - + https://github.com/dotnet/wpf - eccdfbb70bda3eef16f5d374cc906190ba93a12e + 921e0f8a13ded54098cf33245e3b0413ec7b386c https://github.com/dotnet/runtime @@ -145,9 +145,9 @@ https://github.com/dotnet/runtime 3c48925a6c1ab31865b4438a6cb88242d1a8fe4d - + https://github.com/dotnet/winforms - af50f5ef63fbc8c127fd3ec6b04ae74f18996227 + 0c37f29dd1c771f4134388dc80b11e5727810731 diff --git a/eng/Versions.props b/eng/Versions.props index 23a65bb74..1044c68e1 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -64,11 +64,11 @@ 4.10.0 - 8.0.0-rc.2.23451.4 - 8.0.0-rc.2.23451.4 - 8.0.0-rc.2.23451.4 + 8.0.0-rc.2.23452.2 + 8.0.0-rc.2.23452.2 + 8.0.0-rc.2.23452.2 - 8.0.0-rc.2.23452.3 - 8.0.0-rc.2.23452.3 + 8.0.0-rc.2.23452.4 + 8.0.0-rc.2.23452.4 From 37ba08fbbc19987e9eab78bc2103747241c34288 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Thu, 7 Sep 2023 02:17:17 +0000 Subject: [PATCH 037/222] [release/8.0] Update dependencies from dotnet/wpf (#3842) [release/8.0] Update dependencies from dotnet/wpf - Coherency Updates: - Microsoft.Private.Winforms: from 8.0.0-rc.2.23452.2 to 8.0.0-rc.2.23456.6 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rc.2.23452.2 to 8.0.0-rc.2.23456.6 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rc.2.23452.2 to 8.0.0-rc.2.23456.6 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rc.2.23452.2 to 8.0.0-rc.2.23456.6 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Dotnet.WinForms.ProjectTemplates: from 8.0.0-rc.2.23452.2 to 8.0.0-rc.2.23456.6 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rc.2.23452.2 to 8.0.0-rc.2.23456.6 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rc.2.23452.2 to 8.0.0-rc.2.23456.6 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rc.2.23452.2 to 8.0.0-rc.2.23456.6 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rc.2.23452.2 to 8.0.0-rc.2.23456.6 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rc.2.23452.2 to 8.0.0-rc.2.23456.6 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rc.2.23452.2 to 8.0.0-rc.2.23456.6 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rc.2.23452.2 to 8.0.0-rc.2.23456.6 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rc.2.23452.2 to 8.0.0-rc.2.23456.6 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rc.2.23452.2 to 8.0.0-rc.2.23456.6 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rc.2.23452.2 to 8.0.0-rc.2.23456.6 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rc.2.23452.2 to 8.0.0-rc.2.23456.6 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rc.2.23452.2 to 8.0.0-rc.2.23456.6 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rc.2.23452.2 to 8.0.0-rc.2.23456.6 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rc.2.23452.2 to 8.0.0-rc.2.23456.6 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rc.2.23452.2 to 8.0.0-rc.2.23456.6 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rc.2.23452.2 to 8.0.0-rc.2.23456.6 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rc.2.23452.2 to 8.0.0-rc.2.23456.6 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rc.2.23452.2 to 8.0.0-rc.2.23456.6 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rc.2.23452.2 to 8.0.0-rc.2.23456.6 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rc.2.23452.2 to 8.0.0-rc.2.23456.6 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rc.2.23452.2 to 8.0.0-rc.2.23456.6 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rc.2.23452.2 to 8.0.0-rc.2.23456.6 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rc.2.23452.2 to 8.0.0-rc.2.23456.6 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rc.2.23452.2 to 8.0.0-rc.2.23456.6 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rc.2.23452.2 to 8.0.0-rc.2.23456.6 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rc.2.23452.2 to 8.0.0-rc.2.23456.6 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rc.2.23452.2 to 8.0.0-rc.2.23456.6 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Drawing.Common: from 8.0.0-rc.2.23452.2 to 8.0.0-rc.2.23456.6 (parent: Microsoft.DotNet.Wpf.GitHub) --- eng/Version.Details.xml | 24 ++++++++++++------------ eng/Versions.props | 10 +++++----- 2 files changed, 17 insertions(+), 17 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 9ff388185..66ee4f4d0 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -5,17 +5,17 @@ https://github.com/dotnet/runtime 3c48925a6c1ab31865b4438a6cb88242d1a8fe4d - + https://github.com/dotnet/winforms - 0c37f29dd1c771f4134388dc80b11e5727810731 + 1068bfb357d0e29d166c180c3a43bba11c0f2fa8 - + https://github.com/dotnet/wpf - 921e0f8a13ded54098cf33245e3b0413ec7b386c + 3f3cc17afaa9154ac2fa6dc324bb1c17a7e63fcb - + https://github.com/dotnet/wpf - 921e0f8a13ded54098cf33245e3b0413ec7b386c + 3f3cc17afaa9154ac2fa6dc324bb1c17a7e63fcb https://github.com/dotnet/runtime @@ -29,13 +29,13 @@ https://github.com/dotnet/runtime 3c48925a6c1ab31865b4438a6cb88242d1a8fe4d - + https://github.com/dotnet/winforms - 0c37f29dd1c771f4134388dc80b11e5727810731 + 1068bfb357d0e29d166c180c3a43bba11c0f2fa8 - + https://github.com/dotnet/wpf - 921e0f8a13ded54098cf33245e3b0413ec7b386c + 3f3cc17afaa9154ac2fa6dc324bb1c17a7e63fcb https://github.com/dotnet/runtime @@ -145,9 +145,9 @@ https://github.com/dotnet/runtime 3c48925a6c1ab31865b4438a6cb88242d1a8fe4d - + https://github.com/dotnet/winforms - 0c37f29dd1c771f4134388dc80b11e5727810731 + 1068bfb357d0e29d166c180c3a43bba11c0f2fa8 diff --git a/eng/Versions.props b/eng/Versions.props index 6b600fa4b..39e4a2618 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -64,11 +64,11 @@ 4.10.0 - 8.0.0-rc.2.23452.2 - 8.0.0-rc.2.23452.2 - 8.0.0-rc.2.23452.2 + 8.0.0-rc.2.23456.6 + 8.0.0-rc.2.23456.6 + 8.0.0-rc.2.23456.6 - 8.0.0-rc.2.23452.4 - 8.0.0-rc.2.23452.4 + 8.0.0-rc.2.23456.2 + 8.0.0-rc.2.23456.2 From 06495aae1e90f8d3acf4474f0290e00ff359b3f6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Klaus=20L=C3=B6ffelmann?= <9663150+KlausLoeffelmann@users.noreply.github.com> Date: Fri, 1 Sep 2023 18:24:32 -0700 Subject: [PATCH 038/222] Update Microsoft.Windows.Compatibility README.md (#3835) * Update README.md * Update Code-Tic-Formatting in README.md * Address review feedback. --- .../src/README.md | 113 ++++++++++++++++-- 1 file changed, 106 insertions(+), 7 deletions(-) diff --git a/src/Microsoft.Windows.Compatibility/src/README.md b/src/Microsoft.Windows.Compatibility/src/README.md index e3b8b81e2..d94132e3a 100644 --- a/src/Microsoft.Windows.Compatibility/src/README.md +++ b/src/Microsoft.Windows.Compatibility/src/README.md @@ -1,9 +1,108 @@ -# Microsoft.Windows.Compatibility package +# Microsoft.Windows.Compatibility -This Windows Compatibility Pack provides access to APIs that were previously available only for .NET Framework. It can be used from both .NET as well as .NET Standard. +The `Microsoft.Windows.Compatibility` package provides Windows-specific APIs to help you port your .NET Framework applications to .NET Core 2.0+, .NET 5+ or .NET Standard. This package offers a smoother transition for those looking to modernize their applications without losing access to familiar Windows functionalities. -### How to add a new dependency -1. Add the package version to the repository's Versions.props file. -2. Add the package dependency to the repository's Version.Details.xml file. If the dependency doesn't come from a repository with a direct subscription to (i.e. winforms and runtime), add the `CoherentParentDependency` attribute to the dependency. -3. Add the package reference into the Microsoft.Windows.Compatibility.csproj file and use the version just defined in the Versions.props file. -4. If a `CoherentParentDependency` attribute was required, a dependency must be added to the repository dependency chain as well. I.e. to add a new dependency from runtime, a dependency must also be added in winforms and wpf's Version.Details.xml file. \ No newline at end of file +## Getting Started + +To start using the `Microsoft.Windows.Compatibility` package, you'll first need to install it via NuGet Package Manager, Package Manager Console, or by editing your project file. + +### NuGet Package Manager +``` +Install-Package Microsoft.Windows.Compatibility -Version [your_version_here] +``` + +### .NET CLI +``` +dotnet add package Microsoft.Windows.Compatibility --version [your_version_here] +``` + +### Prerequisites + +- .NET Core 2.0+ +- .NET 5+ +- .NET Standard 2.0 or higher + +## Usage + +After installing the package, you can access Windows-specific APIs just like you would in a .NET Framework application. Below are some examples in both C# and VB: + +### Writing to the Windows Registry + +#### C# +```csharp +using Microsoft.Win32; + +class Program +{ + static void Main() + { + using (RegistryKey key = Registry.CurrentUser.CreateSubKey("Software\\MyApp")) + { + key.SetValue("MySetting", "MyValue"); + } + } +} +``` + +#### VB +```vb +Imports Microsoft.Win32 + +Module Program + Sub Main() + Using key As RegistryKey = Registry.CurrentUser.CreateSubKey("Software\MyApp") + key.SetValue("MySetting", "MyValue") + End Using + End Sub +End Module +``` + +### Using the Serial Port + +#### C# +```csharp +using System.IO.Ports; + +class Program +{ + static void Main() + { + using (SerialPort port = new SerialPort("COM1", 9600)) + { + port.Open(); + port.WriteLine("Hello, world!"); + } + } +} +``` + +#### VB +```vb +Imports System.IO.Ports + +Module Program + Sub Main() + Using port As New SerialPort("COM1", 9600) + port.Open() + port.WriteLine("Hello, world!") + End Using + End Sub +End Module +``` + +## Additional Documentation + +For more in-depth tutorials and API references, you can check the following resources: + +- [NuGet Gallery | Microsoft.Windows.Compatibility](https://nuget.org/packages/Microsoft.Windows.Compatibility/) +- [Use the Windows Compatibility Pack to port code - .NET](https://learn.microsoft.com/dotnet/core/porting/windows-compat-pack) +- [Announcing the Windows Compatibility Pack for .NET Core](https://devblogs.microsoft.com/dotnet/announcing-the-windows-compatibility-pack-for-net-core/) +- [Installing NuGet client tools | Microsoft Learn](https://learn.microsoft.com/nuget/consume-packages/install-use-packages-nuget-cli) + +## Feedback + +We value your feedback! Here are ways to get in touch with us: + +- Open an issue on our [GitHub repository](https://github.com/dotnet/runtime/issues) +- Reach out on Twitter with the hashtag #dotnet +- Join our Discord channel: [dotnet/Discord](https://discord.com/invite/dotnet) From 0e4ed7afb53f7aec50c8198064673418f202eceb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Klaus=20L=C3=B6ffelmann?= <9663150+KlausLoeffelmann@users.noreply.github.com> Date: Wed, 6 Sep 2023 23:34:54 -0700 Subject: [PATCH 039/222] Update README.md (#3839) * Update README.md Erase redundant README sections. * Seperate package and repo readme. * Setup Package readme file in project. * Address review feedback. * Revert README. --- .../Microsoft.Windows.Compatibility.csproj | 5 + .../src/PACKAGE.md | 91 ++++++++++++++ .../src/README.md | 113 ++---------------- 3 files changed, 103 insertions(+), 106 deletions(-) create mode 100644 src/Microsoft.Windows.Compatibility/src/PACKAGE.md diff --git a/src/Microsoft.Windows.Compatibility/src/Microsoft.Windows.Compatibility.csproj b/src/Microsoft.Windows.Compatibility/src/Microsoft.Windows.Compatibility.csproj index abd2bb60e..db835cf3e 100644 --- a/src/Microsoft.Windows.Compatibility/src/Microsoft.Windows.Compatibility.csproj +++ b/src/Microsoft.Windows.Compatibility/src/Microsoft.Windows.Compatibility.csproj @@ -10,8 +10,13 @@ $(NoWarn);NU5128 true This Windows Compatibility Pack provides access to APIs that were previously available only for .NET Framework. It can be used from both .NET as well as .NET Standard. + PACKAGE.md + + + + diff --git a/src/Microsoft.Windows.Compatibility/src/PACKAGE.md b/src/Microsoft.Windows.Compatibility/src/PACKAGE.md new file mode 100644 index 000000000..3dc33a682 --- /dev/null +++ b/src/Microsoft.Windows.Compatibility/src/PACKAGE.md @@ -0,0 +1,91 @@ +# Microsoft.Windows.Compatibility + +The `Microsoft.Windows.Compatibility` package provides Windows-specific APIs to help you port your .NET Framework applications to .NET Core 2.0+, .NET 5+ or .NET Standard. This package offers a smoother transition for those looking to modernize their applications without losing access to familiar Windows functionalities. + +## Getting Started + +To start using the `Microsoft.Windows.Compatibility` package, you'll first need to install it via NuGet Package Manager, Package Manager Console, or by editing your project file. + +## Usage + +After installing the package, you can access Windows-specific APIs just like you would in a .NET Framework application. Below are some examples in both C# and VB: + +### Writing to the Windows Registry + +#### C# +```csharp +using Microsoft.Win32; + +class Program +{ + static void Main() + { + using (RegistryKey key = Registry.CurrentUser.CreateSubKey("Software\\MyApp")) + { + key.SetValue("MySetting", "MyValue"); + } + } +} +``` + +#### VB +```vb +Imports Microsoft.Win32 + +Module Program + Sub Main() + Using key As RegistryKey = Registry.CurrentUser.CreateSubKey("Software\MyApp") + key.SetValue("MySetting", "MyValue") + End Using + End Sub +End Module +``` + +### Using the Serial Port + +#### C# +```csharp +using System.IO.Ports; + +class Program +{ + static void Main() + { + using (SerialPort port = new SerialPort("COM1", 9600)) + { + port.Open(); + port.WriteLine("Hello, world!"); + } + } +} +``` + +#### VB +```vb +Imports System.IO.Ports + +Module Program + Sub Main() + Using port As New SerialPort("COM1", 9600) + port.Open() + port.WriteLine("Hello, world!") + End Using + End Sub +End Module +``` + +## Additional Documentation + +For more in-depth tutorials and API references, you can check the following resources: + +- [Use the Windows Compatibility Pack to port code - .NET](https://learn.microsoft.com/dotnet/core/porting/windows-compat-pack) +- [Announcing the Windows Compatibility Pack for .NET Core](https://devblogs.microsoft.com/dotnet/announcing-the-windows-compatibility-pack-for-net-core/) +- [Installing NuGet client tools | Microsoft Learn](https://learn.microsoft.com/nuget/consume-packages/install-use-packages-nuget-cli) + +## Feedback + +We value your feedback! Here are ways to get in touch with us: + +- Open an issue on our [GitHub repository](https://github.com/dotnet/runtime/issues) +- Reach out on Twitter with the [hashtag #dotnet](https://twitter.com/search?q=%23dotnet) +- Join our Discord channel: [dotnet/Discord](https://discord.com/invite/dotnet) diff --git a/src/Microsoft.Windows.Compatibility/src/README.md b/src/Microsoft.Windows.Compatibility/src/README.md index d94132e3a..e3b8b81e2 100644 --- a/src/Microsoft.Windows.Compatibility/src/README.md +++ b/src/Microsoft.Windows.Compatibility/src/README.md @@ -1,108 +1,9 @@ -# Microsoft.Windows.Compatibility +# Microsoft.Windows.Compatibility package -The `Microsoft.Windows.Compatibility` package provides Windows-specific APIs to help you port your .NET Framework applications to .NET Core 2.0+, .NET 5+ or .NET Standard. This package offers a smoother transition for those looking to modernize their applications without losing access to familiar Windows functionalities. +This Windows Compatibility Pack provides access to APIs that were previously available only for .NET Framework. It can be used from both .NET as well as .NET Standard. -## Getting Started - -To start using the `Microsoft.Windows.Compatibility` package, you'll first need to install it via NuGet Package Manager, Package Manager Console, or by editing your project file. - -### NuGet Package Manager -``` -Install-Package Microsoft.Windows.Compatibility -Version [your_version_here] -``` - -### .NET CLI -``` -dotnet add package Microsoft.Windows.Compatibility --version [your_version_here] -``` - -### Prerequisites - -- .NET Core 2.0+ -- .NET 5+ -- .NET Standard 2.0 or higher - -## Usage - -After installing the package, you can access Windows-specific APIs just like you would in a .NET Framework application. Below are some examples in both C# and VB: - -### Writing to the Windows Registry - -#### C# -```csharp -using Microsoft.Win32; - -class Program -{ - static void Main() - { - using (RegistryKey key = Registry.CurrentUser.CreateSubKey("Software\\MyApp")) - { - key.SetValue("MySetting", "MyValue"); - } - } -} -``` - -#### VB -```vb -Imports Microsoft.Win32 - -Module Program - Sub Main() - Using key As RegistryKey = Registry.CurrentUser.CreateSubKey("Software\MyApp") - key.SetValue("MySetting", "MyValue") - End Using - End Sub -End Module -``` - -### Using the Serial Port - -#### C# -```csharp -using System.IO.Ports; - -class Program -{ - static void Main() - { - using (SerialPort port = new SerialPort("COM1", 9600)) - { - port.Open(); - port.WriteLine("Hello, world!"); - } - } -} -``` - -#### VB -```vb -Imports System.IO.Ports - -Module Program - Sub Main() - Using port As New SerialPort("COM1", 9600) - port.Open() - port.WriteLine("Hello, world!") - End Using - End Sub -End Module -``` - -## Additional Documentation - -For more in-depth tutorials and API references, you can check the following resources: - -- [NuGet Gallery | Microsoft.Windows.Compatibility](https://nuget.org/packages/Microsoft.Windows.Compatibility/) -- [Use the Windows Compatibility Pack to port code - .NET](https://learn.microsoft.com/dotnet/core/porting/windows-compat-pack) -- [Announcing the Windows Compatibility Pack for .NET Core](https://devblogs.microsoft.com/dotnet/announcing-the-windows-compatibility-pack-for-net-core/) -- [Installing NuGet client tools | Microsoft Learn](https://learn.microsoft.com/nuget/consume-packages/install-use-packages-nuget-cli) - -## Feedback - -We value your feedback! Here are ways to get in touch with us: - -- Open an issue on our [GitHub repository](https://github.com/dotnet/runtime/issues) -- Reach out on Twitter with the hashtag #dotnet -- Join our Discord channel: [dotnet/Discord](https://discord.com/invite/dotnet) +### How to add a new dependency +1. Add the package version to the repository's Versions.props file. +2. Add the package dependency to the repository's Version.Details.xml file. If the dependency doesn't come from a repository with a direct subscription to (i.e. winforms and runtime), add the `CoherentParentDependency` attribute to the dependency. +3. Add the package reference into the Microsoft.Windows.Compatibility.csproj file and use the version just defined in the Versions.props file. +4. If a `CoherentParentDependency` attribute was required, a dependency must be added to the repository dependency chain as well. I.e. to add a new dependency from runtime, a dependency must also be added in winforms and wpf's Version.Details.xml file. \ No newline at end of file From 7047a17d7a41541116cb291840f0ebd573f62c13 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Thu, 7 Sep 2023 23:36:41 +0000 Subject: [PATCH 040/222] Update dependencies from https://github.com/dotnet/wpf build 20230907.4 Microsoft.DotNet.Wpf.GitHub , Microsoft.DotNet.Wpf.ProjectTemplates , Microsoft.NET.Sdk.WindowsDesktop From Version 8.0.0-rc.2.23456.2 -> To Version 8.0.0-rc.2.23457.4 Dependency coherency updates Microsoft.Private.Winforms,Microsoft.Internal.Runtime.WindowsDesktop.Transport,Microsoft.Private.Winforms,Microsoft.NETCore.App.Ref,Microsoft.Private.Winforms,VS.Redist.Common.NetCore.SharedFramework.x64.8.0,Microsoft.Private.Winforms,Microsoft.NETCore.App.Runtime.win-x64,Microsoft.Dotnet.WinForms.ProjectTemplates,Microsoft.Private.Winforms,Microsoft.Win32.Registry.AccessControl,Microsoft.Private.Winforms,Microsoft.Win32.SystemEvents,Microsoft.Private.Winforms,System.CodeDom,Microsoft.Private.Winforms,System.ComponentModel.Composition,Microsoft.Private.Winforms,System.Configuration.ConfigurationManager,Microsoft.Private.Winforms,System.Data.Odbc,Microsoft.Private.Winforms,System.Data.OleDb,Microsoft.Private.Winforms,System.Diagnostics.EventLog,Microsoft.Private.Winforms,System.Diagnostics.PerformanceCounter,Microsoft.Private.Winforms,System.DirectoryServices.AccountManagement,Microsoft.Private.Winforms,System.DirectoryServices.Protocols,Microsoft.Private.Winforms,System.DirectoryServices,Microsoft.Private.Winforms,System.IO.Packaging,Microsoft.Private.Winforms,System.IO.Ports,Microsoft.Private.Winforms,System.Management,Microsoft.Private.Winforms,System.Reflection.Context,Microsoft.Private.Winforms,System.Runtime.Caching,Microsoft.Private.Winforms,System.Security.Cryptography.Pkcs,Microsoft.Private.Winforms,System.Security.Cryptography.ProtectedData,Microsoft.Private.Winforms,System.Security.Cryptography.Xml,Microsoft.Private.Winforms,System.Security.Permissions,Microsoft.Private.Winforms,System.ServiceModel.Syndication,Microsoft.Private.Winforms,System.ServiceProcess.ServiceController,Microsoft.Private.Winforms,System.Speech,Microsoft.Private.Winforms,System.Text.Encoding.CodePages,Microsoft.Private.Winforms,System.Threading.AccessControl,Microsoft.Private.Winforms,System.ComponentModel.Composition.Registration,System.Drawing.Common From Version 8.0.0-rc.2.23456.6 -> To Version 8.0.0-rc.2.23457.5 (parent: Microsoft.DotNet.Wpf.GitHub --- eng/Version.Details.xml | 148 ++++++++++++++++++++-------------------- eng/Versions.props | 72 +++++++++---------- 2 files changed, 110 insertions(+), 110 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 66ee4f4d0..0d40609fe 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,153 +1,153 @@ - + https://github.com/dotnet/runtime - 3c48925a6c1ab31865b4438a6cb88242d1a8fe4d + da3500bb02343b1d0424c74ccdddbc592b5b3f4f - + https://github.com/dotnet/winforms - 1068bfb357d0e29d166c180c3a43bba11c0f2fa8 + 11634a50d50b38b80af7ee8ce536efbdf8a37e44 - + https://github.com/dotnet/wpf - 3f3cc17afaa9154ac2fa6dc324bb1c17a7e63fcb + 23b73811905ec326926b804ad8888a34ba80a11d - + https://github.com/dotnet/wpf - 3f3cc17afaa9154ac2fa6dc324bb1c17a7e63fcb + 23b73811905ec326926b804ad8888a34ba80a11d - + https://github.com/dotnet/runtime - 3c48925a6c1ab31865b4438a6cb88242d1a8fe4d + da3500bb02343b1d0424c74ccdddbc592b5b3f4f - + https://github.com/dotnet/runtime - 3c48925a6c1ab31865b4438a6cb88242d1a8fe4d + da3500bb02343b1d0424c74ccdddbc592b5b3f4f - + https://github.com/dotnet/runtime - 3c48925a6c1ab31865b4438a6cb88242d1a8fe4d + da3500bb02343b1d0424c74ccdddbc592b5b3f4f - + https://github.com/dotnet/winforms - 1068bfb357d0e29d166c180c3a43bba11c0f2fa8 + 11634a50d50b38b80af7ee8ce536efbdf8a37e44 - + https://github.com/dotnet/wpf - 3f3cc17afaa9154ac2fa6dc324bb1c17a7e63fcb + 23b73811905ec326926b804ad8888a34ba80a11d - + https://github.com/dotnet/runtime - 3c48925a6c1ab31865b4438a6cb88242d1a8fe4d + da3500bb02343b1d0424c74ccdddbc592b5b3f4f - + https://github.com/dotnet/runtime - 3c48925a6c1ab31865b4438a6cb88242d1a8fe4d + da3500bb02343b1d0424c74ccdddbc592b5b3f4f - + https://github.com/dotnet/runtime - 3c48925a6c1ab31865b4438a6cb88242d1a8fe4d + da3500bb02343b1d0424c74ccdddbc592b5b3f4f - + https://github.com/dotnet/runtime - 3c48925a6c1ab31865b4438a6cb88242d1a8fe4d + da3500bb02343b1d0424c74ccdddbc592b5b3f4f - + https://github.com/dotnet/runtime - 3c48925a6c1ab31865b4438a6cb88242d1a8fe4d + da3500bb02343b1d0424c74ccdddbc592b5b3f4f - + https://github.com/dotnet/runtime - 3c48925a6c1ab31865b4438a6cb88242d1a8fe4d + da3500bb02343b1d0424c74ccdddbc592b5b3f4f - + https://github.com/dotnet/runtime - 3c48925a6c1ab31865b4438a6cb88242d1a8fe4d + da3500bb02343b1d0424c74ccdddbc592b5b3f4f - + https://github.com/dotnet/runtime - 3c48925a6c1ab31865b4438a6cb88242d1a8fe4d + da3500bb02343b1d0424c74ccdddbc592b5b3f4f - + https://github.com/dotnet/runtime - 3c48925a6c1ab31865b4438a6cb88242d1a8fe4d + da3500bb02343b1d0424c74ccdddbc592b5b3f4f - + https://github.com/dotnet/runtime - 3c48925a6c1ab31865b4438a6cb88242d1a8fe4d + da3500bb02343b1d0424c74ccdddbc592b5b3f4f - + https://github.com/dotnet/runtime - 3c48925a6c1ab31865b4438a6cb88242d1a8fe4d + da3500bb02343b1d0424c74ccdddbc592b5b3f4f - + https://github.com/dotnet/runtime - 3c48925a6c1ab31865b4438a6cb88242d1a8fe4d + da3500bb02343b1d0424c74ccdddbc592b5b3f4f - + https://github.com/dotnet/runtime - 3c48925a6c1ab31865b4438a6cb88242d1a8fe4d + da3500bb02343b1d0424c74ccdddbc592b5b3f4f - + https://github.com/dotnet/runtime - 3c48925a6c1ab31865b4438a6cb88242d1a8fe4d + da3500bb02343b1d0424c74ccdddbc592b5b3f4f - + https://github.com/dotnet/runtime - 3c48925a6c1ab31865b4438a6cb88242d1a8fe4d + da3500bb02343b1d0424c74ccdddbc592b5b3f4f - + https://github.com/dotnet/runtime - 3c48925a6c1ab31865b4438a6cb88242d1a8fe4d + da3500bb02343b1d0424c74ccdddbc592b5b3f4f - + https://github.com/dotnet/runtime - 3c48925a6c1ab31865b4438a6cb88242d1a8fe4d + da3500bb02343b1d0424c74ccdddbc592b5b3f4f - + https://github.com/dotnet/runtime - 3c48925a6c1ab31865b4438a6cb88242d1a8fe4d + da3500bb02343b1d0424c74ccdddbc592b5b3f4f - + https://github.com/dotnet/runtime - 3c48925a6c1ab31865b4438a6cb88242d1a8fe4d + da3500bb02343b1d0424c74ccdddbc592b5b3f4f - + https://github.com/dotnet/runtime - 3c48925a6c1ab31865b4438a6cb88242d1a8fe4d + da3500bb02343b1d0424c74ccdddbc592b5b3f4f - + https://github.com/dotnet/runtime - 3c48925a6c1ab31865b4438a6cb88242d1a8fe4d + da3500bb02343b1d0424c74ccdddbc592b5b3f4f - + https://github.com/dotnet/runtime - 3c48925a6c1ab31865b4438a6cb88242d1a8fe4d + da3500bb02343b1d0424c74ccdddbc592b5b3f4f - + https://github.com/dotnet/runtime - 3c48925a6c1ab31865b4438a6cb88242d1a8fe4d + da3500bb02343b1d0424c74ccdddbc592b5b3f4f - + https://github.com/dotnet/runtime - 3c48925a6c1ab31865b4438a6cb88242d1a8fe4d + da3500bb02343b1d0424c74ccdddbc592b5b3f4f - + https://github.com/dotnet/runtime - 3c48925a6c1ab31865b4438a6cb88242d1a8fe4d + da3500bb02343b1d0424c74ccdddbc592b5b3f4f - + https://github.com/dotnet/runtime - 3c48925a6c1ab31865b4438a6cb88242d1a8fe4d + da3500bb02343b1d0424c74ccdddbc592b5b3f4f - + https://github.com/dotnet/runtime - 3c48925a6c1ab31865b4438a6cb88242d1a8fe4d + da3500bb02343b1d0424c74ccdddbc592b5b3f4f - + https://github.com/dotnet/winforms - 1068bfb357d0e29d166c180c3a43bba11c0f2fa8 + 11634a50d50b38b80af7ee8ce536efbdf8a37e44 diff --git a/eng/Versions.props b/eng/Versions.props index 39e4a2618..83775e99e 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -24,51 +24,51 @@ 6.2.4 - 8.0.0-rc.2.23431.9 - 8.0.0-rc.2.23431.9 - 8.0.0-rc.2.23431.9 - 8.0.0-rc.2.23431.9 + 8.0.0-rc.2.23457.7 + 8.0.0-rc.2.23457.7 + 8.0.0-rc.2.23457.7 + 8.0.0-rc.2.23457.7 5.0.0 - 8.0.0-rc.2.23431.9 - 8.0.0-rc.2.23431.9 - 8.0.0-rc.2.23431.9 - 8.0.0-rc.2.23431.9 - 8.0.0-rc.2.23431.9 - 8.0.0-rc.2.23431.9 - 8.0.0-rc.2.23431.9 - 8.0.0-rc.2.23431.9 - 8.0.0-rc.2.23431.9 - 8.0.0-rc.2.23431.9 - 8.0.0-rc.2.23431.9 - 8.0.0-rc.2.23431.9 + 8.0.0-rc.2.23457.7 + 8.0.0-rc.2.23457.7 + 8.0.0-rc.2.23457.7 + 8.0.0-rc.2.23457.7 + 8.0.0-rc.2.23457.7 + 8.0.0-rc.2.23457.7 + 8.0.0-rc.2.23457.7 + 8.0.0-rc.2.23457.7 + 8.0.0-rc.2.23457.7 + 8.0.0-rc.2.23457.7 + 8.0.0-rc.2.23457.7 + 8.0.0-rc.2.23457.7 5.0.0 - 8.0.0-rc.2.23431.9 + 8.0.0-rc.2.23457.7 5.0.0 - 8.0.0-rc.2.23431.9 - 8.0.0-rc.2.23431.9 - 8.0.0-rc.2.23431.9 - 8.0.0-rc.2.23431.9 + 8.0.0-rc.2.23457.7 + 8.0.0-rc.2.23457.7 + 8.0.0-rc.2.23457.7 + 8.0.0-rc.2.23457.7 6.0.0 5.0.0 - 8.0.0-rc.2.23431.9 - 8.0.0-rc.2.23431.9 - 8.0.0-rc.2.23431.9 - 8.0.0-rc.2.23431.9 + 8.0.0-rc.2.23457.7 + 8.0.0-rc.2.23457.7 + 8.0.0-rc.2.23457.7 + 8.0.0-rc.2.23457.7 5.0.0 - 8.0.0-rc.2.23431.9 - 8.0.0-rc.2.23431.9 - 8.0.0-rc.2.23431.9 - 8.0.0-rc.2.23431.9 - 8.0.0-rc.2.23431.9 - 8.0.0-rc.2.23431.9 + 8.0.0-rc.2.23457.7 + 8.0.0-rc.2.23457.7 + 8.0.0-rc.2.23457.7 + 8.0.0-rc.2.23457.7 + 8.0.0-rc.2.23457.7 + 8.0.0-rc.2.23457.7 4.10.0 - 8.0.0-rc.2.23456.6 - 8.0.0-rc.2.23456.6 - 8.0.0-rc.2.23456.6 + 8.0.0-rc.2.23457.5 + 8.0.0-rc.2.23457.5 + 8.0.0-rc.2.23457.5 - 8.0.0-rc.2.23456.2 - 8.0.0-rc.2.23456.2 + 8.0.0-rc.2.23457.4 + 8.0.0-rc.2.23457.4 From 5eab9c80e9273b1f8fce585278cefe16e092f3c0 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Tue, 12 Sep 2023 11:07:11 -0700 Subject: [PATCH 041/222] [release/8.0] Update dependencies from dotnet/wpf (#3845) * Update dependencies from https://github.com/dotnet/wpf build 20230907.5 Microsoft.DotNet.Wpf.GitHub , Microsoft.DotNet.Wpf.ProjectTemplates , Microsoft.NET.Sdk.WindowsDesktop From Version 8.0.0-rc.2.23457.4 -> To Version 8.0.0-rc.2.23457.5 Dependency coherency updates Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Dotnet.WinForms.ProjectTemplates,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,System.Drawing.Common From Version 8.0.0-rc.2.23457.5 -> To Version 8.0.0-rc.2.23457.7 (parent: Microsoft.DotNet.Wpf.GitHub * Update dependencies from https://github.com/dotnet/wpf build 20230912.2 Microsoft.DotNet.Wpf.GitHub , Microsoft.DotNet.Wpf.ProjectTemplates , Microsoft.NET.Sdk.WindowsDesktop From Version 8.0.0-rc.2.23457.4 -> To Version 8.0.0-rc.2.23462.2 Dependency coherency updates Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Dotnet.WinForms.ProjectTemplates,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,System.Drawing.Common From Version 8.0.0-rc.2.23457.5 -> To Version 8.0.0-rc.2.23457.7 (parent: Microsoft.DotNet.Wpf.GitHub * Update dependencies from https://github.com/dotnet/wpf build 20230912.3 Microsoft.DotNet.Wpf.GitHub , Microsoft.DotNet.Wpf.ProjectTemplates , Microsoft.NET.Sdk.WindowsDesktop From Version 8.0.0-rc.2.23457.4 -> To Version 8.0.0-rc.2.23462.3 Dependency coherency updates Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Dotnet.WinForms.ProjectTemplates,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,System.Drawing.Common From Version 8.0.0-rc.2.23457.5 -> To Version 8.0.0-rc.2.23462.2 (parent: Microsoft.DotNet.Wpf.GitHub --------- Co-authored-by: dotnet-maestro[bot] --- eng/Version.Details.xml | 24 ++++++++++++------------ eng/Versions.props | 10 +++++----- 2 files changed, 17 insertions(+), 17 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 0d40609fe..ca471276a 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -5,17 +5,17 @@ https://github.com/dotnet/runtime da3500bb02343b1d0424c74ccdddbc592b5b3f4f - + https://github.com/dotnet/winforms - 11634a50d50b38b80af7ee8ce536efbdf8a37e44 + 651817103840c580c708d8ff39a025948e59629b - + https://github.com/dotnet/wpf - 23b73811905ec326926b804ad8888a34ba80a11d + 776d7f8c31608ebe7cfc807ddba634e0b27757c3 - + https://github.com/dotnet/wpf - 23b73811905ec326926b804ad8888a34ba80a11d + 776d7f8c31608ebe7cfc807ddba634e0b27757c3 https://github.com/dotnet/runtime @@ -29,13 +29,13 @@ https://github.com/dotnet/runtime da3500bb02343b1d0424c74ccdddbc592b5b3f4f - + https://github.com/dotnet/winforms - 11634a50d50b38b80af7ee8ce536efbdf8a37e44 + 651817103840c580c708d8ff39a025948e59629b - + https://github.com/dotnet/wpf - 23b73811905ec326926b804ad8888a34ba80a11d + 776d7f8c31608ebe7cfc807ddba634e0b27757c3 https://github.com/dotnet/runtime @@ -145,9 +145,9 @@ https://github.com/dotnet/runtime da3500bb02343b1d0424c74ccdddbc592b5b3f4f - + https://github.com/dotnet/winforms - 11634a50d50b38b80af7ee8ce536efbdf8a37e44 + 651817103840c580c708d8ff39a025948e59629b diff --git a/eng/Versions.props b/eng/Versions.props index 83775e99e..670428ea0 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -64,11 +64,11 @@ 4.10.0 - 8.0.0-rc.2.23457.5 - 8.0.0-rc.2.23457.5 - 8.0.0-rc.2.23457.5 + 8.0.0-rc.2.23462.2 + 8.0.0-rc.2.23462.2 + 8.0.0-rc.2.23462.2 - 8.0.0-rc.2.23457.4 - 8.0.0-rc.2.23457.4 + 8.0.0-rc.2.23462.3 + 8.0.0-rc.2.23462.3 From d53ea5c7bad8c277ef15e56d354187614b9598b5 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Tue, 12 Sep 2023 11:07:25 -0700 Subject: [PATCH 042/222] [release/8.0] Update dependencies from dotnet/arcade (#3846) Update dependencies from https://github.com/dotnet/arcade build 20230911.2 Microsoft.DotNet.Arcade.Sdk , Microsoft.DotNet.Build.Tasks.Archives , Microsoft.DotNet.Build.Tasks.Feed , Microsoft.DotNet.Build.Tasks.Installers , Microsoft.DotNet.SharedFramework.Sdk , Microsoft.DotNet.VersionTools.Tasks From Version 8.0.0-beta.23451.1 -> To Version 8.0.0-beta.23461.2 Co-authored-by: dotnet-maestro[bot] --- eng/Version.Details.xml | 24 ++++++++++++------------ eng/Versions.props | 8 ++++---- global.json | 4 ++-- 3 files changed, 18 insertions(+), 18 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index ca471276a..0ad052c2d 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -151,29 +151,29 @@ - + https://github.com/dotnet/arcade - 4665b3d04e1da3796b965c3c3e3b97f55c449a6e + 4a908c64757841121e67fda7adaf776c93893163 - + https://github.com/dotnet/arcade - 4665b3d04e1da3796b965c3c3e3b97f55c449a6e + 4a908c64757841121e67fda7adaf776c93893163 - + https://github.com/dotnet/arcade - 4665b3d04e1da3796b965c3c3e3b97f55c449a6e + 4a908c64757841121e67fda7adaf776c93893163 - + https://github.com/dotnet/arcade - 4665b3d04e1da3796b965c3c3e3b97f55c449a6e + 4a908c64757841121e67fda7adaf776c93893163 - + https://github.com/dotnet/arcade - 4665b3d04e1da3796b965c3c3e3b97f55c449a6e + 4a908c64757841121e67fda7adaf776c93893163 - + https://github.com/dotnet/arcade - 4665b3d04e1da3796b965c3c3e3b97f55c449a6e + 4a908c64757841121e67fda7adaf776c93893163 diff --git a/eng/Versions.props b/eng/Versions.props index 670428ea0..64624dc9b 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -11,10 +11,10 @@ - 8.0.0-beta.23451.1 - 8.0.0-beta.23451.1 - 8.0.0-beta.23451.1 - 8.0.0-beta.23451.1 + 8.0.0-beta.23461.2 + 8.0.0-beta.23461.2 + 8.0.0-beta.23461.2 + 8.0.0-beta.23461.2 4.5.0 4.8.5 diff --git a/global.json b/global.json index 417b787f1..539a0417d 100644 --- a/global.json +++ b/global.json @@ -3,8 +3,8 @@ "dotnet": "8.0.100-preview.7.23376.3" }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "8.0.0-beta.23451.1", - "Microsoft.DotNet.SharedFramework.Sdk": "8.0.0-beta.23451.1", + "Microsoft.DotNet.Arcade.Sdk": "8.0.0-beta.23461.2", + "Microsoft.DotNet.SharedFramework.Sdk": "8.0.0-beta.23461.2", "Microsoft.Build.NoTargets": "3.7.0", "Microsoft.Build.Traversal": "3.4.0" } From 3961593c99938f139f7ae96ee80027406dc99c6a Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Wed, 13 Sep 2023 06:04:22 +0000 Subject: [PATCH 043/222] [release/8.0] Update dependencies from dotnet/wpf (#3849) Update dependencies from https://github.com/dotnet/wpf build 20230912.5 Microsoft.DotNet.Wpf.GitHub , Microsoft.DotNet.Wpf.ProjectTemplates , Microsoft.NET.Sdk.WindowsDesktop From Version 8.0.0-rc.2.23462.3 -> To Version 8.0.0-rc.2.23462.5 Dependency coherency updates Microsoft.Private.Winforms,Microsoft.Internal.Runtime.WindowsDesktop.Transport,Microsoft.Private.Winforms,Microsoft.NETCore.App.Ref,Microsoft.Private.Winforms,VS.Redist.Common.NetCore.SharedFramework.x64.8.0,Microsoft.Private.Winforms,Microsoft.NETCore.App.Runtime.win-x64,Microsoft.Dotnet.WinForms.ProjectTemplates,Microsoft.Private.Winforms,Microsoft.Win32.Registry.AccessControl,Microsoft.Private.Winforms,Microsoft.Win32.SystemEvents,Microsoft.Private.Winforms,System.CodeDom,Microsoft.Private.Winforms,System.ComponentModel.Composition,Microsoft.Private.Winforms,System.Configuration.ConfigurationManager,Microsoft.Private.Winforms,System.Data.Odbc,Microsoft.Private.Winforms,System.Data.OleDb,Microsoft.Private.Winforms,System.Diagnostics.EventLog,Microsoft.Private.Winforms,System.Diagnostics.PerformanceCounter,Microsoft.Private.Winforms,System.DirectoryServices.AccountManagement,Microsoft.Private.Winforms,System.DirectoryServices.Protocols,Microsoft.Private.Winforms,System.DirectoryServices,Microsoft.Private.Winforms,System.IO.Packaging,Microsoft.Private.Winforms,System.IO.Ports,Microsoft.Private.Winforms,System.Management,Microsoft.Private.Winforms,System.Reflection.Context,Microsoft.Private.Winforms,System.Runtime.Caching,Microsoft.Private.Winforms,System.Security.Cryptography.Pkcs,Microsoft.Private.Winforms,System.Security.Cryptography.ProtectedData,Microsoft.Private.Winforms,System.Security.Cryptography.Xml,Microsoft.Private.Winforms,System.Security.Permissions,Microsoft.Private.Winforms,System.ServiceModel.Syndication,Microsoft.Private.Winforms,System.ServiceProcess.ServiceController,Microsoft.Private.Winforms,System.Speech,Microsoft.Private.Winforms,System.Text.Encoding.CodePages,Microsoft.Private.Winforms,System.Threading.AccessControl,Microsoft.Private.Winforms,System.ComponentModel.Composition.Registration,System.Drawing.Common From Version 8.0.0-rc.2.23462.2 -> To Version 8.0.0-rc.2.23462.4 (parent: Microsoft.DotNet.Wpf.GitHub Co-authored-by: dotnet-maestro[bot] --- eng/Version.Details.xml | 216 ++++++++++++++++++++-------------------- eng/Versions.props | 72 +++++++------- 2 files changed, 144 insertions(+), 144 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 0ad052c2d..1f88bde6c 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,153 +1,153 @@ - - https://github.com/dotnet/runtime - da3500bb02343b1d0424c74ccdddbc592b5b3f4f + + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime + 92959931a32a37a19d8e1b1684edc6db0857d7de - - https://github.com/dotnet/winforms - 651817103840c580c708d8ff39a025948e59629b + + https://dev.azure.com/dnceng/internal/_git/dotnet-winforms + 5b91bede9ddc0b672b76010bdf18c2ac2b673221 - + https://github.com/dotnet/wpf - 776d7f8c31608ebe7cfc807ddba634e0b27757c3 + 4f518f24a59505ba22405dd1f866cb160414c2e0 - + https://github.com/dotnet/wpf - 776d7f8c31608ebe7cfc807ddba634e0b27757c3 + 4f518f24a59505ba22405dd1f866cb160414c2e0 - - https://github.com/dotnet/runtime - da3500bb02343b1d0424c74ccdddbc592b5b3f4f + + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime + 92959931a32a37a19d8e1b1684edc6db0857d7de - - https://github.com/dotnet/runtime - da3500bb02343b1d0424c74ccdddbc592b5b3f4f + + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime + 92959931a32a37a19d8e1b1684edc6db0857d7de - - https://github.com/dotnet/runtime - da3500bb02343b1d0424c74ccdddbc592b5b3f4f + + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime + 92959931a32a37a19d8e1b1684edc6db0857d7de - - https://github.com/dotnet/winforms - 651817103840c580c708d8ff39a025948e59629b + + https://dev.azure.com/dnceng/internal/_git/dotnet-winforms + 5b91bede9ddc0b672b76010bdf18c2ac2b673221 - + https://github.com/dotnet/wpf - 776d7f8c31608ebe7cfc807ddba634e0b27757c3 + 4f518f24a59505ba22405dd1f866cb160414c2e0 - - https://github.com/dotnet/runtime - da3500bb02343b1d0424c74ccdddbc592b5b3f4f + + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime + 92959931a32a37a19d8e1b1684edc6db0857d7de - - https://github.com/dotnet/runtime - da3500bb02343b1d0424c74ccdddbc592b5b3f4f + + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime + 92959931a32a37a19d8e1b1684edc6db0857d7de - - https://github.com/dotnet/runtime - da3500bb02343b1d0424c74ccdddbc592b5b3f4f + + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime + 92959931a32a37a19d8e1b1684edc6db0857d7de - - https://github.com/dotnet/runtime - da3500bb02343b1d0424c74ccdddbc592b5b3f4f + + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime + 92959931a32a37a19d8e1b1684edc6db0857d7de - - https://github.com/dotnet/runtime - da3500bb02343b1d0424c74ccdddbc592b5b3f4f + + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime + 92959931a32a37a19d8e1b1684edc6db0857d7de - - https://github.com/dotnet/runtime - da3500bb02343b1d0424c74ccdddbc592b5b3f4f + + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime + 92959931a32a37a19d8e1b1684edc6db0857d7de - - https://github.com/dotnet/runtime - da3500bb02343b1d0424c74ccdddbc592b5b3f4f + + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime + 92959931a32a37a19d8e1b1684edc6db0857d7de - - https://github.com/dotnet/runtime - da3500bb02343b1d0424c74ccdddbc592b5b3f4f + + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime + 92959931a32a37a19d8e1b1684edc6db0857d7de - - https://github.com/dotnet/runtime - da3500bb02343b1d0424c74ccdddbc592b5b3f4f + + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime + 92959931a32a37a19d8e1b1684edc6db0857d7de - - https://github.com/dotnet/runtime - da3500bb02343b1d0424c74ccdddbc592b5b3f4f + + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime + 92959931a32a37a19d8e1b1684edc6db0857d7de - - https://github.com/dotnet/runtime - da3500bb02343b1d0424c74ccdddbc592b5b3f4f + + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime + 92959931a32a37a19d8e1b1684edc6db0857d7de - - https://github.com/dotnet/runtime - da3500bb02343b1d0424c74ccdddbc592b5b3f4f + + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime + 92959931a32a37a19d8e1b1684edc6db0857d7de - - https://github.com/dotnet/runtime - da3500bb02343b1d0424c74ccdddbc592b5b3f4f + + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime + 92959931a32a37a19d8e1b1684edc6db0857d7de - - https://github.com/dotnet/runtime - da3500bb02343b1d0424c74ccdddbc592b5b3f4f + + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime + 92959931a32a37a19d8e1b1684edc6db0857d7de - - https://github.com/dotnet/runtime - da3500bb02343b1d0424c74ccdddbc592b5b3f4f + + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime + 92959931a32a37a19d8e1b1684edc6db0857d7de - - https://github.com/dotnet/runtime - da3500bb02343b1d0424c74ccdddbc592b5b3f4f + + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime + 92959931a32a37a19d8e1b1684edc6db0857d7de - - https://github.com/dotnet/runtime - da3500bb02343b1d0424c74ccdddbc592b5b3f4f + + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime + 92959931a32a37a19d8e1b1684edc6db0857d7de - - https://github.com/dotnet/runtime - da3500bb02343b1d0424c74ccdddbc592b5b3f4f + + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime + 92959931a32a37a19d8e1b1684edc6db0857d7de - - https://github.com/dotnet/runtime - da3500bb02343b1d0424c74ccdddbc592b5b3f4f + + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime + 92959931a32a37a19d8e1b1684edc6db0857d7de - - https://github.com/dotnet/runtime - da3500bb02343b1d0424c74ccdddbc592b5b3f4f + + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime + 92959931a32a37a19d8e1b1684edc6db0857d7de - - https://github.com/dotnet/runtime - da3500bb02343b1d0424c74ccdddbc592b5b3f4f + + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime + 92959931a32a37a19d8e1b1684edc6db0857d7de - - https://github.com/dotnet/runtime - da3500bb02343b1d0424c74ccdddbc592b5b3f4f + + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime + 92959931a32a37a19d8e1b1684edc6db0857d7de - - https://github.com/dotnet/runtime - da3500bb02343b1d0424c74ccdddbc592b5b3f4f + + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime + 92959931a32a37a19d8e1b1684edc6db0857d7de - - https://github.com/dotnet/runtime - da3500bb02343b1d0424c74ccdddbc592b5b3f4f + + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime + 92959931a32a37a19d8e1b1684edc6db0857d7de - - https://github.com/dotnet/runtime - da3500bb02343b1d0424c74ccdddbc592b5b3f4f + + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime + 92959931a32a37a19d8e1b1684edc6db0857d7de - - https://github.com/dotnet/runtime - da3500bb02343b1d0424c74ccdddbc592b5b3f4f + + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime + 92959931a32a37a19d8e1b1684edc6db0857d7de - - https://github.com/dotnet/runtime - da3500bb02343b1d0424c74ccdddbc592b5b3f4f + + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime + 92959931a32a37a19d8e1b1684edc6db0857d7de - - https://github.com/dotnet/winforms - 651817103840c580c708d8ff39a025948e59629b + + https://dev.azure.com/dnceng/internal/_git/dotnet-winforms + 5b91bede9ddc0b672b76010bdf18c2ac2b673221 diff --git a/eng/Versions.props b/eng/Versions.props index 64624dc9b..337620369 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -24,51 +24,51 @@ 6.2.4 - 8.0.0-rc.2.23457.7 - 8.0.0-rc.2.23457.7 - 8.0.0-rc.2.23457.7 - 8.0.0-rc.2.23457.7 + 8.0.0-rc.1.23419.4 + 8.0.0-rc.1.23419.4 + 8.0.0-rc.1.23419.4 + 8.0.0-rc.1.23419.4 5.0.0 - 8.0.0-rc.2.23457.7 - 8.0.0-rc.2.23457.7 - 8.0.0-rc.2.23457.7 - 8.0.0-rc.2.23457.7 - 8.0.0-rc.2.23457.7 - 8.0.0-rc.2.23457.7 - 8.0.0-rc.2.23457.7 - 8.0.0-rc.2.23457.7 - 8.0.0-rc.2.23457.7 - 8.0.0-rc.2.23457.7 - 8.0.0-rc.2.23457.7 - 8.0.0-rc.2.23457.7 + 8.0.0-rc.1.23419.4 + 8.0.0-rc.1.23419.4 + 8.0.0-rc.1.23419.4 + 8.0.0-rc.1.23419.4 + 8.0.0-rc.1.23419.4 + 8.0.0-rc.1.23419.4 + 8.0.0-rc.1.23419.4 + 8.0.0-rc.1.23419.4 + 8.0.0-rc.1.23419.4 + 8.0.0-rc.1.23419.4 + 8.0.0-rc.1.23419.4 + 8.0.0-rc.1.23419.4 5.0.0 - 8.0.0-rc.2.23457.7 + 8.0.0-rc.1.23419.4 5.0.0 - 8.0.0-rc.2.23457.7 - 8.0.0-rc.2.23457.7 - 8.0.0-rc.2.23457.7 - 8.0.0-rc.2.23457.7 + 8.0.0-rc.1.23419.4 + 8.0.0-rc.1.23419.4 + 8.0.0-rc.1.23419.4 + 8.0.0-rc.1.23419.4 6.0.0 5.0.0 - 8.0.0-rc.2.23457.7 - 8.0.0-rc.2.23457.7 - 8.0.0-rc.2.23457.7 - 8.0.0-rc.2.23457.7 + 8.0.0-rc.1.23419.4 + 8.0.0-rc.1.23419.4 + 8.0.0-rc.1.23419.4 + 8.0.0-rc.1.23419.4 5.0.0 - 8.0.0-rc.2.23457.7 - 8.0.0-rc.2.23457.7 - 8.0.0-rc.2.23457.7 - 8.0.0-rc.2.23457.7 - 8.0.0-rc.2.23457.7 - 8.0.0-rc.2.23457.7 + 8.0.0-rc.1.23419.4 + 8.0.0-rc.1.23419.4 + 8.0.0-rc.1.23419.4 + 8.0.0-rc.1.23419.4 + 8.0.0-rc.1.23419.4 + 8.0.0-rc.1.23419.4 4.10.0 - 8.0.0-rc.2.23462.2 - 8.0.0-rc.2.23462.2 - 8.0.0-rc.2.23462.2 + 8.0.0-rc.1.23419.5 + 8.0.0-rc.1.23419.5 + 8.0.0-rc.1.23419.5 - 8.0.0-rc.2.23462.3 - 8.0.0-rc.2.23462.3 + 8.0.0-rc.2.23462.7 + 8.0.0-rc.2.23462.7 From 9d5beb65eb85b28cbf25b8ccedf23e56f59e8839 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Thu, 14 Sep 2023 13:10:17 -0700 Subject: [PATCH 044/222] [release/8.0] Update dependencies from dotnet/arcade (#3853) Update dependencies from https://github.com/dotnet/arcade build 20230913.1 Microsoft.DotNet.Arcade.Sdk , Microsoft.DotNet.Build.Tasks.Archives , Microsoft.DotNet.Build.Tasks.Feed , Microsoft.DotNet.Build.Tasks.Installers , Microsoft.DotNet.SharedFramework.Sdk , Microsoft.DotNet.VersionTools.Tasks From Version 8.0.0-beta.23461.2 -> To Version 8.0.0-beta.23463.1 Co-authored-by: dotnet-maestro[bot] --- eng/Version.Details.xml | 24 ++++++++++++------------ eng/Versions.props | 8 ++++---- global.json | 4 ++-- 3 files changed, 18 insertions(+), 18 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 1f88bde6c..e3a66484e 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -151,29 +151,29 @@ - + https://github.com/dotnet/arcade - 4a908c64757841121e67fda7adaf776c93893163 + 1d451c32dda2314c721adbf8829e1c0cd4e681ff - + https://github.com/dotnet/arcade - 4a908c64757841121e67fda7adaf776c93893163 + 1d451c32dda2314c721adbf8829e1c0cd4e681ff - + https://github.com/dotnet/arcade - 4a908c64757841121e67fda7adaf776c93893163 + 1d451c32dda2314c721adbf8829e1c0cd4e681ff - + https://github.com/dotnet/arcade - 4a908c64757841121e67fda7adaf776c93893163 + 1d451c32dda2314c721adbf8829e1c0cd4e681ff - + https://github.com/dotnet/arcade - 4a908c64757841121e67fda7adaf776c93893163 + 1d451c32dda2314c721adbf8829e1c0cd4e681ff - + https://github.com/dotnet/arcade - 4a908c64757841121e67fda7adaf776c93893163 + 1d451c32dda2314c721adbf8829e1c0cd4e681ff diff --git a/eng/Versions.props b/eng/Versions.props index 337620369..edb0d6767 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -11,10 +11,10 @@ - 8.0.0-beta.23461.2 - 8.0.0-beta.23461.2 - 8.0.0-beta.23461.2 - 8.0.0-beta.23461.2 + 8.0.0-beta.23463.1 + 8.0.0-beta.23463.1 + 8.0.0-beta.23463.1 + 8.0.0-beta.23463.1 4.5.0 4.8.5 diff --git a/global.json b/global.json index 539a0417d..d46a8e498 100644 --- a/global.json +++ b/global.json @@ -3,8 +3,8 @@ "dotnet": "8.0.100-preview.7.23376.3" }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "8.0.0-beta.23461.2", - "Microsoft.DotNet.SharedFramework.Sdk": "8.0.0-beta.23461.2", + "Microsoft.DotNet.Arcade.Sdk": "8.0.0-beta.23463.1", + "Microsoft.DotNet.SharedFramework.Sdk": "8.0.0-beta.23463.1", "Microsoft.Build.NoTargets": "3.7.0", "Microsoft.Build.Traversal": "3.4.0" } From 177aea10d2f52ae89a7e06777fe5d09413e62fc5 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Fri, 15 Sep 2023 04:04:48 +0000 Subject: [PATCH 045/222] [release/8.0] Update dependencies from dotnet/wpf (#3852) [release/8.0] Update dependencies from dotnet/wpf - Coherency Updates: - Microsoft.Private.Winforms: from 8.0.0-rc.1.23419.5 to 8.0.0-rc.2.23464.6 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Internal.Runtime.WindowsDesktop.Transport: from 8.0.0-rc.1.23419.4 to 8.0.0-rc.2.23463.13 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rc.1.23419.5 to 8.0.0-rc.2.23464.6 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.NETCore.App.Ref: from 8.0.0-rc.1.23419.4 to 8.0.0-rc.2.23463.13 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rc.1.23419.5 to 8.0.0-rc.2.23464.6 (parent: Microsoft.DotNet.Wpf.GitHub) - VS.Redist.Common.NetCore.SharedFramework.x64.8.0: from 8.0.0-rc.1.23419.4 to 8.0.0-rc.2.23463.13 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rc.1.23419.5 to 8.0.0-rc.2.23464.6 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.NETCore.App.Runtime.win-x64: from 8.0.0-rc.1.23419.4 to 8.0.0-rc.2.23463.13 (parent: Microsoft.Private.Winforms) - Microsoft.Dotnet.WinForms.ProjectTemplates: from 8.0.0-rc.1.23419.5 to 8.0.0-rc.2.23464.6 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rc.1.23419.5 to 8.0.0-rc.2.23464.6 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Win32.Registry.AccessControl: from 8.0.0-rc.1.23419.4 to 8.0.0-rc.2.23463.13 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rc.1.23419.5 to 8.0.0-rc.2.23464.6 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Win32.SystemEvents: from 8.0.0-rc.1.23419.4 to 8.0.0-rc.2.23463.13 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rc.1.23419.5 to 8.0.0-rc.2.23464.6 (parent: Microsoft.DotNet.Wpf.GitHub) - System.CodeDom: from 8.0.0-rc.1.23419.4 to 8.0.0-rc.2.23463.13 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rc.1.23419.5 to 8.0.0-rc.2.23464.6 (parent: Microsoft.DotNet.Wpf.GitHub) - System.ComponentModel.Composition: from 8.0.0-rc.1.23419.4 to 8.0.0-rc.2.23463.13 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rc.1.23419.5 to 8.0.0-rc.2.23464.6 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Configuration.ConfigurationManager: from 8.0.0-rc.1.23419.4 to 8.0.0-rc.2.23463.13 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rc.1.23419.5 to 8.0.0-rc.2.23464.6 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Data.Odbc: from 8.0.0-rc.1.23419.4 to 8.0.0-rc.2.23463.13 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rc.1.23419.5 to 8.0.0-rc.2.23464.6 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Data.OleDb: from 8.0.0-rc.1.23419.4 to 8.0.0-rc.2.23463.13 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rc.1.23419.5 to 8.0.0-rc.2.23464.6 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Diagnostics.EventLog: from 8.0.0-rc.1.23419.4 to 8.0.0-rc.2.23463.13 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rc.1.23419.5 to 8.0.0-rc.2.23464.6 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Diagnostics.PerformanceCounter: from 8.0.0-rc.1.23419.4 to 8.0.0-rc.2.23463.13 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rc.1.23419.5 to 8.0.0-rc.2.23464.6 (parent: Microsoft.DotNet.Wpf.GitHub) - System.DirectoryServices.AccountManagement: from 8.0.0-rc.1.23419.4 to 8.0.0-rc.2.23463.13 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rc.1.23419.5 to 8.0.0-rc.2.23464.6 (parent: Microsoft.DotNet.Wpf.GitHub) - System.DirectoryServices.Protocols: from 8.0.0-rc.1.23419.4 to 8.0.0-rc.2.23463.13 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rc.1.23419.5 to 8.0.0-rc.2.23464.6 (parent: Microsoft.DotNet.Wpf.GitHub) - System.DirectoryServices: from 8.0.0-rc.1.23419.4 to 8.0.0-rc.2.23463.13 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rc.1.23419.5 to 8.0.0-rc.2.23464.6 (parent: Microsoft.DotNet.Wpf.GitHub) - System.IO.Packaging: from 8.0.0-rc.1.23419.4 to 8.0.0-rc.2.23463.13 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rc.1.23419.5 to 8.0.0-rc.2.23464.6 (parent: Microsoft.DotNet.Wpf.GitHub) - System.IO.Ports: from 8.0.0-rc.1.23419.4 to 8.0.0-rc.2.23463.13 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rc.1.23419.5 to 8.0.0-rc.2.23464.6 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Management: from 8.0.0-rc.1.23419.4 to 8.0.0-rc.2.23463.13 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rc.1.23419.5 to 8.0.0-rc.2.23464.6 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Reflection.Context: from 8.0.0-rc.1.23419.4 to 8.0.0-rc.2.23463.13 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rc.1.23419.5 to 8.0.0-rc.2.23464.6 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Runtime.Caching: from 8.0.0-rc.1.23419.4 to 8.0.0-rc.2.23463.13 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rc.1.23419.5 to 8.0.0-rc.2.23464.6 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Security.Cryptography.Pkcs: from 8.0.0-rc.1.23419.4 to 8.0.0-rc.2.23463.13 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rc.1.23419.5 to 8.0.0-rc.2.23464.6 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Security.Cryptography.ProtectedData: from 8.0.0-rc.1.23419.4 to 8.0.0-rc.2.23463.13 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rc.1.23419.5 to 8.0.0-rc.2.23464.6 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Security.Cryptography.Xml: from 8.0.0-rc.1.23419.4 to 8.0.0-rc.2.23463.13 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rc.1.23419.5 to 8.0.0-rc.2.23464.6 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Security.Permissions: from 8.0.0-rc.1.23419.4 to 8.0.0-rc.2.23463.13 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rc.1.23419.5 to 8.0.0-rc.2.23464.6 (parent: Microsoft.DotNet.Wpf.GitHub) - System.ServiceModel.Syndication: from 8.0.0-rc.1.23419.4 to 8.0.0-rc.2.23463.13 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rc.1.23419.5 to 8.0.0-rc.2.23464.6 (parent: Microsoft.DotNet.Wpf.GitHub) - System.ServiceProcess.ServiceController: from 8.0.0-rc.1.23419.4 to 8.0.0-rc.2.23463.13 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rc.1.23419.5 to 8.0.0-rc.2.23464.6 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Speech: from 8.0.0-rc.1.23419.4 to 8.0.0-rc.2.23463.13 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rc.1.23419.5 to 8.0.0-rc.2.23464.6 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Text.Encoding.CodePages: from 8.0.0-rc.1.23419.4 to 8.0.0-rc.2.23463.13 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rc.1.23419.5 to 8.0.0-rc.2.23464.6 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Threading.AccessControl: from 8.0.0-rc.1.23419.4 to 8.0.0-rc.2.23463.13 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rc.1.23419.5 to 8.0.0-rc.2.23464.6 (parent: Microsoft.DotNet.Wpf.GitHub) - System.ComponentModel.Composition.Registration: from 8.0.0-rc.1.23419.4 to 8.0.0-rc.2.23463.13 (parent: Microsoft.Private.Winforms) - System.Drawing.Common: from 8.0.0-rc.1.23419.5 to 8.0.0-rc.2.23464.6 (parent: Microsoft.DotNet.Wpf.GitHub) --- eng/Version.Details.xml | 216 ++++++++++++++++++++-------------------- eng/Versions.props | 72 +++++++------- 2 files changed, 144 insertions(+), 144 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index e3a66484e..6ad3b36ae 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,153 +1,153 @@ - - https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 92959931a32a37a19d8e1b1684edc6db0857d7de + + https://github.com/dotnet/runtime + 412de0457f42c007eebf19c6e779c75a1699027a - - https://dev.azure.com/dnceng/internal/_git/dotnet-winforms - 5b91bede9ddc0b672b76010bdf18c2ac2b673221 + + https://github.com/dotnet/winforms + 83915d77fbdbf3e6a41df41fc018c20a5ec4c8c3 - + https://github.com/dotnet/wpf - 4f518f24a59505ba22405dd1f866cb160414c2e0 + 646aebe1ca98c8d880e4de3e10dcd36455bab22d - + https://github.com/dotnet/wpf - 4f518f24a59505ba22405dd1f866cb160414c2e0 + 646aebe1ca98c8d880e4de3e10dcd36455bab22d - - https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 92959931a32a37a19d8e1b1684edc6db0857d7de + + https://github.com/dotnet/runtime + 412de0457f42c007eebf19c6e779c75a1699027a - - https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 92959931a32a37a19d8e1b1684edc6db0857d7de + + https://github.com/dotnet/runtime + 412de0457f42c007eebf19c6e779c75a1699027a - - https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 92959931a32a37a19d8e1b1684edc6db0857d7de + + https://github.com/dotnet/runtime + 412de0457f42c007eebf19c6e779c75a1699027a - - https://dev.azure.com/dnceng/internal/_git/dotnet-winforms - 5b91bede9ddc0b672b76010bdf18c2ac2b673221 + + https://github.com/dotnet/winforms + 83915d77fbdbf3e6a41df41fc018c20a5ec4c8c3 - + https://github.com/dotnet/wpf - 4f518f24a59505ba22405dd1f866cb160414c2e0 + 646aebe1ca98c8d880e4de3e10dcd36455bab22d - - https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 92959931a32a37a19d8e1b1684edc6db0857d7de + + https://github.com/dotnet/runtime + 412de0457f42c007eebf19c6e779c75a1699027a - - https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 92959931a32a37a19d8e1b1684edc6db0857d7de + + https://github.com/dotnet/runtime + 412de0457f42c007eebf19c6e779c75a1699027a - - https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 92959931a32a37a19d8e1b1684edc6db0857d7de + + https://github.com/dotnet/runtime + 412de0457f42c007eebf19c6e779c75a1699027a - - https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 92959931a32a37a19d8e1b1684edc6db0857d7de + + https://github.com/dotnet/runtime + 412de0457f42c007eebf19c6e779c75a1699027a - - https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 92959931a32a37a19d8e1b1684edc6db0857d7de + + https://github.com/dotnet/runtime + 412de0457f42c007eebf19c6e779c75a1699027a - - https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 92959931a32a37a19d8e1b1684edc6db0857d7de + + https://github.com/dotnet/runtime + 412de0457f42c007eebf19c6e779c75a1699027a - - https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 92959931a32a37a19d8e1b1684edc6db0857d7de + + https://github.com/dotnet/runtime + 412de0457f42c007eebf19c6e779c75a1699027a - - https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 92959931a32a37a19d8e1b1684edc6db0857d7de + + https://github.com/dotnet/runtime + 412de0457f42c007eebf19c6e779c75a1699027a - - https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 92959931a32a37a19d8e1b1684edc6db0857d7de + + https://github.com/dotnet/runtime + 412de0457f42c007eebf19c6e779c75a1699027a - - https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 92959931a32a37a19d8e1b1684edc6db0857d7de + + https://github.com/dotnet/runtime + 412de0457f42c007eebf19c6e779c75a1699027a - - https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 92959931a32a37a19d8e1b1684edc6db0857d7de + + https://github.com/dotnet/runtime + 412de0457f42c007eebf19c6e779c75a1699027a - - https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 92959931a32a37a19d8e1b1684edc6db0857d7de + + https://github.com/dotnet/runtime + 412de0457f42c007eebf19c6e779c75a1699027a - - https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 92959931a32a37a19d8e1b1684edc6db0857d7de + + https://github.com/dotnet/runtime + 412de0457f42c007eebf19c6e779c75a1699027a - - https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 92959931a32a37a19d8e1b1684edc6db0857d7de + + https://github.com/dotnet/runtime + 412de0457f42c007eebf19c6e779c75a1699027a - - https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 92959931a32a37a19d8e1b1684edc6db0857d7de + + https://github.com/dotnet/runtime + 412de0457f42c007eebf19c6e779c75a1699027a - - https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 92959931a32a37a19d8e1b1684edc6db0857d7de + + https://github.com/dotnet/runtime + 412de0457f42c007eebf19c6e779c75a1699027a - - https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 92959931a32a37a19d8e1b1684edc6db0857d7de + + https://github.com/dotnet/runtime + 412de0457f42c007eebf19c6e779c75a1699027a - - https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 92959931a32a37a19d8e1b1684edc6db0857d7de + + https://github.com/dotnet/runtime + 412de0457f42c007eebf19c6e779c75a1699027a - - https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 92959931a32a37a19d8e1b1684edc6db0857d7de + + https://github.com/dotnet/runtime + 412de0457f42c007eebf19c6e779c75a1699027a - - https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 92959931a32a37a19d8e1b1684edc6db0857d7de + + https://github.com/dotnet/runtime + 412de0457f42c007eebf19c6e779c75a1699027a - - https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 92959931a32a37a19d8e1b1684edc6db0857d7de + + https://github.com/dotnet/runtime + 412de0457f42c007eebf19c6e779c75a1699027a - - https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 92959931a32a37a19d8e1b1684edc6db0857d7de + + https://github.com/dotnet/runtime + 412de0457f42c007eebf19c6e779c75a1699027a - - https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 92959931a32a37a19d8e1b1684edc6db0857d7de + + https://github.com/dotnet/runtime + 412de0457f42c007eebf19c6e779c75a1699027a - - https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 92959931a32a37a19d8e1b1684edc6db0857d7de + + https://github.com/dotnet/runtime + 412de0457f42c007eebf19c6e779c75a1699027a - - https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 92959931a32a37a19d8e1b1684edc6db0857d7de + + https://github.com/dotnet/runtime + 412de0457f42c007eebf19c6e779c75a1699027a - - https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 92959931a32a37a19d8e1b1684edc6db0857d7de + + https://github.com/dotnet/runtime + 412de0457f42c007eebf19c6e779c75a1699027a - - https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 92959931a32a37a19d8e1b1684edc6db0857d7de + + https://github.com/dotnet/runtime + 412de0457f42c007eebf19c6e779c75a1699027a - - https://dev.azure.com/dnceng/internal/_git/dotnet-winforms - 5b91bede9ddc0b672b76010bdf18c2ac2b673221 + + https://github.com/dotnet/winforms + 83915d77fbdbf3e6a41df41fc018c20a5ec4c8c3 diff --git a/eng/Versions.props b/eng/Versions.props index edb0d6767..e82216528 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -24,51 +24,51 @@ 6.2.4 - 8.0.0-rc.1.23419.4 - 8.0.0-rc.1.23419.4 - 8.0.0-rc.1.23419.4 - 8.0.0-rc.1.23419.4 + 8.0.0-rc.2.23463.13 + 8.0.0-rc.2.23463.13 + 8.0.0-rc.2.23463.13 + 8.0.0-rc.2.23463.13 5.0.0 - 8.0.0-rc.1.23419.4 - 8.0.0-rc.1.23419.4 - 8.0.0-rc.1.23419.4 - 8.0.0-rc.1.23419.4 - 8.0.0-rc.1.23419.4 - 8.0.0-rc.1.23419.4 - 8.0.0-rc.1.23419.4 - 8.0.0-rc.1.23419.4 - 8.0.0-rc.1.23419.4 - 8.0.0-rc.1.23419.4 - 8.0.0-rc.1.23419.4 - 8.0.0-rc.1.23419.4 + 8.0.0-rc.2.23463.13 + 8.0.0-rc.2.23463.13 + 8.0.0-rc.2.23463.13 + 8.0.0-rc.2.23463.13 + 8.0.0-rc.2.23463.13 + 8.0.0-rc.2.23463.13 + 8.0.0-rc.2.23463.13 + 8.0.0-rc.2.23463.13 + 8.0.0-rc.2.23463.13 + 8.0.0-rc.2.23463.13 + 8.0.0-rc.2.23463.13 + 8.0.0-rc.2.23463.13 5.0.0 - 8.0.0-rc.1.23419.4 + 8.0.0-rc.2.23463.13 5.0.0 - 8.0.0-rc.1.23419.4 - 8.0.0-rc.1.23419.4 - 8.0.0-rc.1.23419.4 - 8.0.0-rc.1.23419.4 + 8.0.0-rc.2.23463.13 + 8.0.0-rc.2.23463.13 + 8.0.0-rc.2.23463.13 + 8.0.0-rc.2.23463.13 6.0.0 5.0.0 - 8.0.0-rc.1.23419.4 - 8.0.0-rc.1.23419.4 - 8.0.0-rc.1.23419.4 - 8.0.0-rc.1.23419.4 + 8.0.0-rc.2.23463.13 + 8.0.0-rc.2.23463.13 + 8.0.0-rc.2.23463.13 + 8.0.0-rc.2.23463.13 5.0.0 - 8.0.0-rc.1.23419.4 - 8.0.0-rc.1.23419.4 - 8.0.0-rc.1.23419.4 - 8.0.0-rc.1.23419.4 - 8.0.0-rc.1.23419.4 - 8.0.0-rc.1.23419.4 + 8.0.0-rc.2.23463.13 + 8.0.0-rc.2.23463.13 + 8.0.0-rc.2.23463.13 + 8.0.0-rc.2.23463.13 + 8.0.0-rc.2.23463.13 + 8.0.0-rc.2.23463.13 4.10.0 - 8.0.0-rc.1.23419.5 - 8.0.0-rc.1.23419.5 - 8.0.0-rc.1.23419.5 + 8.0.0-rc.2.23464.6 + 8.0.0-rc.2.23464.6 + 8.0.0-rc.2.23464.6 - 8.0.0-rc.2.23462.7 - 8.0.0-rc.2.23462.7 + 8.0.0-rc.2.23464.5 + 8.0.0-rc.2.23464.5 From 58a6f8ddd8879fdc9b70023dc55c5d4ae3047f49 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Fri, 15 Sep 2023 11:17:15 -0700 Subject: [PATCH 046/222] [release/8.0] Update dependencies from dotnet/wpf (#3854) Update dependencies from https://github.com/dotnet/wpf build 20230915.1 Microsoft.DotNet.Wpf.GitHub , Microsoft.DotNet.Wpf.ProjectTemplates , Microsoft.NET.Sdk.WindowsDesktop From Version 8.0.0-rc.2.23464.5 -> To Version 8.0.0-rc.2.23465.1 Dependency coherency updates Microsoft.Private.Winforms,Microsoft.Internal.Runtime.WindowsDesktop.Transport,Microsoft.Private.Winforms,Microsoft.NETCore.App.Ref,Microsoft.Private.Winforms,VS.Redist.Common.NetCore.SharedFramework.x64.8.0,Microsoft.Private.Winforms,Microsoft.NETCore.App.Runtime.win-x64,Microsoft.Dotnet.WinForms.ProjectTemplates,Microsoft.Private.Winforms,Microsoft.Win32.Registry.AccessControl,Microsoft.Private.Winforms,Microsoft.Win32.SystemEvents,Microsoft.Private.Winforms,System.CodeDom,Microsoft.Private.Winforms,System.ComponentModel.Composition,Microsoft.Private.Winforms,System.Configuration.ConfigurationManager,Microsoft.Private.Winforms,System.Data.Odbc,Microsoft.Private.Winforms,System.Data.OleDb,Microsoft.Private.Winforms,System.Diagnostics.EventLog,Microsoft.Private.Winforms,System.Diagnostics.PerformanceCounter,Microsoft.Private.Winforms,System.DirectoryServices.AccountManagement,Microsoft.Private.Winforms,System.DirectoryServices.Protocols,Microsoft.Private.Winforms,System.DirectoryServices,Microsoft.Private.Winforms,System.IO.Packaging,Microsoft.Private.Winforms,System.IO.Ports,Microsoft.Private.Winforms,System.Management,Microsoft.Private.Winforms,System.Reflection.Context,Microsoft.Private.Winforms,System.Runtime.Caching,Microsoft.Private.Winforms,System.Security.Cryptography.Pkcs,Microsoft.Private.Winforms,System.Security.Cryptography.ProtectedData,Microsoft.Private.Winforms,System.Security.Cryptography.Xml,Microsoft.Private.Winforms,System.Security.Permissions,Microsoft.Private.Winforms,System.ServiceModel.Syndication,Microsoft.Private.Winforms,System.ServiceProcess.ServiceController,Microsoft.Private.Winforms,System.Speech,Microsoft.Private.Winforms,System.Text.Encoding.CodePages,Microsoft.Private.Winforms,System.Threading.AccessControl,Microsoft.Private.Winforms,System.ComponentModel.Composition.Registration,System.Drawing.Common From Version 8.0.0-rc.2.23464.6 -> To Version 8.0.0-rc.2.23465.2 (parent: Microsoft.DotNet.Wpf.GitHub Co-authored-by: dotnet-maestro[bot] --- eng/Version.Details.xml | 148 ++++++++++++++++++++-------------------- eng/Versions.props | 72 +++++++++---------- 2 files changed, 110 insertions(+), 110 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 6ad3b36ae..a9615e1d0 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,153 +1,153 @@ - + https://github.com/dotnet/runtime - 412de0457f42c007eebf19c6e779c75a1699027a + 9cdbc87dadbf358206f20f17fed005cdcb253452 - + https://github.com/dotnet/winforms - 83915d77fbdbf3e6a41df41fc018c20a5ec4c8c3 + 0c5eb6c55e7bd273375c3e60c2e6ea8432a54058 - + https://github.com/dotnet/wpf - 646aebe1ca98c8d880e4de3e10dcd36455bab22d + 0585425b53369e9a0cdac10848f079590eb513ff - + https://github.com/dotnet/wpf - 646aebe1ca98c8d880e4de3e10dcd36455bab22d + 0585425b53369e9a0cdac10848f079590eb513ff - + https://github.com/dotnet/runtime - 412de0457f42c007eebf19c6e779c75a1699027a + 9cdbc87dadbf358206f20f17fed005cdcb253452 - + https://github.com/dotnet/runtime - 412de0457f42c007eebf19c6e779c75a1699027a + 9cdbc87dadbf358206f20f17fed005cdcb253452 - + https://github.com/dotnet/runtime - 412de0457f42c007eebf19c6e779c75a1699027a + 9cdbc87dadbf358206f20f17fed005cdcb253452 - + https://github.com/dotnet/winforms - 83915d77fbdbf3e6a41df41fc018c20a5ec4c8c3 + 0c5eb6c55e7bd273375c3e60c2e6ea8432a54058 - + https://github.com/dotnet/wpf - 646aebe1ca98c8d880e4de3e10dcd36455bab22d + 0585425b53369e9a0cdac10848f079590eb513ff - + https://github.com/dotnet/runtime - 412de0457f42c007eebf19c6e779c75a1699027a + 9cdbc87dadbf358206f20f17fed005cdcb253452 - + https://github.com/dotnet/runtime - 412de0457f42c007eebf19c6e779c75a1699027a + 9cdbc87dadbf358206f20f17fed005cdcb253452 - + https://github.com/dotnet/runtime - 412de0457f42c007eebf19c6e779c75a1699027a + 9cdbc87dadbf358206f20f17fed005cdcb253452 - + https://github.com/dotnet/runtime - 412de0457f42c007eebf19c6e779c75a1699027a + 9cdbc87dadbf358206f20f17fed005cdcb253452 - + https://github.com/dotnet/runtime - 412de0457f42c007eebf19c6e779c75a1699027a + 9cdbc87dadbf358206f20f17fed005cdcb253452 - + https://github.com/dotnet/runtime - 412de0457f42c007eebf19c6e779c75a1699027a + 9cdbc87dadbf358206f20f17fed005cdcb253452 - + https://github.com/dotnet/runtime - 412de0457f42c007eebf19c6e779c75a1699027a + 9cdbc87dadbf358206f20f17fed005cdcb253452 - + https://github.com/dotnet/runtime - 412de0457f42c007eebf19c6e779c75a1699027a + 9cdbc87dadbf358206f20f17fed005cdcb253452 - + https://github.com/dotnet/runtime - 412de0457f42c007eebf19c6e779c75a1699027a + 9cdbc87dadbf358206f20f17fed005cdcb253452 - + https://github.com/dotnet/runtime - 412de0457f42c007eebf19c6e779c75a1699027a + 9cdbc87dadbf358206f20f17fed005cdcb253452 - + https://github.com/dotnet/runtime - 412de0457f42c007eebf19c6e779c75a1699027a + 9cdbc87dadbf358206f20f17fed005cdcb253452 - + https://github.com/dotnet/runtime - 412de0457f42c007eebf19c6e779c75a1699027a + 9cdbc87dadbf358206f20f17fed005cdcb253452 - + https://github.com/dotnet/runtime - 412de0457f42c007eebf19c6e779c75a1699027a + 9cdbc87dadbf358206f20f17fed005cdcb253452 - + https://github.com/dotnet/runtime - 412de0457f42c007eebf19c6e779c75a1699027a + 9cdbc87dadbf358206f20f17fed005cdcb253452 - + https://github.com/dotnet/runtime - 412de0457f42c007eebf19c6e779c75a1699027a + 9cdbc87dadbf358206f20f17fed005cdcb253452 - + https://github.com/dotnet/runtime - 412de0457f42c007eebf19c6e779c75a1699027a + 9cdbc87dadbf358206f20f17fed005cdcb253452 - + https://github.com/dotnet/runtime - 412de0457f42c007eebf19c6e779c75a1699027a + 9cdbc87dadbf358206f20f17fed005cdcb253452 - + https://github.com/dotnet/runtime - 412de0457f42c007eebf19c6e779c75a1699027a + 9cdbc87dadbf358206f20f17fed005cdcb253452 - + https://github.com/dotnet/runtime - 412de0457f42c007eebf19c6e779c75a1699027a + 9cdbc87dadbf358206f20f17fed005cdcb253452 - + https://github.com/dotnet/runtime - 412de0457f42c007eebf19c6e779c75a1699027a + 9cdbc87dadbf358206f20f17fed005cdcb253452 - + https://github.com/dotnet/runtime - 412de0457f42c007eebf19c6e779c75a1699027a + 9cdbc87dadbf358206f20f17fed005cdcb253452 - + https://github.com/dotnet/runtime - 412de0457f42c007eebf19c6e779c75a1699027a + 9cdbc87dadbf358206f20f17fed005cdcb253452 - + https://github.com/dotnet/runtime - 412de0457f42c007eebf19c6e779c75a1699027a + 9cdbc87dadbf358206f20f17fed005cdcb253452 - + https://github.com/dotnet/runtime - 412de0457f42c007eebf19c6e779c75a1699027a + 9cdbc87dadbf358206f20f17fed005cdcb253452 - + https://github.com/dotnet/runtime - 412de0457f42c007eebf19c6e779c75a1699027a + 9cdbc87dadbf358206f20f17fed005cdcb253452 - + https://github.com/dotnet/runtime - 412de0457f42c007eebf19c6e779c75a1699027a + 9cdbc87dadbf358206f20f17fed005cdcb253452 - + https://github.com/dotnet/runtime - 412de0457f42c007eebf19c6e779c75a1699027a + 9cdbc87dadbf358206f20f17fed005cdcb253452 - + https://github.com/dotnet/winforms - 83915d77fbdbf3e6a41df41fc018c20a5ec4c8c3 + 0c5eb6c55e7bd273375c3e60c2e6ea8432a54058 diff --git a/eng/Versions.props b/eng/Versions.props index e82216528..f18453834 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -24,51 +24,51 @@ 6.2.4 - 8.0.0-rc.2.23463.13 - 8.0.0-rc.2.23463.13 - 8.0.0-rc.2.23463.13 - 8.0.0-rc.2.23463.13 + 8.0.0-rc.2.23464.16 + 8.0.0-rc.2.23464.16 + 8.0.0-rc.2.23464.16 + 8.0.0-rc.2.23464.16 5.0.0 - 8.0.0-rc.2.23463.13 - 8.0.0-rc.2.23463.13 - 8.0.0-rc.2.23463.13 - 8.0.0-rc.2.23463.13 - 8.0.0-rc.2.23463.13 - 8.0.0-rc.2.23463.13 - 8.0.0-rc.2.23463.13 - 8.0.0-rc.2.23463.13 - 8.0.0-rc.2.23463.13 - 8.0.0-rc.2.23463.13 - 8.0.0-rc.2.23463.13 - 8.0.0-rc.2.23463.13 + 8.0.0-rc.2.23464.16 + 8.0.0-rc.2.23464.16 + 8.0.0-rc.2.23464.16 + 8.0.0-rc.2.23464.16 + 8.0.0-rc.2.23464.16 + 8.0.0-rc.2.23464.16 + 8.0.0-rc.2.23464.16 + 8.0.0-rc.2.23464.16 + 8.0.0-rc.2.23464.16 + 8.0.0-rc.2.23464.16 + 8.0.0-rc.2.23464.16 + 8.0.0-rc.2.23464.16 5.0.0 - 8.0.0-rc.2.23463.13 + 8.0.0-rc.2.23464.16 5.0.0 - 8.0.0-rc.2.23463.13 - 8.0.0-rc.2.23463.13 - 8.0.0-rc.2.23463.13 - 8.0.0-rc.2.23463.13 + 8.0.0-rc.2.23464.16 + 8.0.0-rc.2.23464.16 + 8.0.0-rc.2.23464.16 + 8.0.0-rc.2.23464.16 6.0.0 5.0.0 - 8.0.0-rc.2.23463.13 - 8.0.0-rc.2.23463.13 - 8.0.0-rc.2.23463.13 - 8.0.0-rc.2.23463.13 + 8.0.0-rc.2.23464.16 + 8.0.0-rc.2.23464.16 + 8.0.0-rc.2.23464.16 + 8.0.0-rc.2.23464.16 5.0.0 - 8.0.0-rc.2.23463.13 - 8.0.0-rc.2.23463.13 - 8.0.0-rc.2.23463.13 - 8.0.0-rc.2.23463.13 - 8.0.0-rc.2.23463.13 - 8.0.0-rc.2.23463.13 + 8.0.0-rc.2.23464.16 + 8.0.0-rc.2.23464.16 + 8.0.0-rc.2.23464.16 + 8.0.0-rc.2.23464.16 + 8.0.0-rc.2.23464.16 + 8.0.0-rc.2.23464.16 4.10.0 - 8.0.0-rc.2.23464.6 - 8.0.0-rc.2.23464.6 - 8.0.0-rc.2.23464.6 + 8.0.0-rc.2.23465.2 + 8.0.0-rc.2.23465.2 + 8.0.0-rc.2.23465.2 - 8.0.0-rc.2.23464.5 - 8.0.0-rc.2.23464.5 + 8.0.0-rc.2.23465.1 + 8.0.0-rc.2.23465.1 From a566d9e558dd374669cf588c9be21810781b4c95 Mon Sep 17 00:00:00 2001 From: Devendar Reddy Adulla Date: Fri, 15 Sep 2023 14:45:05 -0700 Subject: [PATCH 047/222] Update trim-assets-version.ps1 remove arcade change --- eng/common/sdl/trim-assets-version.ps1 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/eng/common/sdl/trim-assets-version.ps1 b/eng/common/sdl/trim-assets-version.ps1 index d8cfec910..0daa2a9e9 100644 --- a/eng/common/sdl/trim-assets-version.ps1 +++ b/eng/common/sdl/trim-assets-version.ps1 @@ -25,7 +25,7 @@ function Install-VersionTools-Cli { Write-Host "Installing the package '$CliToolName' with a version of '$version' ..." $feed = "https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet-eng/nuget/v3/index.json" - $argumentList = @("tool", "install", "--local", "$CliToolName", "--add-source $feed", "--no-cache", "--version $Version") + $argumentList = @("tool", "install", "--local", "$CliToolName", "--add-source $feed", "--no-cache", "--version $Version", "--create-manifest-if-needed") Start-Process "$dotnet" -Verbose -ArgumentList $argumentList -NoNewWindow -Wait } @@ -72,4 +72,4 @@ catch { Write-Host $_ Write-PipelineTelemetryError -Force -Category 'Sdl' -Message $_ ExitWithExitCode 1 -} \ No newline at end of file +} From 3bccbaa30c5f7d6e464311b01265994920a5a8bf Mon Sep 17 00:00:00 2001 From: Devendar Reddy Adulla Date: Fri, 15 Sep 2023 14:45:51 -0700 Subject: [PATCH 048/222] Update trim-assets-version.ps1 From 116821454672913952976f17ce10d0685894357d Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Mon, 18 Sep 2023 19:02:36 -0700 Subject: [PATCH 049/222] [release/8.0] Update dependencies from dotnet/wpf (#3855) * Update dependencies from https://github.com/dotnet/wpf build 20230918.1 Microsoft.DotNet.Wpf.GitHub , Microsoft.DotNet.Wpf.ProjectTemplates , Microsoft.NET.Sdk.WindowsDesktop From Version 8.0.0-rc.2.23465.1 -> To Version 8.0.0-rc.2.23468.1 Dependency coherency updates Microsoft.Private.Winforms,Microsoft.Internal.Runtime.WindowsDesktop.Transport,Microsoft.Private.Winforms,Microsoft.NETCore.App.Ref,Microsoft.Private.Winforms,VS.Redist.Common.NetCore.SharedFramework.x64.8.0,Microsoft.Private.Winforms,Microsoft.NETCore.App.Runtime.win-x64,Microsoft.Dotnet.WinForms.ProjectTemplates,Microsoft.Private.Winforms,Microsoft.Win32.Registry.AccessControl,Microsoft.Private.Winforms,Microsoft.Win32.SystemEvents,Microsoft.Private.Winforms,System.CodeDom,Microsoft.Private.Winforms,System.ComponentModel.Composition,Microsoft.Private.Winforms,System.Configuration.ConfigurationManager,Microsoft.Private.Winforms,System.Data.Odbc,Microsoft.Private.Winforms,System.Data.OleDb,Microsoft.Private.Winforms,System.Diagnostics.EventLog,Microsoft.Private.Winforms,System.Diagnostics.PerformanceCounter,Microsoft.Private.Winforms,System.DirectoryServices.AccountManagement,Microsoft.Private.Winforms,System.DirectoryServices.Protocols,Microsoft.Private.Winforms,System.DirectoryServices,Microsoft.Private.Winforms,System.IO.Packaging,Microsoft.Private.Winforms,System.IO.Ports,Microsoft.Private.Winforms,System.Management,Microsoft.Private.Winforms,System.Reflection.Context,Microsoft.Private.Winforms,System.Runtime.Caching,Microsoft.Private.Winforms,System.Security.Cryptography.Pkcs,Microsoft.Private.Winforms,System.Security.Cryptography.ProtectedData,Microsoft.Private.Winforms,System.Security.Cryptography.Xml,Microsoft.Private.Winforms,System.Security.Permissions,Microsoft.Private.Winforms,System.ServiceModel.Syndication,Microsoft.Private.Winforms,System.ServiceProcess.ServiceController,Microsoft.Private.Winforms,System.Speech,Microsoft.Private.Winforms,System.Text.Encoding.CodePages,Microsoft.Private.Winforms,System.Threading.AccessControl,Microsoft.Private.Winforms,System.ComponentModel.Composition.Registration,System.Drawing.Common From Version 8.0.0-rc.2.23465.2 -> To Version 8.0.0-rc.2.23468.3 (parent: Microsoft.DotNet.Wpf.GitHub * Update dependencies from https://github.com/dotnet/wpf build 20230918.2 Microsoft.DotNet.Wpf.GitHub , Microsoft.DotNet.Wpf.ProjectTemplates , Microsoft.NET.Sdk.WindowsDesktop From Version 8.0.0-rc.2.23465.1 -> To Version 8.0.0-rc.2.23468.2 Dependency coherency updates Microsoft.Private.Winforms,Microsoft.Internal.Runtime.WindowsDesktop.Transport,Microsoft.Private.Winforms,Microsoft.NETCore.App.Ref,Microsoft.Private.Winforms,VS.Redist.Common.NetCore.SharedFramework.x64.8.0,Microsoft.Private.Winforms,Microsoft.NETCore.App.Runtime.win-x64,Microsoft.Dotnet.WinForms.ProjectTemplates,Microsoft.Private.Winforms,Microsoft.Win32.Registry.AccessControl,Microsoft.Private.Winforms,Microsoft.Win32.SystemEvents,Microsoft.Private.Winforms,System.CodeDom,Microsoft.Private.Winforms,System.ComponentModel.Composition,Microsoft.Private.Winforms,System.Configuration.ConfigurationManager,Microsoft.Private.Winforms,System.Data.Odbc,Microsoft.Private.Winforms,System.Data.OleDb,Microsoft.Private.Winforms,System.Diagnostics.EventLog,Microsoft.Private.Winforms,System.Diagnostics.PerformanceCounter,Microsoft.Private.Winforms,System.DirectoryServices.AccountManagement,Microsoft.Private.Winforms,System.DirectoryServices.Protocols,Microsoft.Private.Winforms,System.DirectoryServices,Microsoft.Private.Winforms,System.IO.Packaging,Microsoft.Private.Winforms,System.IO.Ports,Microsoft.Private.Winforms,System.Management,Microsoft.Private.Winforms,System.Reflection.Context,Microsoft.Private.Winforms,System.Runtime.Caching,Microsoft.Private.Winforms,System.Security.Cryptography.Pkcs,Microsoft.Private.Winforms,System.Security.Cryptography.ProtectedData,Microsoft.Private.Winforms,System.Security.Cryptography.Xml,Microsoft.Private.Winforms,System.Security.Permissions,Microsoft.Private.Winforms,System.ServiceModel.Syndication,Microsoft.Private.Winforms,System.ServiceProcess.ServiceController,Microsoft.Private.Winforms,System.Speech,Microsoft.Private.Winforms,System.Text.Encoding.CodePages,Microsoft.Private.Winforms,System.Threading.AccessControl,Microsoft.Private.Winforms,System.ComponentModel.Composition.Registration,System.Drawing.Common From Version 8.0.0-rc.2.23465.2 -> To Version 8.0.0-rc.2.23468.7 (parent: Microsoft.DotNet.Wpf.GitHub --------- Co-authored-by: dotnet-maestro[bot] --- eng/Version.Details.xml | 148 ++++++++++++++++++++-------------------- eng/Versions.props | 72 +++++++++---------- 2 files changed, 110 insertions(+), 110 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index a9615e1d0..cc1bad59b 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,153 +1,153 @@ - + https://github.com/dotnet/runtime - 9cdbc87dadbf358206f20f17fed005cdcb253452 + 287c10d2539d47268a1083c4d533cf84124900cf - + https://github.com/dotnet/winforms - 0c5eb6c55e7bd273375c3e60c2e6ea8432a54058 + acf62113e20e57628e1330d0e8025bf64220073e - + https://github.com/dotnet/wpf - 0585425b53369e9a0cdac10848f079590eb513ff + b6e229ca91e46c85a8c4aae7100181581e10b1fe - + https://github.com/dotnet/wpf - 0585425b53369e9a0cdac10848f079590eb513ff + b6e229ca91e46c85a8c4aae7100181581e10b1fe - + https://github.com/dotnet/runtime - 9cdbc87dadbf358206f20f17fed005cdcb253452 + 287c10d2539d47268a1083c4d533cf84124900cf - + https://github.com/dotnet/runtime - 9cdbc87dadbf358206f20f17fed005cdcb253452 + 287c10d2539d47268a1083c4d533cf84124900cf - + https://github.com/dotnet/runtime - 9cdbc87dadbf358206f20f17fed005cdcb253452 + 287c10d2539d47268a1083c4d533cf84124900cf - + https://github.com/dotnet/winforms - 0c5eb6c55e7bd273375c3e60c2e6ea8432a54058 + acf62113e20e57628e1330d0e8025bf64220073e - + https://github.com/dotnet/wpf - 0585425b53369e9a0cdac10848f079590eb513ff + b6e229ca91e46c85a8c4aae7100181581e10b1fe - + https://github.com/dotnet/runtime - 9cdbc87dadbf358206f20f17fed005cdcb253452 + 287c10d2539d47268a1083c4d533cf84124900cf - + https://github.com/dotnet/runtime - 9cdbc87dadbf358206f20f17fed005cdcb253452 + 287c10d2539d47268a1083c4d533cf84124900cf - + https://github.com/dotnet/runtime - 9cdbc87dadbf358206f20f17fed005cdcb253452 + 287c10d2539d47268a1083c4d533cf84124900cf - + https://github.com/dotnet/runtime - 9cdbc87dadbf358206f20f17fed005cdcb253452 + 287c10d2539d47268a1083c4d533cf84124900cf - + https://github.com/dotnet/runtime - 9cdbc87dadbf358206f20f17fed005cdcb253452 + 287c10d2539d47268a1083c4d533cf84124900cf - + https://github.com/dotnet/runtime - 9cdbc87dadbf358206f20f17fed005cdcb253452 + 287c10d2539d47268a1083c4d533cf84124900cf - + https://github.com/dotnet/runtime - 9cdbc87dadbf358206f20f17fed005cdcb253452 + 287c10d2539d47268a1083c4d533cf84124900cf - + https://github.com/dotnet/runtime - 9cdbc87dadbf358206f20f17fed005cdcb253452 + 287c10d2539d47268a1083c4d533cf84124900cf - + https://github.com/dotnet/runtime - 9cdbc87dadbf358206f20f17fed005cdcb253452 + 287c10d2539d47268a1083c4d533cf84124900cf - + https://github.com/dotnet/runtime - 9cdbc87dadbf358206f20f17fed005cdcb253452 + 287c10d2539d47268a1083c4d533cf84124900cf - + https://github.com/dotnet/runtime - 9cdbc87dadbf358206f20f17fed005cdcb253452 + 287c10d2539d47268a1083c4d533cf84124900cf - + https://github.com/dotnet/runtime - 9cdbc87dadbf358206f20f17fed005cdcb253452 + 287c10d2539d47268a1083c4d533cf84124900cf - + https://github.com/dotnet/runtime - 9cdbc87dadbf358206f20f17fed005cdcb253452 + 287c10d2539d47268a1083c4d533cf84124900cf - + https://github.com/dotnet/runtime - 9cdbc87dadbf358206f20f17fed005cdcb253452 + 287c10d2539d47268a1083c4d533cf84124900cf - + https://github.com/dotnet/runtime - 9cdbc87dadbf358206f20f17fed005cdcb253452 + 287c10d2539d47268a1083c4d533cf84124900cf - + https://github.com/dotnet/runtime - 9cdbc87dadbf358206f20f17fed005cdcb253452 + 287c10d2539d47268a1083c4d533cf84124900cf - + https://github.com/dotnet/runtime - 9cdbc87dadbf358206f20f17fed005cdcb253452 + 287c10d2539d47268a1083c4d533cf84124900cf - + https://github.com/dotnet/runtime - 9cdbc87dadbf358206f20f17fed005cdcb253452 + 287c10d2539d47268a1083c4d533cf84124900cf - + https://github.com/dotnet/runtime - 9cdbc87dadbf358206f20f17fed005cdcb253452 + 287c10d2539d47268a1083c4d533cf84124900cf - + https://github.com/dotnet/runtime - 9cdbc87dadbf358206f20f17fed005cdcb253452 + 287c10d2539d47268a1083c4d533cf84124900cf - + https://github.com/dotnet/runtime - 9cdbc87dadbf358206f20f17fed005cdcb253452 + 287c10d2539d47268a1083c4d533cf84124900cf - + https://github.com/dotnet/runtime - 9cdbc87dadbf358206f20f17fed005cdcb253452 + 287c10d2539d47268a1083c4d533cf84124900cf - + https://github.com/dotnet/runtime - 9cdbc87dadbf358206f20f17fed005cdcb253452 + 287c10d2539d47268a1083c4d533cf84124900cf - + https://github.com/dotnet/runtime - 9cdbc87dadbf358206f20f17fed005cdcb253452 + 287c10d2539d47268a1083c4d533cf84124900cf - + https://github.com/dotnet/runtime - 9cdbc87dadbf358206f20f17fed005cdcb253452 + 287c10d2539d47268a1083c4d533cf84124900cf - + https://github.com/dotnet/runtime - 9cdbc87dadbf358206f20f17fed005cdcb253452 + 287c10d2539d47268a1083c4d533cf84124900cf - + https://github.com/dotnet/runtime - 9cdbc87dadbf358206f20f17fed005cdcb253452 + 287c10d2539d47268a1083c4d533cf84124900cf - + https://github.com/dotnet/winforms - 0c5eb6c55e7bd273375c3e60c2e6ea8432a54058 + acf62113e20e57628e1330d0e8025bf64220073e diff --git a/eng/Versions.props b/eng/Versions.props index f18453834..6f768c638 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -24,51 +24,51 @@ 6.2.4 - 8.0.0-rc.2.23464.16 - 8.0.0-rc.2.23464.16 - 8.0.0-rc.2.23464.16 - 8.0.0-rc.2.23464.16 + 8.0.0-rc.2.23466.4 + 8.0.0-rc.2.23466.4 + 8.0.0-rc.2.23466.4 + 8.0.0-rc.2.23466.4 5.0.0 - 8.0.0-rc.2.23464.16 - 8.0.0-rc.2.23464.16 - 8.0.0-rc.2.23464.16 - 8.0.0-rc.2.23464.16 - 8.0.0-rc.2.23464.16 - 8.0.0-rc.2.23464.16 - 8.0.0-rc.2.23464.16 - 8.0.0-rc.2.23464.16 - 8.0.0-rc.2.23464.16 - 8.0.0-rc.2.23464.16 - 8.0.0-rc.2.23464.16 - 8.0.0-rc.2.23464.16 + 8.0.0-rc.2.23466.4 + 8.0.0-rc.2.23466.4 + 8.0.0-rc.2.23466.4 + 8.0.0-rc.2.23466.4 + 8.0.0-rc.2.23466.4 + 8.0.0-rc.2.23466.4 + 8.0.0-rc.2.23466.4 + 8.0.0-rc.2.23466.4 + 8.0.0-rc.2.23466.4 + 8.0.0-rc.2.23466.4 + 8.0.0-rc.2.23466.4 + 8.0.0-rc.2.23466.4 5.0.0 - 8.0.0-rc.2.23464.16 + 8.0.0-rc.2.23466.4 5.0.0 - 8.0.0-rc.2.23464.16 - 8.0.0-rc.2.23464.16 - 8.0.0-rc.2.23464.16 - 8.0.0-rc.2.23464.16 + 8.0.0-rc.2.23466.4 + 8.0.0-rc.2.23466.4 + 8.0.0-rc.2.23466.4 + 8.0.0-rc.2.23466.4 6.0.0 5.0.0 - 8.0.0-rc.2.23464.16 - 8.0.0-rc.2.23464.16 - 8.0.0-rc.2.23464.16 - 8.0.0-rc.2.23464.16 + 8.0.0-rc.2.23466.4 + 8.0.0-rc.2.23466.4 + 8.0.0-rc.2.23466.4 + 8.0.0-rc.2.23466.4 5.0.0 - 8.0.0-rc.2.23464.16 - 8.0.0-rc.2.23464.16 - 8.0.0-rc.2.23464.16 - 8.0.0-rc.2.23464.16 - 8.0.0-rc.2.23464.16 - 8.0.0-rc.2.23464.16 + 8.0.0-rc.2.23466.4 + 8.0.0-rc.2.23466.4 + 8.0.0-rc.2.23466.4 + 8.0.0-rc.2.23466.4 + 8.0.0-rc.2.23466.4 + 8.0.0-rc.2.23466.4 4.10.0 - 8.0.0-rc.2.23465.2 - 8.0.0-rc.2.23465.2 - 8.0.0-rc.2.23465.2 + 8.0.0-rc.2.23468.7 + 8.0.0-rc.2.23468.7 + 8.0.0-rc.2.23468.7 - 8.0.0-rc.2.23465.1 - 8.0.0-rc.2.23465.1 + 8.0.0-rc.2.23468.2 + 8.0.0-rc.2.23468.2 From 7456136bfb882b26bb4a5f9677b7a29f124ca21c Mon Sep 17 00:00:00 2001 From: Devendar Reddy Adulla Date: Mon, 18 Sep 2023 20:09:35 -0700 Subject: [PATCH 050/222] Update branding to RTM in Versions.props (#3856) Update branding to rtm in Versions.props --- eng/Versions.props | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/eng/Versions.props b/eng/Versions.props index 6f768c638..2c04c1d8f 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -3,8 +3,8 @@ 8 0 0 - rc - 2 + rtm + false release From 4ed65d6624b13fdf801fb85804f807429bc7ce20 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Tue, 19 Sep 2023 10:08:10 -0700 Subject: [PATCH 051/222] [release/8.0] Update dependencies from dotnet/wpf (#3857) * Update dependencies from https://github.com/dotnet/wpf build 20230918.3 Microsoft.DotNet.Wpf.GitHub , Microsoft.DotNet.Wpf.ProjectTemplates , Microsoft.NET.Sdk.WindowsDesktop From Version 8.0.0-rc.2.23468.2 -> To Version 8.0.0-rc.2.23468.3 Dependency coherency updates Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Dotnet.WinForms.ProjectTemplates,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,System.Drawing.Common From Version 8.0.0-rc.2.23468.7 -> To Version 8.0.0-rc.2.23468.11 (parent: Microsoft.DotNet.Wpf.GitHub * Update dependencies from https://github.com/dotnet/wpf build 20230918.4 Microsoft.DotNet.Wpf.GitHub , Microsoft.DotNet.Wpf.ProjectTemplates , Microsoft.NET.Sdk.WindowsDesktop From Version 8.0.0-rc.2.23468.2 -> To Version 8.0.0-rc.2.23468.4 Dependency coherency updates Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Dotnet.WinForms.ProjectTemplates,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,System.Drawing.Common From Version 8.0.0-rc.2.23468.7 -> To Version 8.0.0-rc.2.23468.13 (parent: Microsoft.DotNet.Wpf.GitHub * Update dependencies from https://github.com/dotnet/wpf build 20230918.5 Microsoft.DotNet.Wpf.GitHub , Microsoft.DotNet.Wpf.ProjectTemplates , Microsoft.NET.Sdk.WindowsDesktop From Version 8.0.0-rc.2.23468.2 -> To Version 8.0.0-rc.2.23468.5 Dependency coherency updates Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Dotnet.WinForms.ProjectTemplates,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,System.Drawing.Common From Version 8.0.0-rc.2.23468.7 -> To Version 8.0.0-rc.2.23468.13 (parent: Microsoft.DotNet.Wpf.GitHub * Update dependencies from https://github.com/dotnet/wpf build 20230919.2 Microsoft.DotNet.Wpf.GitHub , Microsoft.DotNet.Wpf.ProjectTemplates , Microsoft.NET.Sdk.WindowsDesktop From Version 8.0.0-rc.2.23468.2 -> To Version 8.0.0-rtm.23469.2 Dependency coherency updates Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Dotnet.WinForms.ProjectTemplates,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,System.Drawing.Common From Version 8.0.0-rc.2.23468.7 -> To Version 8.0.0-rc.2.23468.13 (parent: Microsoft.DotNet.Wpf.GitHub * Update dependencies from https://github.com/dotnet/wpf build 20230919.3 Microsoft.DotNet.Wpf.GitHub , Microsoft.DotNet.Wpf.ProjectTemplates , Microsoft.NET.Sdk.WindowsDesktop From Version 8.0.0-rc.2.23468.2 -> To Version 8.0.0-rtm.23469.3 Dependency coherency updates Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Dotnet.WinForms.ProjectTemplates,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,System.Drawing.Common From Version 8.0.0-rc.2.23468.7 -> To Version 8.0.0-rc.2.23468.13 (parent: Microsoft.DotNet.Wpf.GitHub --------- Co-authored-by: dotnet-maestro[bot] --- eng/Version.Details.xml | 24 ++++++++++++------------ eng/Versions.props | 13 +++++++------ 2 files changed, 19 insertions(+), 18 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index cc1bad59b..53237c992 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -5,17 +5,17 @@ https://github.com/dotnet/runtime 287c10d2539d47268a1083c4d533cf84124900cf - + https://github.com/dotnet/winforms - acf62113e20e57628e1330d0e8025bf64220073e + 9fe6e141ce98c9a7b2940d5743b165982aa242b5 - + https://github.com/dotnet/wpf - b6e229ca91e46c85a8c4aae7100181581e10b1fe + ecefb59b844ce9b63db0cb0c53efa48466f04ffc - + https://github.com/dotnet/wpf - b6e229ca91e46c85a8c4aae7100181581e10b1fe + ecefb59b844ce9b63db0cb0c53efa48466f04ffc https://github.com/dotnet/runtime @@ -29,13 +29,13 @@ https://github.com/dotnet/runtime 287c10d2539d47268a1083c4d533cf84124900cf - + https://github.com/dotnet/winforms - acf62113e20e57628e1330d0e8025bf64220073e + 9fe6e141ce98c9a7b2940d5743b165982aa242b5 - + https://github.com/dotnet/wpf - b6e229ca91e46c85a8c4aae7100181581e10b1fe + ecefb59b844ce9b63db0cb0c53efa48466f04ffc https://github.com/dotnet/runtime @@ -145,9 +145,9 @@ https://github.com/dotnet/runtime 287c10d2539d47268a1083c4d533cf84124900cf - + https://github.com/dotnet/winforms - acf62113e20e57628e1330d0e8025bf64220073e + 9fe6e141ce98c9a7b2940d5743b165982aa242b5 diff --git a/eng/Versions.props b/eng/Versions.props index 2c04c1d8f..6fd1a3832 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -4,7 +4,8 @@ 0 0 rtm - + + false release @@ -64,11 +65,11 @@ 4.10.0 - 8.0.0-rc.2.23468.7 - 8.0.0-rc.2.23468.7 - 8.0.0-rc.2.23468.7 + 8.0.0-rc.2.23468.13 + 8.0.0-rc.2.23468.13 + 8.0.0-rc.2.23468.13 - 8.0.0-rc.2.23468.2 - 8.0.0-rc.2.23468.2 + 8.0.0-rtm.23469.3 + 8.0.0-rtm.23469.3 From 4b097ad837f15e71d90f928f4689b627948a73bc Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Wed, 20 Sep 2023 16:07:15 -0700 Subject: [PATCH 052/222] [release/8.0] Update dependencies from dotnet/wpf (#3858) * Update dependencies from https://github.com/dotnet/wpf build 20230919.5 Microsoft.DotNet.Wpf.GitHub , Microsoft.DotNet.Wpf.ProjectTemplates , Microsoft.NET.Sdk.WindowsDesktop From Version 8.0.0-rtm.23469.3 -> To Version 8.0.0-rtm.23469.5 Dependency coherency updates Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Dotnet.WinForms.ProjectTemplates,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,System.Drawing.Common From Version 8.0.0-rc.2.23468.13 -> To Version 8.0.0-rtm.23469.7 (parent: Microsoft.DotNet.Wpf.GitHub * Update dependencies from https://github.com/dotnet/wpf build 20230919.6 Microsoft.DotNet.Wpf.GitHub , Microsoft.DotNet.Wpf.ProjectTemplates , Microsoft.NET.Sdk.WindowsDesktop From Version 8.0.0-rtm.23469.3 -> To Version 8.0.0-rtm.23469.6 Dependency coherency updates Microsoft.Private.Winforms,Microsoft.Internal.Runtime.WindowsDesktop.Transport,Microsoft.Private.Winforms,Microsoft.NETCore.App.Ref,Microsoft.Private.Winforms,VS.Redist.Common.NetCore.SharedFramework.x64.8.0,Microsoft.Private.Winforms,Microsoft.NETCore.App.Runtime.win-x64,Microsoft.Dotnet.WinForms.ProjectTemplates,Microsoft.Private.Winforms,Microsoft.Win32.Registry.AccessControl,Microsoft.Private.Winforms,Microsoft.Win32.SystemEvents,Microsoft.Private.Winforms,System.CodeDom,Microsoft.Private.Winforms,System.ComponentModel.Composition,Microsoft.Private.Winforms,System.Configuration.ConfigurationManager,Microsoft.Private.Winforms,System.Data.Odbc,Microsoft.Private.Winforms,System.Data.OleDb,Microsoft.Private.Winforms,System.Diagnostics.EventLog,Microsoft.Private.Winforms,System.Diagnostics.PerformanceCounter,Microsoft.Private.Winforms,System.DirectoryServices.AccountManagement,Microsoft.Private.Winforms,System.DirectoryServices.Protocols,Microsoft.Private.Winforms,System.DirectoryServices,Microsoft.Private.Winforms,System.IO.Packaging,Microsoft.Private.Winforms,System.IO.Ports,Microsoft.Private.Winforms,System.Management,Microsoft.Private.Winforms,System.Reflection.Context,Microsoft.Private.Winforms,System.Runtime.Caching,Microsoft.Private.Winforms,System.Security.Cryptography.Pkcs,Microsoft.Private.Winforms,System.Security.Cryptography.ProtectedData,Microsoft.Private.Winforms,System.Security.Cryptography.Xml,Microsoft.Private.Winforms,System.Security.Permissions,Microsoft.Private.Winforms,System.ServiceModel.Syndication,Microsoft.Private.Winforms,System.ServiceProcess.ServiceController,Microsoft.Private.Winforms,System.Speech,Microsoft.Private.Winforms,System.Text.Encoding.CodePages,Microsoft.Private.Winforms,System.Threading.AccessControl,Microsoft.Private.Winforms,System.ComponentModel.Composition.Registration,System.Drawing.Common From Version 8.0.0-rc.2.23468.13 -> To Version 8.0.0-rtm.23469.12 (parent: Microsoft.DotNet.Wpf.GitHub --------- Co-authored-by: dotnet-maestro[bot] --- eng/Version.Details.xml | 148 ++++++++++++++++++++-------------------- eng/Versions.props | 72 +++++++++---------- 2 files changed, 110 insertions(+), 110 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 53237c992..8c779fb09 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,153 +1,153 @@ - + https://github.com/dotnet/runtime - 287c10d2539d47268a1083c4d533cf84124900cf + 575843df1aeb430a3071e2e494d29b59080751ad - + https://github.com/dotnet/winforms - 9fe6e141ce98c9a7b2940d5743b165982aa242b5 + f85493157b69123ae49476be949a8245327c947c - + https://github.com/dotnet/wpf - ecefb59b844ce9b63db0cb0c53efa48466f04ffc + 0a809bfefed0cce77f17bbac9fbdf69b0fe52897 - + https://github.com/dotnet/wpf - ecefb59b844ce9b63db0cb0c53efa48466f04ffc + 0a809bfefed0cce77f17bbac9fbdf69b0fe52897 - + https://github.com/dotnet/runtime - 287c10d2539d47268a1083c4d533cf84124900cf + 575843df1aeb430a3071e2e494d29b59080751ad - + https://github.com/dotnet/runtime - 287c10d2539d47268a1083c4d533cf84124900cf + 575843df1aeb430a3071e2e494d29b59080751ad - + https://github.com/dotnet/runtime - 287c10d2539d47268a1083c4d533cf84124900cf + 575843df1aeb430a3071e2e494d29b59080751ad - + https://github.com/dotnet/winforms - 9fe6e141ce98c9a7b2940d5743b165982aa242b5 + f85493157b69123ae49476be949a8245327c947c - + https://github.com/dotnet/wpf - ecefb59b844ce9b63db0cb0c53efa48466f04ffc + 0a809bfefed0cce77f17bbac9fbdf69b0fe52897 - + https://github.com/dotnet/runtime - 287c10d2539d47268a1083c4d533cf84124900cf + 575843df1aeb430a3071e2e494d29b59080751ad - + https://github.com/dotnet/runtime - 287c10d2539d47268a1083c4d533cf84124900cf + 575843df1aeb430a3071e2e494d29b59080751ad - + https://github.com/dotnet/runtime - 287c10d2539d47268a1083c4d533cf84124900cf + 575843df1aeb430a3071e2e494d29b59080751ad - + https://github.com/dotnet/runtime - 287c10d2539d47268a1083c4d533cf84124900cf + 575843df1aeb430a3071e2e494d29b59080751ad - + https://github.com/dotnet/runtime - 287c10d2539d47268a1083c4d533cf84124900cf + 575843df1aeb430a3071e2e494d29b59080751ad - + https://github.com/dotnet/runtime - 287c10d2539d47268a1083c4d533cf84124900cf + 575843df1aeb430a3071e2e494d29b59080751ad - + https://github.com/dotnet/runtime - 287c10d2539d47268a1083c4d533cf84124900cf + 575843df1aeb430a3071e2e494d29b59080751ad - + https://github.com/dotnet/runtime - 287c10d2539d47268a1083c4d533cf84124900cf + 575843df1aeb430a3071e2e494d29b59080751ad - + https://github.com/dotnet/runtime - 287c10d2539d47268a1083c4d533cf84124900cf + 575843df1aeb430a3071e2e494d29b59080751ad - + https://github.com/dotnet/runtime - 287c10d2539d47268a1083c4d533cf84124900cf + 575843df1aeb430a3071e2e494d29b59080751ad - + https://github.com/dotnet/runtime - 287c10d2539d47268a1083c4d533cf84124900cf + 575843df1aeb430a3071e2e494d29b59080751ad - + https://github.com/dotnet/runtime - 287c10d2539d47268a1083c4d533cf84124900cf + 575843df1aeb430a3071e2e494d29b59080751ad - + https://github.com/dotnet/runtime - 287c10d2539d47268a1083c4d533cf84124900cf + 575843df1aeb430a3071e2e494d29b59080751ad - + https://github.com/dotnet/runtime - 287c10d2539d47268a1083c4d533cf84124900cf + 575843df1aeb430a3071e2e494d29b59080751ad - + https://github.com/dotnet/runtime - 287c10d2539d47268a1083c4d533cf84124900cf + 575843df1aeb430a3071e2e494d29b59080751ad - + https://github.com/dotnet/runtime - 287c10d2539d47268a1083c4d533cf84124900cf + 575843df1aeb430a3071e2e494d29b59080751ad - + https://github.com/dotnet/runtime - 287c10d2539d47268a1083c4d533cf84124900cf + 575843df1aeb430a3071e2e494d29b59080751ad - + https://github.com/dotnet/runtime - 287c10d2539d47268a1083c4d533cf84124900cf + 575843df1aeb430a3071e2e494d29b59080751ad - + https://github.com/dotnet/runtime - 287c10d2539d47268a1083c4d533cf84124900cf + 575843df1aeb430a3071e2e494d29b59080751ad - + https://github.com/dotnet/runtime - 287c10d2539d47268a1083c4d533cf84124900cf + 575843df1aeb430a3071e2e494d29b59080751ad - + https://github.com/dotnet/runtime - 287c10d2539d47268a1083c4d533cf84124900cf + 575843df1aeb430a3071e2e494d29b59080751ad - + https://github.com/dotnet/runtime - 287c10d2539d47268a1083c4d533cf84124900cf + 575843df1aeb430a3071e2e494d29b59080751ad - + https://github.com/dotnet/runtime - 287c10d2539d47268a1083c4d533cf84124900cf + 575843df1aeb430a3071e2e494d29b59080751ad - + https://github.com/dotnet/runtime - 287c10d2539d47268a1083c4d533cf84124900cf + 575843df1aeb430a3071e2e494d29b59080751ad - + https://github.com/dotnet/runtime - 287c10d2539d47268a1083c4d533cf84124900cf + 575843df1aeb430a3071e2e494d29b59080751ad - + https://github.com/dotnet/runtime - 287c10d2539d47268a1083c4d533cf84124900cf + 575843df1aeb430a3071e2e494d29b59080751ad - + https://github.com/dotnet/runtime - 287c10d2539d47268a1083c4d533cf84124900cf + 575843df1aeb430a3071e2e494d29b59080751ad - + https://github.com/dotnet/winforms - 9fe6e141ce98c9a7b2940d5743b165982aa242b5 + f85493157b69123ae49476be949a8245327c947c diff --git a/eng/Versions.props b/eng/Versions.props index 6fd1a3832..dac7c74cd 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -25,51 +25,51 @@ 6.2.4 - 8.0.0-rc.2.23466.4 - 8.0.0-rc.2.23466.4 - 8.0.0-rc.2.23466.4 - 8.0.0-rc.2.23466.4 + 8.0.0-rc.2.23469.9 + 8.0.0-rc.2.23469.9 + 8.0.0-rc.2.23469.9 + 8.0.0-rc.2.23469.9 5.0.0 - 8.0.0-rc.2.23466.4 - 8.0.0-rc.2.23466.4 - 8.0.0-rc.2.23466.4 - 8.0.0-rc.2.23466.4 - 8.0.0-rc.2.23466.4 - 8.0.0-rc.2.23466.4 - 8.0.0-rc.2.23466.4 - 8.0.0-rc.2.23466.4 - 8.0.0-rc.2.23466.4 - 8.0.0-rc.2.23466.4 - 8.0.0-rc.2.23466.4 - 8.0.0-rc.2.23466.4 + 8.0.0-rc.2.23469.9 + 8.0.0-rc.2.23469.9 + 8.0.0-rc.2.23469.9 + 8.0.0-rc.2.23469.9 + 8.0.0-rc.2.23469.9 + 8.0.0-rc.2.23469.9 + 8.0.0-rc.2.23469.9 + 8.0.0-rc.2.23469.9 + 8.0.0-rc.2.23469.9 + 8.0.0-rc.2.23469.9 + 8.0.0-rc.2.23469.9 + 8.0.0-rc.2.23469.9 5.0.0 - 8.0.0-rc.2.23466.4 + 8.0.0-rc.2.23469.9 5.0.0 - 8.0.0-rc.2.23466.4 - 8.0.0-rc.2.23466.4 - 8.0.0-rc.2.23466.4 - 8.0.0-rc.2.23466.4 + 8.0.0-rc.2.23469.9 + 8.0.0-rc.2.23469.9 + 8.0.0-rc.2.23469.9 + 8.0.0-rc.2.23469.9 6.0.0 5.0.0 - 8.0.0-rc.2.23466.4 - 8.0.0-rc.2.23466.4 - 8.0.0-rc.2.23466.4 - 8.0.0-rc.2.23466.4 + 8.0.0-rc.2.23469.9 + 8.0.0-rc.2.23469.9 + 8.0.0-rc.2.23469.9 + 8.0.0-rc.2.23469.9 5.0.0 - 8.0.0-rc.2.23466.4 - 8.0.0-rc.2.23466.4 - 8.0.0-rc.2.23466.4 - 8.0.0-rc.2.23466.4 - 8.0.0-rc.2.23466.4 - 8.0.0-rc.2.23466.4 + 8.0.0-rc.2.23469.9 + 8.0.0-rc.2.23469.9 + 8.0.0-rc.2.23469.9 + 8.0.0-rc.2.23469.9 + 8.0.0-rc.2.23469.9 + 8.0.0-rc.2.23469.9 4.10.0 - 8.0.0-rc.2.23468.13 - 8.0.0-rc.2.23468.13 - 8.0.0-rc.2.23468.13 + 8.0.0-rtm.23469.12 + 8.0.0-rtm.23469.12 + 8.0.0-rtm.23469.12 - 8.0.0-rtm.23469.3 - 8.0.0-rtm.23469.3 + 8.0.0-rtm.23469.6 + 8.0.0-rtm.23469.6 From 963d00c5459df2b7d1a65291e55ab0838f30e6a8 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Thu, 21 Sep 2023 10:05:09 -0700 Subject: [PATCH 053/222] [release/8.0] Update dependencies from dotnet/wpf (#3859) Update dependencies from https://github.com/dotnet/wpf build 20230920.1 Microsoft.DotNet.Wpf.GitHub , Microsoft.DotNet.Wpf.ProjectTemplates , Microsoft.NET.Sdk.WindowsDesktop From Version 8.0.0-rtm.23469.6 -> To Version 8.0.0-rtm.23470.1 Dependency coherency updates Microsoft.Private.Winforms,Microsoft.Internal.Runtime.WindowsDesktop.Transport,Microsoft.Private.Winforms,Microsoft.NETCore.App.Ref,Microsoft.Private.Winforms,VS.Redist.Common.NetCore.SharedFramework.x64.8.0,Microsoft.Private.Winforms,Microsoft.NETCore.App.Runtime.win-x64,Microsoft.Dotnet.WinForms.ProjectTemplates,Microsoft.Private.Winforms,Microsoft.Win32.Registry.AccessControl,Microsoft.Private.Winforms,Microsoft.Win32.SystemEvents,Microsoft.Private.Winforms,System.CodeDom,Microsoft.Private.Winforms,System.ComponentModel.Composition,Microsoft.Private.Winforms,System.Configuration.ConfigurationManager,Microsoft.Private.Winforms,System.Data.Odbc,Microsoft.Private.Winforms,System.Data.OleDb,Microsoft.Private.Winforms,System.Diagnostics.EventLog,Microsoft.Private.Winforms,System.Diagnostics.PerformanceCounter,Microsoft.Private.Winforms,System.DirectoryServices.AccountManagement,Microsoft.Private.Winforms,System.DirectoryServices.Protocols,Microsoft.Private.Winforms,System.DirectoryServices,Microsoft.Private.Winforms,System.IO.Packaging,Microsoft.Private.Winforms,System.IO.Ports,Microsoft.Private.Winforms,System.Management,Microsoft.Private.Winforms,System.Reflection.Context,Microsoft.Private.Winforms,System.Runtime.Caching,Microsoft.Private.Winforms,System.Security.Cryptography.Pkcs,Microsoft.Private.Winforms,System.Security.Cryptography.ProtectedData,Microsoft.Private.Winforms,System.Security.Cryptography.Xml,Microsoft.Private.Winforms,System.Security.Permissions,Microsoft.Private.Winforms,System.ServiceModel.Syndication,Microsoft.Private.Winforms,System.ServiceProcess.ServiceController,Microsoft.Private.Winforms,System.Speech,Microsoft.Private.Winforms,System.Text.Encoding.CodePages,Microsoft.Private.Winforms,System.Threading.AccessControl,Microsoft.Private.Winforms,System.ComponentModel.Composition.Registration,System.Drawing.Common From Version 8.0.0-rtm.23469.12 -> To Version 8.0.0-rtm.23470.6 (parent: Microsoft.DotNet.Wpf.GitHub Co-authored-by: dotnet-maestro[bot] --- eng/Version.Details.xml | 148 ++++++++++++++++++++-------------------- eng/Versions.props | 72 +++++++++---------- 2 files changed, 110 insertions(+), 110 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 8c779fb09..34c26e343 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,153 +1,153 @@ - + https://github.com/dotnet/runtime - 575843df1aeb430a3071e2e494d29b59080751ad + 49bf70a429a6122217f2c88e778ce8115ceac3bd - + https://github.com/dotnet/winforms - f85493157b69123ae49476be949a8245327c947c + 5694983a660b2514711a9ce66972b2c029fafbbc - + https://github.com/dotnet/wpf - 0a809bfefed0cce77f17bbac9fbdf69b0fe52897 + 1700dd4469cfd5f256665fb0f899ed1c6d489bc8 - + https://github.com/dotnet/wpf - 0a809bfefed0cce77f17bbac9fbdf69b0fe52897 + 1700dd4469cfd5f256665fb0f899ed1c6d489bc8 - + https://github.com/dotnet/runtime - 575843df1aeb430a3071e2e494d29b59080751ad + 49bf70a429a6122217f2c88e778ce8115ceac3bd - + https://github.com/dotnet/runtime - 575843df1aeb430a3071e2e494d29b59080751ad + 49bf70a429a6122217f2c88e778ce8115ceac3bd - + https://github.com/dotnet/runtime - 575843df1aeb430a3071e2e494d29b59080751ad + 49bf70a429a6122217f2c88e778ce8115ceac3bd - + https://github.com/dotnet/winforms - f85493157b69123ae49476be949a8245327c947c + 5694983a660b2514711a9ce66972b2c029fafbbc - + https://github.com/dotnet/wpf - 0a809bfefed0cce77f17bbac9fbdf69b0fe52897 + 1700dd4469cfd5f256665fb0f899ed1c6d489bc8 - + https://github.com/dotnet/runtime - 575843df1aeb430a3071e2e494d29b59080751ad + 49bf70a429a6122217f2c88e778ce8115ceac3bd - + https://github.com/dotnet/runtime - 575843df1aeb430a3071e2e494d29b59080751ad + 49bf70a429a6122217f2c88e778ce8115ceac3bd - + https://github.com/dotnet/runtime - 575843df1aeb430a3071e2e494d29b59080751ad + 49bf70a429a6122217f2c88e778ce8115ceac3bd - + https://github.com/dotnet/runtime - 575843df1aeb430a3071e2e494d29b59080751ad + 49bf70a429a6122217f2c88e778ce8115ceac3bd - + https://github.com/dotnet/runtime - 575843df1aeb430a3071e2e494d29b59080751ad + 49bf70a429a6122217f2c88e778ce8115ceac3bd - + https://github.com/dotnet/runtime - 575843df1aeb430a3071e2e494d29b59080751ad + 49bf70a429a6122217f2c88e778ce8115ceac3bd - + https://github.com/dotnet/runtime - 575843df1aeb430a3071e2e494d29b59080751ad + 49bf70a429a6122217f2c88e778ce8115ceac3bd - + https://github.com/dotnet/runtime - 575843df1aeb430a3071e2e494d29b59080751ad + 49bf70a429a6122217f2c88e778ce8115ceac3bd - + https://github.com/dotnet/runtime - 575843df1aeb430a3071e2e494d29b59080751ad + 49bf70a429a6122217f2c88e778ce8115ceac3bd - + https://github.com/dotnet/runtime - 575843df1aeb430a3071e2e494d29b59080751ad + 49bf70a429a6122217f2c88e778ce8115ceac3bd - + https://github.com/dotnet/runtime - 575843df1aeb430a3071e2e494d29b59080751ad + 49bf70a429a6122217f2c88e778ce8115ceac3bd - + https://github.com/dotnet/runtime - 575843df1aeb430a3071e2e494d29b59080751ad + 49bf70a429a6122217f2c88e778ce8115ceac3bd - + https://github.com/dotnet/runtime - 575843df1aeb430a3071e2e494d29b59080751ad + 49bf70a429a6122217f2c88e778ce8115ceac3bd - + https://github.com/dotnet/runtime - 575843df1aeb430a3071e2e494d29b59080751ad + 49bf70a429a6122217f2c88e778ce8115ceac3bd - + https://github.com/dotnet/runtime - 575843df1aeb430a3071e2e494d29b59080751ad + 49bf70a429a6122217f2c88e778ce8115ceac3bd - + https://github.com/dotnet/runtime - 575843df1aeb430a3071e2e494d29b59080751ad + 49bf70a429a6122217f2c88e778ce8115ceac3bd - + https://github.com/dotnet/runtime - 575843df1aeb430a3071e2e494d29b59080751ad + 49bf70a429a6122217f2c88e778ce8115ceac3bd - + https://github.com/dotnet/runtime - 575843df1aeb430a3071e2e494d29b59080751ad + 49bf70a429a6122217f2c88e778ce8115ceac3bd - + https://github.com/dotnet/runtime - 575843df1aeb430a3071e2e494d29b59080751ad + 49bf70a429a6122217f2c88e778ce8115ceac3bd - + https://github.com/dotnet/runtime - 575843df1aeb430a3071e2e494d29b59080751ad + 49bf70a429a6122217f2c88e778ce8115ceac3bd - + https://github.com/dotnet/runtime - 575843df1aeb430a3071e2e494d29b59080751ad + 49bf70a429a6122217f2c88e778ce8115ceac3bd - + https://github.com/dotnet/runtime - 575843df1aeb430a3071e2e494d29b59080751ad + 49bf70a429a6122217f2c88e778ce8115ceac3bd - + https://github.com/dotnet/runtime - 575843df1aeb430a3071e2e494d29b59080751ad + 49bf70a429a6122217f2c88e778ce8115ceac3bd - + https://github.com/dotnet/runtime - 575843df1aeb430a3071e2e494d29b59080751ad + 49bf70a429a6122217f2c88e778ce8115ceac3bd - + https://github.com/dotnet/runtime - 575843df1aeb430a3071e2e494d29b59080751ad + 49bf70a429a6122217f2c88e778ce8115ceac3bd - + https://github.com/dotnet/runtime - 575843df1aeb430a3071e2e494d29b59080751ad + 49bf70a429a6122217f2c88e778ce8115ceac3bd - + https://github.com/dotnet/runtime - 575843df1aeb430a3071e2e494d29b59080751ad + 49bf70a429a6122217f2c88e778ce8115ceac3bd - + https://github.com/dotnet/winforms - f85493157b69123ae49476be949a8245327c947c + 5694983a660b2514711a9ce66972b2c029fafbbc diff --git a/eng/Versions.props b/eng/Versions.props index dac7c74cd..e9d17f7ef 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -25,51 +25,51 @@ 6.2.4 - 8.0.0-rc.2.23469.9 - 8.0.0-rc.2.23469.9 - 8.0.0-rc.2.23469.9 - 8.0.0-rc.2.23469.9 + 8.0.0-rc.2.23470.7 + 8.0.0-rc.2.23470.7 + 8.0.0-rc.2.23470.7 + 8.0.0-rc.2.23470.7 5.0.0 - 8.0.0-rc.2.23469.9 - 8.0.0-rc.2.23469.9 - 8.0.0-rc.2.23469.9 - 8.0.0-rc.2.23469.9 - 8.0.0-rc.2.23469.9 - 8.0.0-rc.2.23469.9 - 8.0.0-rc.2.23469.9 - 8.0.0-rc.2.23469.9 - 8.0.0-rc.2.23469.9 - 8.0.0-rc.2.23469.9 - 8.0.0-rc.2.23469.9 - 8.0.0-rc.2.23469.9 + 8.0.0-rc.2.23470.7 + 8.0.0-rc.2.23470.7 + 8.0.0-rc.2.23470.7 + 8.0.0-rc.2.23470.7 + 8.0.0-rc.2.23470.7 + 8.0.0-rc.2.23470.7 + 8.0.0-rc.2.23470.7 + 8.0.0-rc.2.23470.7 + 8.0.0-rc.2.23470.7 + 8.0.0-rc.2.23470.7 + 8.0.0-rc.2.23470.7 + 8.0.0-rc.2.23470.7 5.0.0 - 8.0.0-rc.2.23469.9 + 8.0.0-rc.2.23470.7 5.0.0 - 8.0.0-rc.2.23469.9 - 8.0.0-rc.2.23469.9 - 8.0.0-rc.2.23469.9 - 8.0.0-rc.2.23469.9 + 8.0.0-rc.2.23470.7 + 8.0.0-rc.2.23470.7 + 8.0.0-rc.2.23470.7 + 8.0.0-rc.2.23470.7 6.0.0 5.0.0 - 8.0.0-rc.2.23469.9 - 8.0.0-rc.2.23469.9 - 8.0.0-rc.2.23469.9 - 8.0.0-rc.2.23469.9 + 8.0.0-rc.2.23470.7 + 8.0.0-rc.2.23470.7 + 8.0.0-rc.2.23470.7 + 8.0.0-rc.2.23470.7 5.0.0 - 8.0.0-rc.2.23469.9 - 8.0.0-rc.2.23469.9 - 8.0.0-rc.2.23469.9 - 8.0.0-rc.2.23469.9 - 8.0.0-rc.2.23469.9 - 8.0.0-rc.2.23469.9 + 8.0.0-rc.2.23470.7 + 8.0.0-rc.2.23470.7 + 8.0.0-rc.2.23470.7 + 8.0.0-rc.2.23470.7 + 8.0.0-rc.2.23470.7 + 8.0.0-rc.2.23470.7 4.10.0 - 8.0.0-rtm.23469.12 - 8.0.0-rtm.23469.12 - 8.0.0-rtm.23469.12 + 8.0.0-rtm.23470.6 + 8.0.0-rtm.23470.6 + 8.0.0-rtm.23470.6 - 8.0.0-rtm.23469.6 - 8.0.0-rtm.23469.6 + 8.0.0-rtm.23470.1 + 8.0.0-rtm.23470.1 From 7d1d325d01d081912a056124217e08e1a6046580 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Thu, 21 Sep 2023 21:34:43 +0000 Subject: [PATCH 054/222] [release/8.0] Update dependencies from dotnet/wpf (#3862) [release/8.0] Update dependencies from dotnet/wpf - Coherency Updates: - Microsoft.Private.Winforms: from 8.0.0-rtm.23470.6 to 8.0.0-rtm.23471.6 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rtm.23470.6 to 8.0.0-rtm.23471.6 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rtm.23470.6 to 8.0.0-rtm.23471.6 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rtm.23470.6 to 8.0.0-rtm.23471.6 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Dotnet.WinForms.ProjectTemplates: from 8.0.0-rtm.23470.6 to 8.0.0-rtm.23471.6 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rtm.23470.6 to 8.0.0-rtm.23471.6 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rtm.23470.6 to 8.0.0-rtm.23471.6 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rtm.23470.6 to 8.0.0-rtm.23471.6 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rtm.23470.6 to 8.0.0-rtm.23471.6 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rtm.23470.6 to 8.0.0-rtm.23471.6 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rtm.23470.6 to 8.0.0-rtm.23471.6 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rtm.23470.6 to 8.0.0-rtm.23471.6 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rtm.23470.6 to 8.0.0-rtm.23471.6 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rtm.23470.6 to 8.0.0-rtm.23471.6 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rtm.23470.6 to 8.0.0-rtm.23471.6 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rtm.23470.6 to 8.0.0-rtm.23471.6 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rtm.23470.6 to 8.0.0-rtm.23471.6 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rtm.23470.6 to 8.0.0-rtm.23471.6 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rtm.23470.6 to 8.0.0-rtm.23471.6 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rtm.23470.6 to 8.0.0-rtm.23471.6 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rtm.23470.6 to 8.0.0-rtm.23471.6 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rtm.23470.6 to 8.0.0-rtm.23471.6 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rtm.23470.6 to 8.0.0-rtm.23471.6 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rtm.23470.6 to 8.0.0-rtm.23471.6 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rtm.23470.6 to 8.0.0-rtm.23471.6 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rtm.23470.6 to 8.0.0-rtm.23471.6 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rtm.23470.6 to 8.0.0-rtm.23471.6 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rtm.23470.6 to 8.0.0-rtm.23471.6 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rtm.23470.6 to 8.0.0-rtm.23471.6 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rtm.23470.6 to 8.0.0-rtm.23471.6 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rtm.23470.6 to 8.0.0-rtm.23471.6 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rtm.23470.6 to 8.0.0-rtm.23471.6 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Drawing.Common: from 8.0.0-rtm.23470.6 to 8.0.0-rtm.23471.6 (parent: Microsoft.DotNet.Wpf.GitHub) --- eng/Version.Details.xml | 24 ++++++++++++------------ eng/Versions.props | 10 +++++----- 2 files changed, 17 insertions(+), 17 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 34c26e343..518a36a7f 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -5,17 +5,17 @@ https://github.com/dotnet/runtime 49bf70a429a6122217f2c88e778ce8115ceac3bd - + https://github.com/dotnet/winforms - 5694983a660b2514711a9ce66972b2c029fafbbc + ea0c0e48172eeb7a9814b201aa561d3789c8ff42 - + https://github.com/dotnet/wpf - 1700dd4469cfd5f256665fb0f899ed1c6d489bc8 + 8f8527d020b488bfb8da6ccb9c88b8ceaaf15cdc - + https://github.com/dotnet/wpf - 1700dd4469cfd5f256665fb0f899ed1c6d489bc8 + 8f8527d020b488bfb8da6ccb9c88b8ceaaf15cdc https://github.com/dotnet/runtime @@ -29,13 +29,13 @@ https://github.com/dotnet/runtime 49bf70a429a6122217f2c88e778ce8115ceac3bd - + https://github.com/dotnet/winforms - 5694983a660b2514711a9ce66972b2c029fafbbc + ea0c0e48172eeb7a9814b201aa561d3789c8ff42 - + https://github.com/dotnet/wpf - 1700dd4469cfd5f256665fb0f899ed1c6d489bc8 + 8f8527d020b488bfb8da6ccb9c88b8ceaaf15cdc https://github.com/dotnet/runtime @@ -145,9 +145,9 @@ https://github.com/dotnet/runtime 49bf70a429a6122217f2c88e778ce8115ceac3bd - + https://github.com/dotnet/winforms - 5694983a660b2514711a9ce66972b2c029fafbbc + ea0c0e48172eeb7a9814b201aa561d3789c8ff42 diff --git a/eng/Versions.props b/eng/Versions.props index e9d17f7ef..4093064a8 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -65,11 +65,11 @@ 4.10.0 - 8.0.0-rtm.23470.6 - 8.0.0-rtm.23470.6 - 8.0.0-rtm.23470.6 + 8.0.0-rtm.23471.6 + 8.0.0-rtm.23471.6 + 8.0.0-rtm.23471.6 - 8.0.0-rtm.23470.1 - 8.0.0-rtm.23470.1 + 8.0.0-rtm.23471.2 + 8.0.0-rtm.23471.2 From 3288084023e895de089381281da54a8541976f13 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Fri, 22 Sep 2023 21:19:38 +0000 Subject: [PATCH 055/222] [release/8.0] Update dependencies from dotnet/wpf (#3863) [release/8.0] Update dependencies from dotnet/wpf - Coherency Updates: - Microsoft.Private.Winforms: from 8.0.0-rtm.23471.6 to 8.0.0-rtm.23472.4 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rtm.23471.6 to 8.0.0-rtm.23472.4 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rtm.23471.6 to 8.0.0-rtm.23472.4 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rtm.23471.6 to 8.0.0-rtm.23472.4 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Dotnet.WinForms.ProjectTemplates: from 8.0.0-rtm.23471.6 to 8.0.0-rtm.23472.4 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rtm.23471.6 to 8.0.0-rtm.23472.4 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rtm.23471.6 to 8.0.0-rtm.23472.4 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rtm.23471.6 to 8.0.0-rtm.23472.4 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rtm.23471.6 to 8.0.0-rtm.23472.4 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rtm.23471.6 to 8.0.0-rtm.23472.4 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rtm.23471.6 to 8.0.0-rtm.23472.4 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rtm.23471.6 to 8.0.0-rtm.23472.4 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rtm.23471.6 to 8.0.0-rtm.23472.4 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rtm.23471.6 to 8.0.0-rtm.23472.4 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rtm.23471.6 to 8.0.0-rtm.23472.4 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rtm.23471.6 to 8.0.0-rtm.23472.4 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rtm.23471.6 to 8.0.0-rtm.23472.4 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rtm.23471.6 to 8.0.0-rtm.23472.4 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rtm.23471.6 to 8.0.0-rtm.23472.4 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rtm.23471.6 to 8.0.0-rtm.23472.4 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rtm.23471.6 to 8.0.0-rtm.23472.4 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rtm.23471.6 to 8.0.0-rtm.23472.4 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rtm.23471.6 to 8.0.0-rtm.23472.4 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rtm.23471.6 to 8.0.0-rtm.23472.4 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rtm.23471.6 to 8.0.0-rtm.23472.4 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rtm.23471.6 to 8.0.0-rtm.23472.4 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rtm.23471.6 to 8.0.0-rtm.23472.4 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rtm.23471.6 to 8.0.0-rtm.23472.4 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rtm.23471.6 to 8.0.0-rtm.23472.4 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rtm.23471.6 to 8.0.0-rtm.23472.4 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rtm.23471.6 to 8.0.0-rtm.23472.4 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rtm.23471.6 to 8.0.0-rtm.23472.4 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Drawing.Common: from 8.0.0-rtm.23471.6 to 8.0.0-rtm.23472.4 (parent: Microsoft.DotNet.Wpf.GitHub) --- eng/Version.Details.xml | 24 ++++++++++++------------ eng/Versions.props | 10 +++++----- 2 files changed, 17 insertions(+), 17 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 518a36a7f..18a4f2272 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -5,17 +5,17 @@ https://github.com/dotnet/runtime 49bf70a429a6122217f2c88e778ce8115ceac3bd - + https://github.com/dotnet/winforms - ea0c0e48172eeb7a9814b201aa561d3789c8ff42 + 6612d80c7af667b0e4c0690a07b7c4f9860201d4 - + https://github.com/dotnet/wpf - 8f8527d020b488bfb8da6ccb9c88b8ceaaf15cdc + b1726ad39dacd4ab7e723f5a49e610e5bbce1430 - + https://github.com/dotnet/wpf - 8f8527d020b488bfb8da6ccb9c88b8ceaaf15cdc + b1726ad39dacd4ab7e723f5a49e610e5bbce1430 https://github.com/dotnet/runtime @@ -29,13 +29,13 @@ https://github.com/dotnet/runtime 49bf70a429a6122217f2c88e778ce8115ceac3bd - + https://github.com/dotnet/winforms - ea0c0e48172eeb7a9814b201aa561d3789c8ff42 + 6612d80c7af667b0e4c0690a07b7c4f9860201d4 - + https://github.com/dotnet/wpf - 8f8527d020b488bfb8da6ccb9c88b8ceaaf15cdc + b1726ad39dacd4ab7e723f5a49e610e5bbce1430 https://github.com/dotnet/runtime @@ -145,9 +145,9 @@ https://github.com/dotnet/runtime 49bf70a429a6122217f2c88e778ce8115ceac3bd - + https://github.com/dotnet/winforms - ea0c0e48172eeb7a9814b201aa561d3789c8ff42 + 6612d80c7af667b0e4c0690a07b7c4f9860201d4 diff --git a/eng/Versions.props b/eng/Versions.props index 4093064a8..f7010f91b 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -65,11 +65,11 @@ 4.10.0 - 8.0.0-rtm.23471.6 - 8.0.0-rtm.23471.6 - 8.0.0-rtm.23471.6 + 8.0.0-rtm.23472.4 + 8.0.0-rtm.23472.4 + 8.0.0-rtm.23472.4 - 8.0.0-rtm.23471.2 - 8.0.0-rtm.23471.2 + 8.0.0-rtm.23472.1 + 8.0.0-rtm.23472.1 From 2c55fe48e894e853bfc5c1edb61603aeb29c3259 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Mon, 25 Sep 2023 18:10:43 +0000 Subject: [PATCH 056/222] [release/8.0] Update dependencies from dotnet/wpf (#3864) [release/8.0] Update dependencies from dotnet/wpf - Coherency Updates: - Microsoft.Private.Winforms: from 8.0.0-rtm.23472.4 to 8.0.0-rtm.23472.9 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Internal.Runtime.WindowsDesktop.Transport: from 8.0.0-rc.2.23470.7 to 8.0.0-rtm.23472.12 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23472.4 to 8.0.0-rtm.23472.9 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.NETCore.App.Ref: from 8.0.0-rc.2.23470.7 to 8.0.0-rtm.23472.12 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23472.4 to 8.0.0-rtm.23472.9 (parent: Microsoft.DotNet.Wpf.GitHub) - VS.Redist.Common.NetCore.SharedFramework.x64.8.0: from 8.0.0-rc.2.23470.7 to 8.0.0-rtm.23472.12 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23472.4 to 8.0.0-rtm.23472.9 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.NETCore.App.Runtime.win-x64: from 8.0.0-rc.2.23470.7 to 8.0.0-rtm.23472.12 (parent: Microsoft.Private.Winforms) - Microsoft.Dotnet.WinForms.ProjectTemplates: from 8.0.0-rtm.23472.4 to 8.0.0-rtm.23472.9 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rtm.23472.4 to 8.0.0-rtm.23472.9 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Win32.Registry.AccessControl: from 8.0.0-rc.2.23470.7 to 8.0.0-rtm.23472.12 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23472.4 to 8.0.0-rtm.23472.9 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Win32.SystemEvents: from 8.0.0-rc.2.23470.7 to 8.0.0-rtm.23472.12 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23472.4 to 8.0.0-rtm.23472.9 (parent: Microsoft.DotNet.Wpf.GitHub) - System.CodeDom: from 8.0.0-rc.2.23470.7 to 8.0.0-rtm.23472.12 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23472.4 to 8.0.0-rtm.23472.9 (parent: Microsoft.DotNet.Wpf.GitHub) - System.ComponentModel.Composition: from 8.0.0-rc.2.23470.7 to 8.0.0-rtm.23472.12 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23472.4 to 8.0.0-rtm.23472.9 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Configuration.ConfigurationManager: from 8.0.0-rc.2.23470.7 to 8.0.0-rtm.23472.12 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23472.4 to 8.0.0-rtm.23472.9 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Data.Odbc: from 8.0.0-rc.2.23470.7 to 8.0.0-rtm.23472.12 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23472.4 to 8.0.0-rtm.23472.9 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Data.OleDb: from 8.0.0-rc.2.23470.7 to 8.0.0-rtm.23472.12 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23472.4 to 8.0.0-rtm.23472.9 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Diagnostics.EventLog: from 8.0.0-rc.2.23470.7 to 8.0.0-rtm.23472.12 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23472.4 to 8.0.0-rtm.23472.9 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Diagnostics.PerformanceCounter: from 8.0.0-rc.2.23470.7 to 8.0.0-rtm.23472.12 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23472.4 to 8.0.0-rtm.23472.9 (parent: Microsoft.DotNet.Wpf.GitHub) - System.DirectoryServices.AccountManagement: from 8.0.0-rc.2.23470.7 to 8.0.0-rtm.23472.12 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23472.4 to 8.0.0-rtm.23472.9 (parent: Microsoft.DotNet.Wpf.GitHub) - System.DirectoryServices.Protocols: from 8.0.0-rc.2.23470.7 to 8.0.0-rtm.23472.12 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23472.4 to 8.0.0-rtm.23472.9 (parent: Microsoft.DotNet.Wpf.GitHub) - System.DirectoryServices: from 8.0.0-rc.2.23470.7 to 8.0.0-rtm.23472.12 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23472.4 to 8.0.0-rtm.23472.9 (parent: Microsoft.DotNet.Wpf.GitHub) - System.IO.Packaging: from 8.0.0-rc.2.23470.7 to 8.0.0-rtm.23472.12 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23472.4 to 8.0.0-rtm.23472.9 (parent: Microsoft.DotNet.Wpf.GitHub) - System.IO.Ports: from 8.0.0-rc.2.23470.7 to 8.0.0-rtm.23472.12 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23472.4 to 8.0.0-rtm.23472.9 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Management: from 8.0.0-rc.2.23470.7 to 8.0.0-rtm.23472.12 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23472.4 to 8.0.0-rtm.23472.9 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Reflection.Context: from 8.0.0-rc.2.23470.7 to 8.0.0-rtm.23472.12 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23472.4 to 8.0.0-rtm.23472.9 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Runtime.Caching: from 8.0.0-rc.2.23470.7 to 8.0.0-rtm.23472.12 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23472.4 to 8.0.0-rtm.23472.9 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Security.Cryptography.Pkcs: from 8.0.0-rc.2.23470.7 to 8.0.0-rtm.23472.12 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23472.4 to 8.0.0-rtm.23472.9 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Security.Cryptography.ProtectedData: from 8.0.0-rc.2.23470.7 to 8.0.0-rtm.23472.12 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23472.4 to 8.0.0-rtm.23472.9 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Security.Cryptography.Xml: from 8.0.0-rc.2.23470.7 to 8.0.0-rtm.23472.12 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23472.4 to 8.0.0-rtm.23472.9 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Security.Permissions: from 8.0.0-rc.2.23470.7 to 8.0.0-rtm.23472.12 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23472.4 to 8.0.0-rtm.23472.9 (parent: Microsoft.DotNet.Wpf.GitHub) - System.ServiceModel.Syndication: from 8.0.0-rc.2.23470.7 to 8.0.0-rtm.23472.12 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23472.4 to 8.0.0-rtm.23472.9 (parent: Microsoft.DotNet.Wpf.GitHub) - System.ServiceProcess.ServiceController: from 8.0.0-rc.2.23470.7 to 8.0.0-rtm.23472.12 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23472.4 to 8.0.0-rtm.23472.9 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Speech: from 8.0.0-rc.2.23470.7 to 8.0.0-rtm.23472.12 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23472.4 to 8.0.0-rtm.23472.9 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Text.Encoding.CodePages: from 8.0.0-rc.2.23470.7 to 8.0.0-rtm.23472.12 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23472.4 to 8.0.0-rtm.23472.9 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Threading.AccessControl: from 8.0.0-rc.2.23470.7 to 8.0.0-rtm.23472.12 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23472.4 to 8.0.0-rtm.23472.9 (parent: Microsoft.DotNet.Wpf.GitHub) - System.ComponentModel.Composition.Registration: from 8.0.0-rc.2.23470.7 to 8.0.0-rtm.23472.12 (parent: Microsoft.Private.Winforms) - System.Drawing.Common: from 8.0.0-rtm.23472.4 to 8.0.0-rtm.23472.9 (parent: Microsoft.DotNet.Wpf.GitHub) --- eng/Version.Details.xml | 148 ++++++++++++++++++++-------------------- eng/Versions.props | 72 +++++++++---------- 2 files changed, 110 insertions(+), 110 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 18a4f2272..b70765124 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,153 +1,153 @@ - + https://github.com/dotnet/runtime - 49bf70a429a6122217f2c88e778ce8115ceac3bd + e95228dbcf7a69f87b00da969b0cabf2e62ab207 - + https://github.com/dotnet/winforms - 6612d80c7af667b0e4c0690a07b7c4f9860201d4 + ef7f2e577d43de5d19d69f9f114894e1150025fd - + https://github.com/dotnet/wpf - b1726ad39dacd4ab7e723f5a49e610e5bbce1430 + ee97472a11bfcc2c3e45fcc8e56ab71bcad09237 - + https://github.com/dotnet/wpf - b1726ad39dacd4ab7e723f5a49e610e5bbce1430 + ee97472a11bfcc2c3e45fcc8e56ab71bcad09237 - + https://github.com/dotnet/runtime - 49bf70a429a6122217f2c88e778ce8115ceac3bd + e95228dbcf7a69f87b00da969b0cabf2e62ab207 - + https://github.com/dotnet/runtime - 49bf70a429a6122217f2c88e778ce8115ceac3bd + e95228dbcf7a69f87b00da969b0cabf2e62ab207 - + https://github.com/dotnet/runtime - 49bf70a429a6122217f2c88e778ce8115ceac3bd + e95228dbcf7a69f87b00da969b0cabf2e62ab207 - + https://github.com/dotnet/winforms - 6612d80c7af667b0e4c0690a07b7c4f9860201d4 + ef7f2e577d43de5d19d69f9f114894e1150025fd - + https://github.com/dotnet/wpf - b1726ad39dacd4ab7e723f5a49e610e5bbce1430 + ee97472a11bfcc2c3e45fcc8e56ab71bcad09237 - + https://github.com/dotnet/runtime - 49bf70a429a6122217f2c88e778ce8115ceac3bd + e95228dbcf7a69f87b00da969b0cabf2e62ab207 - + https://github.com/dotnet/runtime - 49bf70a429a6122217f2c88e778ce8115ceac3bd + e95228dbcf7a69f87b00da969b0cabf2e62ab207 - + https://github.com/dotnet/runtime - 49bf70a429a6122217f2c88e778ce8115ceac3bd + e95228dbcf7a69f87b00da969b0cabf2e62ab207 - + https://github.com/dotnet/runtime - 49bf70a429a6122217f2c88e778ce8115ceac3bd + e95228dbcf7a69f87b00da969b0cabf2e62ab207 - + https://github.com/dotnet/runtime - 49bf70a429a6122217f2c88e778ce8115ceac3bd + e95228dbcf7a69f87b00da969b0cabf2e62ab207 - + https://github.com/dotnet/runtime - 49bf70a429a6122217f2c88e778ce8115ceac3bd + e95228dbcf7a69f87b00da969b0cabf2e62ab207 - + https://github.com/dotnet/runtime - 49bf70a429a6122217f2c88e778ce8115ceac3bd + e95228dbcf7a69f87b00da969b0cabf2e62ab207 - + https://github.com/dotnet/runtime - 49bf70a429a6122217f2c88e778ce8115ceac3bd + e95228dbcf7a69f87b00da969b0cabf2e62ab207 - + https://github.com/dotnet/runtime - 49bf70a429a6122217f2c88e778ce8115ceac3bd + e95228dbcf7a69f87b00da969b0cabf2e62ab207 - + https://github.com/dotnet/runtime - 49bf70a429a6122217f2c88e778ce8115ceac3bd + e95228dbcf7a69f87b00da969b0cabf2e62ab207 - + https://github.com/dotnet/runtime - 49bf70a429a6122217f2c88e778ce8115ceac3bd + e95228dbcf7a69f87b00da969b0cabf2e62ab207 - + https://github.com/dotnet/runtime - 49bf70a429a6122217f2c88e778ce8115ceac3bd + e95228dbcf7a69f87b00da969b0cabf2e62ab207 - + https://github.com/dotnet/runtime - 49bf70a429a6122217f2c88e778ce8115ceac3bd + e95228dbcf7a69f87b00da969b0cabf2e62ab207 - + https://github.com/dotnet/runtime - 49bf70a429a6122217f2c88e778ce8115ceac3bd + e95228dbcf7a69f87b00da969b0cabf2e62ab207 - + https://github.com/dotnet/runtime - 49bf70a429a6122217f2c88e778ce8115ceac3bd + e95228dbcf7a69f87b00da969b0cabf2e62ab207 - + https://github.com/dotnet/runtime - 49bf70a429a6122217f2c88e778ce8115ceac3bd + e95228dbcf7a69f87b00da969b0cabf2e62ab207 - + https://github.com/dotnet/runtime - 49bf70a429a6122217f2c88e778ce8115ceac3bd + e95228dbcf7a69f87b00da969b0cabf2e62ab207 - + https://github.com/dotnet/runtime - 49bf70a429a6122217f2c88e778ce8115ceac3bd + e95228dbcf7a69f87b00da969b0cabf2e62ab207 - + https://github.com/dotnet/runtime - 49bf70a429a6122217f2c88e778ce8115ceac3bd + e95228dbcf7a69f87b00da969b0cabf2e62ab207 - + https://github.com/dotnet/runtime - 49bf70a429a6122217f2c88e778ce8115ceac3bd + e95228dbcf7a69f87b00da969b0cabf2e62ab207 - + https://github.com/dotnet/runtime - 49bf70a429a6122217f2c88e778ce8115ceac3bd + e95228dbcf7a69f87b00da969b0cabf2e62ab207 - + https://github.com/dotnet/runtime - 49bf70a429a6122217f2c88e778ce8115ceac3bd + e95228dbcf7a69f87b00da969b0cabf2e62ab207 - + https://github.com/dotnet/runtime - 49bf70a429a6122217f2c88e778ce8115ceac3bd + e95228dbcf7a69f87b00da969b0cabf2e62ab207 - + https://github.com/dotnet/runtime - 49bf70a429a6122217f2c88e778ce8115ceac3bd + e95228dbcf7a69f87b00da969b0cabf2e62ab207 - + https://github.com/dotnet/runtime - 49bf70a429a6122217f2c88e778ce8115ceac3bd + e95228dbcf7a69f87b00da969b0cabf2e62ab207 - + https://github.com/dotnet/runtime - 49bf70a429a6122217f2c88e778ce8115ceac3bd + e95228dbcf7a69f87b00da969b0cabf2e62ab207 - + https://github.com/dotnet/runtime - 49bf70a429a6122217f2c88e778ce8115ceac3bd + e95228dbcf7a69f87b00da969b0cabf2e62ab207 - + https://github.com/dotnet/winforms - 6612d80c7af667b0e4c0690a07b7c4f9860201d4 + ef7f2e577d43de5d19d69f9f114894e1150025fd diff --git a/eng/Versions.props b/eng/Versions.props index f7010f91b..73e99a8f2 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -25,51 +25,51 @@ 6.2.4 - 8.0.0-rc.2.23470.7 - 8.0.0-rc.2.23470.7 - 8.0.0-rc.2.23470.7 - 8.0.0-rc.2.23470.7 + 8.0.0-rtm.23472.12 + 8.0.0-rtm.23472.12 + 8.0.0-rtm.23472.12 + 8.0.0-rtm.23472.12 5.0.0 - 8.0.0-rc.2.23470.7 - 8.0.0-rc.2.23470.7 - 8.0.0-rc.2.23470.7 - 8.0.0-rc.2.23470.7 - 8.0.0-rc.2.23470.7 - 8.0.0-rc.2.23470.7 - 8.0.0-rc.2.23470.7 - 8.0.0-rc.2.23470.7 - 8.0.0-rc.2.23470.7 - 8.0.0-rc.2.23470.7 - 8.0.0-rc.2.23470.7 - 8.0.0-rc.2.23470.7 + 8.0.0-rtm.23472.12 + 8.0.0-rtm.23472.12 + 8.0.0-rtm.23472.12 + 8.0.0-rtm.23472.12 + 8.0.0-rtm.23472.12 + 8.0.0-rtm.23472.12 + 8.0.0-rtm.23472.12 + 8.0.0-rtm.23472.12 + 8.0.0-rtm.23472.12 + 8.0.0-rtm.23472.12 + 8.0.0-rtm.23472.12 + 8.0.0-rtm.23472.12 5.0.0 - 8.0.0-rc.2.23470.7 + 8.0.0-rtm.23472.12 5.0.0 - 8.0.0-rc.2.23470.7 - 8.0.0-rc.2.23470.7 - 8.0.0-rc.2.23470.7 - 8.0.0-rc.2.23470.7 + 8.0.0-rtm.23472.12 + 8.0.0-rtm.23472.12 + 8.0.0-rtm.23472.12 + 8.0.0-rtm.23472.12 6.0.0 5.0.0 - 8.0.0-rc.2.23470.7 - 8.0.0-rc.2.23470.7 - 8.0.0-rc.2.23470.7 - 8.0.0-rc.2.23470.7 + 8.0.0-rtm.23472.12 + 8.0.0-rtm.23472.12 + 8.0.0-rtm.23472.12 + 8.0.0-rtm.23472.12 5.0.0 - 8.0.0-rc.2.23470.7 - 8.0.0-rc.2.23470.7 - 8.0.0-rc.2.23470.7 - 8.0.0-rc.2.23470.7 - 8.0.0-rc.2.23470.7 - 8.0.0-rc.2.23470.7 + 8.0.0-rtm.23472.12 + 8.0.0-rtm.23472.12 + 8.0.0-rtm.23472.12 + 8.0.0-rtm.23472.12 + 8.0.0-rtm.23472.12 + 8.0.0-rtm.23472.12 4.10.0 - 8.0.0-rtm.23472.4 - 8.0.0-rtm.23472.4 - 8.0.0-rtm.23472.4 + 8.0.0-rtm.23472.9 + 8.0.0-rtm.23472.9 + 8.0.0-rtm.23472.9 - 8.0.0-rtm.23472.1 - 8.0.0-rtm.23472.1 + 8.0.0-rtm.23472.2 + 8.0.0-rtm.23472.2 From 3363e20118f7d5a0c5bd0facda546f62053586e4 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Tue, 26 Sep 2023 17:07:50 +0000 Subject: [PATCH 057/222] [release/8.0] Update dependencies from dotnet/wpf (#3865) [release/8.0] Update dependencies from dotnet/wpf - Coherency Updates: - Microsoft.Private.Winforms: from 8.0.0-rtm.23472.9 to 8.0.0-rtm.23475.6 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Internal.Runtime.WindowsDesktop.Transport: from 8.0.0-rtm.23472.12 to 8.0.0-rtm.23475.7 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23472.9 to 8.0.0-rtm.23475.6 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.NETCore.App.Ref: from 8.0.0-rtm.23472.12 to 8.0.0-rtm.23475.7 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23472.9 to 8.0.0-rtm.23475.6 (parent: Microsoft.DotNet.Wpf.GitHub) - VS.Redist.Common.NetCore.SharedFramework.x64.8.0: from 8.0.0-rtm.23472.12 to 8.0.0-rtm.23475.7 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23472.9 to 8.0.0-rtm.23475.6 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.NETCore.App.Runtime.win-x64: from 8.0.0-rtm.23472.12 to 8.0.0-rtm.23475.7 (parent: Microsoft.Private.Winforms) - Microsoft.Dotnet.WinForms.ProjectTemplates: from 8.0.0-rtm.23472.9 to 8.0.0-rtm.23475.6 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rtm.23472.9 to 8.0.0-rtm.23475.6 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Win32.Registry.AccessControl: from 8.0.0-rtm.23472.12 to 8.0.0-rtm.23475.7 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23472.9 to 8.0.0-rtm.23475.6 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Win32.SystemEvents: from 8.0.0-rtm.23472.12 to 8.0.0-rtm.23475.7 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23472.9 to 8.0.0-rtm.23475.6 (parent: Microsoft.DotNet.Wpf.GitHub) - System.CodeDom: from 8.0.0-rtm.23472.12 to 8.0.0-rtm.23475.7 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23472.9 to 8.0.0-rtm.23475.6 (parent: Microsoft.DotNet.Wpf.GitHub) - System.ComponentModel.Composition: from 8.0.0-rtm.23472.12 to 8.0.0-rtm.23475.7 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23472.9 to 8.0.0-rtm.23475.6 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Configuration.ConfigurationManager: from 8.0.0-rtm.23472.12 to 8.0.0-rtm.23475.7 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23472.9 to 8.0.0-rtm.23475.6 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Data.Odbc: from 8.0.0-rtm.23472.12 to 8.0.0-rtm.23475.7 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23472.9 to 8.0.0-rtm.23475.6 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Data.OleDb: from 8.0.0-rtm.23472.12 to 8.0.0-rtm.23475.7 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23472.9 to 8.0.0-rtm.23475.6 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Diagnostics.EventLog: from 8.0.0-rtm.23472.12 to 8.0.0-rtm.23475.7 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23472.9 to 8.0.0-rtm.23475.6 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Diagnostics.PerformanceCounter: from 8.0.0-rtm.23472.12 to 8.0.0-rtm.23475.7 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23472.9 to 8.0.0-rtm.23475.6 (parent: Microsoft.DotNet.Wpf.GitHub) - System.DirectoryServices.AccountManagement: from 8.0.0-rtm.23472.12 to 8.0.0-rtm.23475.7 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23472.9 to 8.0.0-rtm.23475.6 (parent: Microsoft.DotNet.Wpf.GitHub) - System.DirectoryServices.Protocols: from 8.0.0-rtm.23472.12 to 8.0.0-rtm.23475.7 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23472.9 to 8.0.0-rtm.23475.6 (parent: Microsoft.DotNet.Wpf.GitHub) - System.DirectoryServices: from 8.0.0-rtm.23472.12 to 8.0.0-rtm.23475.7 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23472.9 to 8.0.0-rtm.23475.6 (parent: Microsoft.DotNet.Wpf.GitHub) - System.IO.Packaging: from 8.0.0-rtm.23472.12 to 8.0.0-rtm.23475.7 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23472.9 to 8.0.0-rtm.23475.6 (parent: Microsoft.DotNet.Wpf.GitHub) - System.IO.Ports: from 8.0.0-rtm.23472.12 to 8.0.0-rtm.23475.7 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23472.9 to 8.0.0-rtm.23475.6 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Management: from 8.0.0-rtm.23472.12 to 8.0.0-rtm.23475.7 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23472.9 to 8.0.0-rtm.23475.6 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Reflection.Context: from 8.0.0-rtm.23472.12 to 8.0.0-rtm.23475.7 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23472.9 to 8.0.0-rtm.23475.6 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Runtime.Caching: from 8.0.0-rtm.23472.12 to 8.0.0-rtm.23475.7 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23472.9 to 8.0.0-rtm.23475.6 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Security.Cryptography.Pkcs: from 8.0.0-rtm.23472.12 to 8.0.0-rtm.23475.7 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23472.9 to 8.0.0-rtm.23475.6 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Security.Cryptography.ProtectedData: from 8.0.0-rtm.23472.12 to 8.0.0-rtm.23475.7 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23472.9 to 8.0.0-rtm.23475.6 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Security.Cryptography.Xml: from 8.0.0-rtm.23472.12 to 8.0.0-rtm.23475.7 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23472.9 to 8.0.0-rtm.23475.6 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Security.Permissions: from 8.0.0-rtm.23472.12 to 8.0.0-rtm.23475.7 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23472.9 to 8.0.0-rtm.23475.6 (parent: Microsoft.DotNet.Wpf.GitHub) - System.ServiceModel.Syndication: from 8.0.0-rtm.23472.12 to 8.0.0-rtm.23475.7 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23472.9 to 8.0.0-rtm.23475.6 (parent: Microsoft.DotNet.Wpf.GitHub) - System.ServiceProcess.ServiceController: from 8.0.0-rtm.23472.12 to 8.0.0-rtm.23475.7 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23472.9 to 8.0.0-rtm.23475.6 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Speech: from 8.0.0-rtm.23472.12 to 8.0.0-rtm.23475.7 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23472.9 to 8.0.0-rtm.23475.6 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Text.Encoding.CodePages: from 8.0.0-rtm.23472.12 to 8.0.0-rtm.23475.7 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23472.9 to 8.0.0-rtm.23475.6 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Threading.AccessControl: from 8.0.0-rtm.23472.12 to 8.0.0-rtm.23475.7 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23472.9 to 8.0.0-rtm.23475.6 (parent: Microsoft.DotNet.Wpf.GitHub) - System.ComponentModel.Composition.Registration: from 8.0.0-rtm.23472.12 to 8.0.0-rtm.23475.7 (parent: Microsoft.Private.Winforms) - System.Drawing.Common: from 8.0.0-rtm.23472.9 to 8.0.0-rtm.23475.6 (parent: Microsoft.DotNet.Wpf.GitHub) --- eng/Version.Details.xml | 148 ++++++++++++++++++++-------------------- eng/Versions.props | 72 +++++++++---------- 2 files changed, 110 insertions(+), 110 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index b70765124..4d5456b06 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,153 +1,153 @@ - + https://github.com/dotnet/runtime - e95228dbcf7a69f87b00da969b0cabf2e62ab207 + a3d5300baee03169bf737cfc4e9b1f7dbece4d05 - + https://github.com/dotnet/winforms - ef7f2e577d43de5d19d69f9f114894e1150025fd + 6093320203df0e82e2e228df152acd23bb9b6692 - + https://github.com/dotnet/wpf - ee97472a11bfcc2c3e45fcc8e56ab71bcad09237 + 8732e3b06c3f1bd587ad0019881506f3e87ff7d7 - + https://github.com/dotnet/wpf - ee97472a11bfcc2c3e45fcc8e56ab71bcad09237 + 8732e3b06c3f1bd587ad0019881506f3e87ff7d7 - + https://github.com/dotnet/runtime - e95228dbcf7a69f87b00da969b0cabf2e62ab207 + a3d5300baee03169bf737cfc4e9b1f7dbece4d05 - + https://github.com/dotnet/runtime - e95228dbcf7a69f87b00da969b0cabf2e62ab207 + a3d5300baee03169bf737cfc4e9b1f7dbece4d05 - + https://github.com/dotnet/runtime - e95228dbcf7a69f87b00da969b0cabf2e62ab207 + a3d5300baee03169bf737cfc4e9b1f7dbece4d05 - + https://github.com/dotnet/winforms - ef7f2e577d43de5d19d69f9f114894e1150025fd + 6093320203df0e82e2e228df152acd23bb9b6692 - + https://github.com/dotnet/wpf - ee97472a11bfcc2c3e45fcc8e56ab71bcad09237 + 8732e3b06c3f1bd587ad0019881506f3e87ff7d7 - + https://github.com/dotnet/runtime - e95228dbcf7a69f87b00da969b0cabf2e62ab207 + a3d5300baee03169bf737cfc4e9b1f7dbece4d05 - + https://github.com/dotnet/runtime - e95228dbcf7a69f87b00da969b0cabf2e62ab207 + a3d5300baee03169bf737cfc4e9b1f7dbece4d05 - + https://github.com/dotnet/runtime - e95228dbcf7a69f87b00da969b0cabf2e62ab207 + a3d5300baee03169bf737cfc4e9b1f7dbece4d05 - + https://github.com/dotnet/runtime - e95228dbcf7a69f87b00da969b0cabf2e62ab207 + a3d5300baee03169bf737cfc4e9b1f7dbece4d05 - + https://github.com/dotnet/runtime - e95228dbcf7a69f87b00da969b0cabf2e62ab207 + a3d5300baee03169bf737cfc4e9b1f7dbece4d05 - + https://github.com/dotnet/runtime - e95228dbcf7a69f87b00da969b0cabf2e62ab207 + a3d5300baee03169bf737cfc4e9b1f7dbece4d05 - + https://github.com/dotnet/runtime - e95228dbcf7a69f87b00da969b0cabf2e62ab207 + a3d5300baee03169bf737cfc4e9b1f7dbece4d05 - + https://github.com/dotnet/runtime - e95228dbcf7a69f87b00da969b0cabf2e62ab207 + a3d5300baee03169bf737cfc4e9b1f7dbece4d05 - + https://github.com/dotnet/runtime - e95228dbcf7a69f87b00da969b0cabf2e62ab207 + a3d5300baee03169bf737cfc4e9b1f7dbece4d05 - + https://github.com/dotnet/runtime - e95228dbcf7a69f87b00da969b0cabf2e62ab207 + a3d5300baee03169bf737cfc4e9b1f7dbece4d05 - + https://github.com/dotnet/runtime - e95228dbcf7a69f87b00da969b0cabf2e62ab207 + a3d5300baee03169bf737cfc4e9b1f7dbece4d05 - + https://github.com/dotnet/runtime - e95228dbcf7a69f87b00da969b0cabf2e62ab207 + a3d5300baee03169bf737cfc4e9b1f7dbece4d05 - + https://github.com/dotnet/runtime - e95228dbcf7a69f87b00da969b0cabf2e62ab207 + a3d5300baee03169bf737cfc4e9b1f7dbece4d05 - + https://github.com/dotnet/runtime - e95228dbcf7a69f87b00da969b0cabf2e62ab207 + a3d5300baee03169bf737cfc4e9b1f7dbece4d05 - + https://github.com/dotnet/runtime - e95228dbcf7a69f87b00da969b0cabf2e62ab207 + a3d5300baee03169bf737cfc4e9b1f7dbece4d05 - + https://github.com/dotnet/runtime - e95228dbcf7a69f87b00da969b0cabf2e62ab207 + a3d5300baee03169bf737cfc4e9b1f7dbece4d05 - + https://github.com/dotnet/runtime - e95228dbcf7a69f87b00da969b0cabf2e62ab207 + a3d5300baee03169bf737cfc4e9b1f7dbece4d05 - + https://github.com/dotnet/runtime - e95228dbcf7a69f87b00da969b0cabf2e62ab207 + a3d5300baee03169bf737cfc4e9b1f7dbece4d05 - + https://github.com/dotnet/runtime - e95228dbcf7a69f87b00da969b0cabf2e62ab207 + a3d5300baee03169bf737cfc4e9b1f7dbece4d05 - + https://github.com/dotnet/runtime - e95228dbcf7a69f87b00da969b0cabf2e62ab207 + a3d5300baee03169bf737cfc4e9b1f7dbece4d05 - + https://github.com/dotnet/runtime - e95228dbcf7a69f87b00da969b0cabf2e62ab207 + a3d5300baee03169bf737cfc4e9b1f7dbece4d05 - + https://github.com/dotnet/runtime - e95228dbcf7a69f87b00da969b0cabf2e62ab207 + a3d5300baee03169bf737cfc4e9b1f7dbece4d05 - + https://github.com/dotnet/runtime - e95228dbcf7a69f87b00da969b0cabf2e62ab207 + a3d5300baee03169bf737cfc4e9b1f7dbece4d05 - + https://github.com/dotnet/runtime - e95228dbcf7a69f87b00da969b0cabf2e62ab207 + a3d5300baee03169bf737cfc4e9b1f7dbece4d05 - + https://github.com/dotnet/runtime - e95228dbcf7a69f87b00da969b0cabf2e62ab207 + a3d5300baee03169bf737cfc4e9b1f7dbece4d05 - + https://github.com/dotnet/runtime - e95228dbcf7a69f87b00da969b0cabf2e62ab207 + a3d5300baee03169bf737cfc4e9b1f7dbece4d05 - + https://github.com/dotnet/runtime - e95228dbcf7a69f87b00da969b0cabf2e62ab207 + a3d5300baee03169bf737cfc4e9b1f7dbece4d05 - + https://github.com/dotnet/winforms - ef7f2e577d43de5d19d69f9f114894e1150025fd + 6093320203df0e82e2e228df152acd23bb9b6692 diff --git a/eng/Versions.props b/eng/Versions.props index 73e99a8f2..b801b475b 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -25,51 +25,51 @@ 6.2.4 - 8.0.0-rtm.23472.12 - 8.0.0-rtm.23472.12 - 8.0.0-rtm.23472.12 - 8.0.0-rtm.23472.12 + 8.0.0-rtm.23475.7 + 8.0.0-rtm.23475.7 + 8.0.0-rtm.23475.7 + 8.0.0-rtm.23475.7 5.0.0 - 8.0.0-rtm.23472.12 - 8.0.0-rtm.23472.12 - 8.0.0-rtm.23472.12 - 8.0.0-rtm.23472.12 - 8.0.0-rtm.23472.12 - 8.0.0-rtm.23472.12 - 8.0.0-rtm.23472.12 - 8.0.0-rtm.23472.12 - 8.0.0-rtm.23472.12 - 8.0.0-rtm.23472.12 - 8.0.0-rtm.23472.12 - 8.0.0-rtm.23472.12 + 8.0.0-rtm.23475.7 + 8.0.0-rtm.23475.7 + 8.0.0-rtm.23475.7 + 8.0.0-rtm.23475.7 + 8.0.0-rtm.23475.7 + 8.0.0-rtm.23475.7 + 8.0.0-rtm.23475.7 + 8.0.0-rtm.23475.7 + 8.0.0-rtm.23475.7 + 8.0.0-rtm.23475.7 + 8.0.0-rtm.23475.7 + 8.0.0-rtm.23475.7 5.0.0 - 8.0.0-rtm.23472.12 + 8.0.0-rtm.23475.7 5.0.0 - 8.0.0-rtm.23472.12 - 8.0.0-rtm.23472.12 - 8.0.0-rtm.23472.12 - 8.0.0-rtm.23472.12 + 8.0.0-rtm.23475.7 + 8.0.0-rtm.23475.7 + 8.0.0-rtm.23475.7 + 8.0.0-rtm.23475.7 6.0.0 5.0.0 - 8.0.0-rtm.23472.12 - 8.0.0-rtm.23472.12 - 8.0.0-rtm.23472.12 - 8.0.0-rtm.23472.12 + 8.0.0-rtm.23475.7 + 8.0.0-rtm.23475.7 + 8.0.0-rtm.23475.7 + 8.0.0-rtm.23475.7 5.0.0 - 8.0.0-rtm.23472.12 - 8.0.0-rtm.23472.12 - 8.0.0-rtm.23472.12 - 8.0.0-rtm.23472.12 - 8.0.0-rtm.23472.12 - 8.0.0-rtm.23472.12 + 8.0.0-rtm.23475.7 + 8.0.0-rtm.23475.7 + 8.0.0-rtm.23475.7 + 8.0.0-rtm.23475.7 + 8.0.0-rtm.23475.7 + 8.0.0-rtm.23475.7 4.10.0 - 8.0.0-rtm.23472.9 - 8.0.0-rtm.23472.9 - 8.0.0-rtm.23472.9 + 8.0.0-rtm.23475.6 + 8.0.0-rtm.23475.6 + 8.0.0-rtm.23475.6 - 8.0.0-rtm.23472.2 - 8.0.0-rtm.23472.2 + 8.0.0-rtm.23475.3 + 8.0.0-rtm.23475.3 From f8b403bd16517af8d0e39f02175165e27abd96f2 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Wed, 27 Sep 2023 20:43:55 +0000 Subject: [PATCH 058/222] [release/8.0] Update dependencies from dotnet/wpf (#3867) [release/8.0] Update dependencies from dotnet/wpf - Coherency Updates: - Microsoft.Private.Winforms: from 8.0.0-rtm.23475.6 to 8.0.0-rtm.23477.6 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Internal.Runtime.WindowsDesktop.Transport: from 8.0.0-rtm.23475.7 to 8.0.0-rtm.23476.15 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23475.6 to 8.0.0-rtm.23477.6 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.NETCore.App.Ref: from 8.0.0-rtm.23475.7 to 8.0.0-rtm.23476.15 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23475.6 to 8.0.0-rtm.23477.6 (parent: Microsoft.DotNet.Wpf.GitHub) - VS.Redist.Common.NetCore.SharedFramework.x64.8.0: from 8.0.0-rtm.23475.7 to 8.0.0-rtm.23476.15 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23475.6 to 8.0.0-rtm.23477.6 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.NETCore.App.Runtime.win-x64: from 8.0.0-rtm.23475.7 to 8.0.0-rtm.23476.15 (parent: Microsoft.Private.Winforms) - Microsoft.Dotnet.WinForms.ProjectTemplates: from 8.0.0-rtm.23475.6 to 8.0.0-rtm.23477.6 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rtm.23475.6 to 8.0.0-rtm.23477.6 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Win32.Registry.AccessControl: from 8.0.0-rtm.23475.7 to 8.0.0-rtm.23476.15 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23475.6 to 8.0.0-rtm.23477.6 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Win32.SystemEvents: from 8.0.0-rtm.23475.7 to 8.0.0-rtm.23476.15 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23475.6 to 8.0.0-rtm.23477.6 (parent: Microsoft.DotNet.Wpf.GitHub) - System.CodeDom: from 8.0.0-rtm.23475.7 to 8.0.0-rtm.23476.15 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23475.6 to 8.0.0-rtm.23477.6 (parent: Microsoft.DotNet.Wpf.GitHub) - System.ComponentModel.Composition: from 8.0.0-rtm.23475.7 to 8.0.0-rtm.23476.15 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23475.6 to 8.0.0-rtm.23477.6 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Configuration.ConfigurationManager: from 8.0.0-rtm.23475.7 to 8.0.0-rtm.23476.15 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23475.6 to 8.0.0-rtm.23477.6 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Data.Odbc: from 8.0.0-rtm.23475.7 to 8.0.0-rtm.23476.15 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23475.6 to 8.0.0-rtm.23477.6 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Data.OleDb: from 8.0.0-rtm.23475.7 to 8.0.0-rtm.23476.15 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23475.6 to 8.0.0-rtm.23477.6 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Diagnostics.EventLog: from 8.0.0-rtm.23475.7 to 8.0.0-rtm.23476.15 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23475.6 to 8.0.0-rtm.23477.6 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Diagnostics.PerformanceCounter: from 8.0.0-rtm.23475.7 to 8.0.0-rtm.23476.15 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23475.6 to 8.0.0-rtm.23477.6 (parent: Microsoft.DotNet.Wpf.GitHub) - System.DirectoryServices.AccountManagement: from 8.0.0-rtm.23475.7 to 8.0.0-rtm.23476.15 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23475.6 to 8.0.0-rtm.23477.6 (parent: Microsoft.DotNet.Wpf.GitHub) - System.DirectoryServices.Protocols: from 8.0.0-rtm.23475.7 to 8.0.0-rtm.23476.15 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23475.6 to 8.0.0-rtm.23477.6 (parent: Microsoft.DotNet.Wpf.GitHub) - System.DirectoryServices: from 8.0.0-rtm.23475.7 to 8.0.0-rtm.23476.15 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23475.6 to 8.0.0-rtm.23477.6 (parent: Microsoft.DotNet.Wpf.GitHub) - System.IO.Packaging: from 8.0.0-rtm.23475.7 to 8.0.0-rtm.23476.15 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23475.6 to 8.0.0-rtm.23477.6 (parent: Microsoft.DotNet.Wpf.GitHub) - System.IO.Ports: from 8.0.0-rtm.23475.7 to 8.0.0-rtm.23476.15 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23475.6 to 8.0.0-rtm.23477.6 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Management: from 8.0.0-rtm.23475.7 to 8.0.0-rtm.23476.15 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23475.6 to 8.0.0-rtm.23477.6 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Reflection.Context: from 8.0.0-rtm.23475.7 to 8.0.0-rtm.23476.15 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23475.6 to 8.0.0-rtm.23477.6 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Runtime.Caching: from 8.0.0-rtm.23475.7 to 8.0.0-rtm.23476.15 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23475.6 to 8.0.0-rtm.23477.6 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Security.Cryptography.Pkcs: from 8.0.0-rtm.23475.7 to 8.0.0-rtm.23476.15 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23475.6 to 8.0.0-rtm.23477.6 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Security.Cryptography.ProtectedData: from 8.0.0-rtm.23475.7 to 8.0.0-rtm.23476.15 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23475.6 to 8.0.0-rtm.23477.6 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Security.Cryptography.Xml: from 8.0.0-rtm.23475.7 to 8.0.0-rtm.23476.15 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23475.6 to 8.0.0-rtm.23477.6 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Security.Permissions: from 8.0.0-rtm.23475.7 to 8.0.0-rtm.23476.15 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23475.6 to 8.0.0-rtm.23477.6 (parent: Microsoft.DotNet.Wpf.GitHub) - System.ServiceModel.Syndication: from 8.0.0-rtm.23475.7 to 8.0.0-rtm.23476.15 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23475.6 to 8.0.0-rtm.23477.6 (parent: Microsoft.DotNet.Wpf.GitHub) - System.ServiceProcess.ServiceController: from 8.0.0-rtm.23475.7 to 8.0.0-rtm.23476.15 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23475.6 to 8.0.0-rtm.23477.6 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Speech: from 8.0.0-rtm.23475.7 to 8.0.0-rtm.23476.15 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23475.6 to 8.0.0-rtm.23477.6 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Text.Encoding.CodePages: from 8.0.0-rtm.23475.7 to 8.0.0-rtm.23476.15 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23475.6 to 8.0.0-rtm.23477.6 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Threading.AccessControl: from 8.0.0-rtm.23475.7 to 8.0.0-rtm.23476.15 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23475.6 to 8.0.0-rtm.23477.6 (parent: Microsoft.DotNet.Wpf.GitHub) - System.ComponentModel.Composition.Registration: from 8.0.0-rtm.23475.7 to 8.0.0-rtm.23476.15 (parent: Microsoft.Private.Winforms) - System.Drawing.Common: from 8.0.0-rtm.23475.6 to 8.0.0-rtm.23477.6 (parent: Microsoft.DotNet.Wpf.GitHub) --- eng/Version.Details.xml | 148 ++++++++++++++++++++-------------------- eng/Versions.props | 72 +++++++++---------- 2 files changed, 110 insertions(+), 110 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 4d5456b06..d17a625b3 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,153 +1,153 @@ - + https://github.com/dotnet/runtime - a3d5300baee03169bf737cfc4e9b1f7dbece4d05 + 0933e300f0c0647a15a0433f1a3b07bcab9882f4 - + https://github.com/dotnet/winforms - 6093320203df0e82e2e228df152acd23bb9b6692 + 1b9c660d20132cd343a6ad747b8a6e633793876f - + https://github.com/dotnet/wpf - 8732e3b06c3f1bd587ad0019881506f3e87ff7d7 + 0f7713f5865b997b73e29c4420204b456ac5bfc2 - + https://github.com/dotnet/wpf - 8732e3b06c3f1bd587ad0019881506f3e87ff7d7 + 0f7713f5865b997b73e29c4420204b456ac5bfc2 - + https://github.com/dotnet/runtime - a3d5300baee03169bf737cfc4e9b1f7dbece4d05 + 0933e300f0c0647a15a0433f1a3b07bcab9882f4 - + https://github.com/dotnet/runtime - a3d5300baee03169bf737cfc4e9b1f7dbece4d05 + 0933e300f0c0647a15a0433f1a3b07bcab9882f4 - + https://github.com/dotnet/runtime - a3d5300baee03169bf737cfc4e9b1f7dbece4d05 + 0933e300f0c0647a15a0433f1a3b07bcab9882f4 - + https://github.com/dotnet/winforms - 6093320203df0e82e2e228df152acd23bb9b6692 + 1b9c660d20132cd343a6ad747b8a6e633793876f - + https://github.com/dotnet/wpf - 8732e3b06c3f1bd587ad0019881506f3e87ff7d7 + 0f7713f5865b997b73e29c4420204b456ac5bfc2 - + https://github.com/dotnet/runtime - a3d5300baee03169bf737cfc4e9b1f7dbece4d05 + 0933e300f0c0647a15a0433f1a3b07bcab9882f4 - + https://github.com/dotnet/runtime - a3d5300baee03169bf737cfc4e9b1f7dbece4d05 + 0933e300f0c0647a15a0433f1a3b07bcab9882f4 - + https://github.com/dotnet/runtime - a3d5300baee03169bf737cfc4e9b1f7dbece4d05 + 0933e300f0c0647a15a0433f1a3b07bcab9882f4 - + https://github.com/dotnet/runtime - a3d5300baee03169bf737cfc4e9b1f7dbece4d05 + 0933e300f0c0647a15a0433f1a3b07bcab9882f4 - + https://github.com/dotnet/runtime - a3d5300baee03169bf737cfc4e9b1f7dbece4d05 + 0933e300f0c0647a15a0433f1a3b07bcab9882f4 - + https://github.com/dotnet/runtime - a3d5300baee03169bf737cfc4e9b1f7dbece4d05 + 0933e300f0c0647a15a0433f1a3b07bcab9882f4 - + https://github.com/dotnet/runtime - a3d5300baee03169bf737cfc4e9b1f7dbece4d05 + 0933e300f0c0647a15a0433f1a3b07bcab9882f4 - + https://github.com/dotnet/runtime - a3d5300baee03169bf737cfc4e9b1f7dbece4d05 + 0933e300f0c0647a15a0433f1a3b07bcab9882f4 - + https://github.com/dotnet/runtime - a3d5300baee03169bf737cfc4e9b1f7dbece4d05 + 0933e300f0c0647a15a0433f1a3b07bcab9882f4 - + https://github.com/dotnet/runtime - a3d5300baee03169bf737cfc4e9b1f7dbece4d05 + 0933e300f0c0647a15a0433f1a3b07bcab9882f4 - + https://github.com/dotnet/runtime - a3d5300baee03169bf737cfc4e9b1f7dbece4d05 + 0933e300f0c0647a15a0433f1a3b07bcab9882f4 - + https://github.com/dotnet/runtime - a3d5300baee03169bf737cfc4e9b1f7dbece4d05 + 0933e300f0c0647a15a0433f1a3b07bcab9882f4 - + https://github.com/dotnet/runtime - a3d5300baee03169bf737cfc4e9b1f7dbece4d05 + 0933e300f0c0647a15a0433f1a3b07bcab9882f4 - + https://github.com/dotnet/runtime - a3d5300baee03169bf737cfc4e9b1f7dbece4d05 + 0933e300f0c0647a15a0433f1a3b07bcab9882f4 - + https://github.com/dotnet/runtime - a3d5300baee03169bf737cfc4e9b1f7dbece4d05 + 0933e300f0c0647a15a0433f1a3b07bcab9882f4 - + https://github.com/dotnet/runtime - a3d5300baee03169bf737cfc4e9b1f7dbece4d05 + 0933e300f0c0647a15a0433f1a3b07bcab9882f4 - + https://github.com/dotnet/runtime - a3d5300baee03169bf737cfc4e9b1f7dbece4d05 + 0933e300f0c0647a15a0433f1a3b07bcab9882f4 - + https://github.com/dotnet/runtime - a3d5300baee03169bf737cfc4e9b1f7dbece4d05 + 0933e300f0c0647a15a0433f1a3b07bcab9882f4 - + https://github.com/dotnet/runtime - a3d5300baee03169bf737cfc4e9b1f7dbece4d05 + 0933e300f0c0647a15a0433f1a3b07bcab9882f4 - + https://github.com/dotnet/runtime - a3d5300baee03169bf737cfc4e9b1f7dbece4d05 + 0933e300f0c0647a15a0433f1a3b07bcab9882f4 - + https://github.com/dotnet/runtime - a3d5300baee03169bf737cfc4e9b1f7dbece4d05 + 0933e300f0c0647a15a0433f1a3b07bcab9882f4 - + https://github.com/dotnet/runtime - a3d5300baee03169bf737cfc4e9b1f7dbece4d05 + 0933e300f0c0647a15a0433f1a3b07bcab9882f4 - + https://github.com/dotnet/runtime - a3d5300baee03169bf737cfc4e9b1f7dbece4d05 + 0933e300f0c0647a15a0433f1a3b07bcab9882f4 - + https://github.com/dotnet/runtime - a3d5300baee03169bf737cfc4e9b1f7dbece4d05 + 0933e300f0c0647a15a0433f1a3b07bcab9882f4 - + https://github.com/dotnet/runtime - a3d5300baee03169bf737cfc4e9b1f7dbece4d05 + 0933e300f0c0647a15a0433f1a3b07bcab9882f4 - + https://github.com/dotnet/runtime - a3d5300baee03169bf737cfc4e9b1f7dbece4d05 + 0933e300f0c0647a15a0433f1a3b07bcab9882f4 - + https://github.com/dotnet/runtime - a3d5300baee03169bf737cfc4e9b1f7dbece4d05 + 0933e300f0c0647a15a0433f1a3b07bcab9882f4 - + https://github.com/dotnet/winforms - 6093320203df0e82e2e228df152acd23bb9b6692 + 1b9c660d20132cd343a6ad747b8a6e633793876f diff --git a/eng/Versions.props b/eng/Versions.props index b801b475b..faada10bf 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -25,51 +25,51 @@ 6.2.4 - 8.0.0-rtm.23475.7 - 8.0.0-rtm.23475.7 - 8.0.0-rtm.23475.7 - 8.0.0-rtm.23475.7 + 8.0.0-rtm.23476.15 + 8.0.0-rtm.23476.15 + 8.0.0-rtm.23476.15 + 8.0.0-rtm.23476.15 5.0.0 - 8.0.0-rtm.23475.7 - 8.0.0-rtm.23475.7 - 8.0.0-rtm.23475.7 - 8.0.0-rtm.23475.7 - 8.0.0-rtm.23475.7 - 8.0.0-rtm.23475.7 - 8.0.0-rtm.23475.7 - 8.0.0-rtm.23475.7 - 8.0.0-rtm.23475.7 - 8.0.0-rtm.23475.7 - 8.0.0-rtm.23475.7 - 8.0.0-rtm.23475.7 + 8.0.0-rtm.23476.15 + 8.0.0-rtm.23476.15 + 8.0.0-rtm.23476.15 + 8.0.0-rtm.23476.15 + 8.0.0-rtm.23476.15 + 8.0.0-rtm.23476.15 + 8.0.0-rtm.23476.15 + 8.0.0-rtm.23476.15 + 8.0.0-rtm.23476.15 + 8.0.0-rtm.23476.15 + 8.0.0-rtm.23476.15 + 8.0.0-rtm.23476.15 5.0.0 - 8.0.0-rtm.23475.7 + 8.0.0-rtm.23476.15 5.0.0 - 8.0.0-rtm.23475.7 - 8.0.0-rtm.23475.7 - 8.0.0-rtm.23475.7 - 8.0.0-rtm.23475.7 + 8.0.0-rtm.23476.15 + 8.0.0-rtm.23476.15 + 8.0.0-rtm.23476.15 + 8.0.0-rtm.23476.15 6.0.0 5.0.0 - 8.0.0-rtm.23475.7 - 8.0.0-rtm.23475.7 - 8.0.0-rtm.23475.7 - 8.0.0-rtm.23475.7 + 8.0.0-rtm.23476.15 + 8.0.0-rtm.23476.15 + 8.0.0-rtm.23476.15 + 8.0.0-rtm.23476.15 5.0.0 - 8.0.0-rtm.23475.7 - 8.0.0-rtm.23475.7 - 8.0.0-rtm.23475.7 - 8.0.0-rtm.23475.7 - 8.0.0-rtm.23475.7 - 8.0.0-rtm.23475.7 + 8.0.0-rtm.23476.15 + 8.0.0-rtm.23476.15 + 8.0.0-rtm.23476.15 + 8.0.0-rtm.23476.15 + 8.0.0-rtm.23476.15 + 8.0.0-rtm.23476.15 4.10.0 - 8.0.0-rtm.23475.6 - 8.0.0-rtm.23475.6 - 8.0.0-rtm.23475.6 + 8.0.0-rtm.23477.6 + 8.0.0-rtm.23477.6 + 8.0.0-rtm.23477.6 - 8.0.0-rtm.23475.3 - 8.0.0-rtm.23475.3 + 8.0.0-rtm.23477.1 + 8.0.0-rtm.23477.1 From 9f4e1e4041ba1bc25dcf96ea4ceac6c1bafadec1 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Thu, 28 Sep 2023 02:44:48 +0000 Subject: [PATCH 059/222] [release/8.0] Update dependencies from dotnet/wpf (#3868) [release/8.0] Update dependencies from dotnet/wpf - Coherency Updates: - Microsoft.Private.Winforms: from 8.0.0-rtm.23477.6 to 8.0.0-rtm.23477.15 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Internal.Runtime.WindowsDesktop.Transport: from 8.0.0-rtm.23476.15 to 8.0.0-rtm.23477.9 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23477.6 to 8.0.0-rtm.23477.15 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.NETCore.App.Ref: from 8.0.0-rtm.23476.15 to 8.0.0-rtm.23477.9 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23477.6 to 8.0.0-rtm.23477.15 (parent: Microsoft.DotNet.Wpf.GitHub) - VS.Redist.Common.NetCore.SharedFramework.x64.8.0: from 8.0.0-rtm.23476.15 to 8.0.0-rtm.23477.9 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23477.6 to 8.0.0-rtm.23477.15 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.NETCore.App.Runtime.win-x64: from 8.0.0-rtm.23476.15 to 8.0.0-rtm.23477.9 (parent: Microsoft.Private.Winforms) - Microsoft.Dotnet.WinForms.ProjectTemplates: from 8.0.0-rtm.23477.6 to 8.0.0-rtm.23477.15 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rtm.23477.6 to 8.0.0-rtm.23477.15 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Win32.Registry.AccessControl: from 8.0.0-rtm.23476.15 to 8.0.0-rtm.23477.9 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23477.6 to 8.0.0-rtm.23477.15 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Win32.SystemEvents: from 8.0.0-rtm.23476.15 to 8.0.0-rtm.23477.9 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23477.6 to 8.0.0-rtm.23477.15 (parent: Microsoft.DotNet.Wpf.GitHub) - System.CodeDom: from 8.0.0-rtm.23476.15 to 8.0.0-rtm.23477.9 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23477.6 to 8.0.0-rtm.23477.15 (parent: Microsoft.DotNet.Wpf.GitHub) - System.ComponentModel.Composition: from 8.0.0-rtm.23476.15 to 8.0.0-rtm.23477.9 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23477.6 to 8.0.0-rtm.23477.15 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Configuration.ConfigurationManager: from 8.0.0-rtm.23476.15 to 8.0.0-rtm.23477.9 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23477.6 to 8.0.0-rtm.23477.15 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Data.Odbc: from 8.0.0-rtm.23476.15 to 8.0.0-rtm.23477.9 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23477.6 to 8.0.0-rtm.23477.15 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Data.OleDb: from 8.0.0-rtm.23476.15 to 8.0.0-rtm.23477.9 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23477.6 to 8.0.0-rtm.23477.15 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Diagnostics.EventLog: from 8.0.0-rtm.23476.15 to 8.0.0-rtm.23477.9 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23477.6 to 8.0.0-rtm.23477.15 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Diagnostics.PerformanceCounter: from 8.0.0-rtm.23476.15 to 8.0.0-rtm.23477.9 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23477.6 to 8.0.0-rtm.23477.15 (parent: Microsoft.DotNet.Wpf.GitHub) - System.DirectoryServices.AccountManagement: from 8.0.0-rtm.23476.15 to 8.0.0-rtm.23477.9 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23477.6 to 8.0.0-rtm.23477.15 (parent: Microsoft.DotNet.Wpf.GitHub) - System.DirectoryServices.Protocols: from 8.0.0-rtm.23476.15 to 8.0.0-rtm.23477.9 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23477.6 to 8.0.0-rtm.23477.15 (parent: Microsoft.DotNet.Wpf.GitHub) - System.DirectoryServices: from 8.0.0-rtm.23476.15 to 8.0.0-rtm.23477.9 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23477.6 to 8.0.0-rtm.23477.15 (parent: Microsoft.DotNet.Wpf.GitHub) - System.IO.Packaging: from 8.0.0-rtm.23476.15 to 8.0.0-rtm.23477.9 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23477.6 to 8.0.0-rtm.23477.15 (parent: Microsoft.DotNet.Wpf.GitHub) - System.IO.Ports: from 8.0.0-rtm.23476.15 to 8.0.0-rtm.23477.9 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23477.6 to 8.0.0-rtm.23477.15 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Management: from 8.0.0-rtm.23476.15 to 8.0.0-rtm.23477.9 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23477.6 to 8.0.0-rtm.23477.15 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Reflection.Context: from 8.0.0-rtm.23476.15 to 8.0.0-rtm.23477.9 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23477.6 to 8.0.0-rtm.23477.15 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Runtime.Caching: from 8.0.0-rtm.23476.15 to 8.0.0-rtm.23477.9 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23477.6 to 8.0.0-rtm.23477.15 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Security.Cryptography.Pkcs: from 8.0.0-rtm.23476.15 to 8.0.0-rtm.23477.9 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23477.6 to 8.0.0-rtm.23477.15 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Security.Cryptography.ProtectedData: from 8.0.0-rtm.23476.15 to 8.0.0-rtm.23477.9 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23477.6 to 8.0.0-rtm.23477.15 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Security.Cryptography.Xml: from 8.0.0-rtm.23476.15 to 8.0.0-rtm.23477.9 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23477.6 to 8.0.0-rtm.23477.15 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Security.Permissions: from 8.0.0-rtm.23476.15 to 8.0.0-rtm.23477.9 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23477.6 to 8.0.0-rtm.23477.15 (parent: Microsoft.DotNet.Wpf.GitHub) - System.ServiceModel.Syndication: from 8.0.0-rtm.23476.15 to 8.0.0-rtm.23477.9 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23477.6 to 8.0.0-rtm.23477.15 (parent: Microsoft.DotNet.Wpf.GitHub) - System.ServiceProcess.ServiceController: from 8.0.0-rtm.23476.15 to 8.0.0-rtm.23477.9 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23477.6 to 8.0.0-rtm.23477.15 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Speech: from 8.0.0-rtm.23476.15 to 8.0.0-rtm.23477.9 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23477.6 to 8.0.0-rtm.23477.15 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Text.Encoding.CodePages: from 8.0.0-rtm.23476.15 to 8.0.0-rtm.23477.9 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23477.6 to 8.0.0-rtm.23477.15 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Threading.AccessControl: from 8.0.0-rtm.23476.15 to 8.0.0-rtm.23477.9 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23477.6 to 8.0.0-rtm.23477.15 (parent: Microsoft.DotNet.Wpf.GitHub) - System.ComponentModel.Composition.Registration: from 8.0.0-rtm.23476.15 to 8.0.0-rtm.23477.9 (parent: Microsoft.Private.Winforms) - System.Drawing.Common: from 8.0.0-rtm.23477.6 to 8.0.0-rtm.23477.15 (parent: Microsoft.DotNet.Wpf.GitHub) --- eng/Version.Details.xml | 148 ++++++++++++++++++++-------------------- eng/Versions.props | 72 +++++++++---------- 2 files changed, 110 insertions(+), 110 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index d17a625b3..c3ad5c957 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,153 +1,153 @@ - + https://github.com/dotnet/runtime - 0933e300f0c0647a15a0433f1a3b07bcab9882f4 + 885100b00bc944cbb698bc4cc2ec3ec18007534f - + https://github.com/dotnet/winforms - 1b9c660d20132cd343a6ad747b8a6e633793876f + 3653a59a7be8540e914656b4ef2fb26a0384f902 - + https://github.com/dotnet/wpf - 0f7713f5865b997b73e29c4420204b456ac5bfc2 + aacebe9dc98fec26170f2717530ba026d4c4cf26 - + https://github.com/dotnet/wpf - 0f7713f5865b997b73e29c4420204b456ac5bfc2 + aacebe9dc98fec26170f2717530ba026d4c4cf26 - + https://github.com/dotnet/runtime - 0933e300f0c0647a15a0433f1a3b07bcab9882f4 + 885100b00bc944cbb698bc4cc2ec3ec18007534f - + https://github.com/dotnet/runtime - 0933e300f0c0647a15a0433f1a3b07bcab9882f4 + 885100b00bc944cbb698bc4cc2ec3ec18007534f - + https://github.com/dotnet/runtime - 0933e300f0c0647a15a0433f1a3b07bcab9882f4 + 885100b00bc944cbb698bc4cc2ec3ec18007534f - + https://github.com/dotnet/winforms - 1b9c660d20132cd343a6ad747b8a6e633793876f + 3653a59a7be8540e914656b4ef2fb26a0384f902 - + https://github.com/dotnet/wpf - 0f7713f5865b997b73e29c4420204b456ac5bfc2 + aacebe9dc98fec26170f2717530ba026d4c4cf26 - + https://github.com/dotnet/runtime - 0933e300f0c0647a15a0433f1a3b07bcab9882f4 + 885100b00bc944cbb698bc4cc2ec3ec18007534f - + https://github.com/dotnet/runtime - 0933e300f0c0647a15a0433f1a3b07bcab9882f4 + 885100b00bc944cbb698bc4cc2ec3ec18007534f - + https://github.com/dotnet/runtime - 0933e300f0c0647a15a0433f1a3b07bcab9882f4 + 885100b00bc944cbb698bc4cc2ec3ec18007534f - + https://github.com/dotnet/runtime - 0933e300f0c0647a15a0433f1a3b07bcab9882f4 + 885100b00bc944cbb698bc4cc2ec3ec18007534f - + https://github.com/dotnet/runtime - 0933e300f0c0647a15a0433f1a3b07bcab9882f4 + 885100b00bc944cbb698bc4cc2ec3ec18007534f - + https://github.com/dotnet/runtime - 0933e300f0c0647a15a0433f1a3b07bcab9882f4 + 885100b00bc944cbb698bc4cc2ec3ec18007534f - + https://github.com/dotnet/runtime - 0933e300f0c0647a15a0433f1a3b07bcab9882f4 + 885100b00bc944cbb698bc4cc2ec3ec18007534f - + https://github.com/dotnet/runtime - 0933e300f0c0647a15a0433f1a3b07bcab9882f4 + 885100b00bc944cbb698bc4cc2ec3ec18007534f - + https://github.com/dotnet/runtime - 0933e300f0c0647a15a0433f1a3b07bcab9882f4 + 885100b00bc944cbb698bc4cc2ec3ec18007534f - + https://github.com/dotnet/runtime - 0933e300f0c0647a15a0433f1a3b07bcab9882f4 + 885100b00bc944cbb698bc4cc2ec3ec18007534f - + https://github.com/dotnet/runtime - 0933e300f0c0647a15a0433f1a3b07bcab9882f4 + 885100b00bc944cbb698bc4cc2ec3ec18007534f - + https://github.com/dotnet/runtime - 0933e300f0c0647a15a0433f1a3b07bcab9882f4 + 885100b00bc944cbb698bc4cc2ec3ec18007534f - + https://github.com/dotnet/runtime - 0933e300f0c0647a15a0433f1a3b07bcab9882f4 + 885100b00bc944cbb698bc4cc2ec3ec18007534f - + https://github.com/dotnet/runtime - 0933e300f0c0647a15a0433f1a3b07bcab9882f4 + 885100b00bc944cbb698bc4cc2ec3ec18007534f - + https://github.com/dotnet/runtime - 0933e300f0c0647a15a0433f1a3b07bcab9882f4 + 885100b00bc944cbb698bc4cc2ec3ec18007534f - + https://github.com/dotnet/runtime - 0933e300f0c0647a15a0433f1a3b07bcab9882f4 + 885100b00bc944cbb698bc4cc2ec3ec18007534f - + https://github.com/dotnet/runtime - 0933e300f0c0647a15a0433f1a3b07bcab9882f4 + 885100b00bc944cbb698bc4cc2ec3ec18007534f - + https://github.com/dotnet/runtime - 0933e300f0c0647a15a0433f1a3b07bcab9882f4 + 885100b00bc944cbb698bc4cc2ec3ec18007534f - + https://github.com/dotnet/runtime - 0933e300f0c0647a15a0433f1a3b07bcab9882f4 + 885100b00bc944cbb698bc4cc2ec3ec18007534f - + https://github.com/dotnet/runtime - 0933e300f0c0647a15a0433f1a3b07bcab9882f4 + 885100b00bc944cbb698bc4cc2ec3ec18007534f - + https://github.com/dotnet/runtime - 0933e300f0c0647a15a0433f1a3b07bcab9882f4 + 885100b00bc944cbb698bc4cc2ec3ec18007534f - + https://github.com/dotnet/runtime - 0933e300f0c0647a15a0433f1a3b07bcab9882f4 + 885100b00bc944cbb698bc4cc2ec3ec18007534f - + https://github.com/dotnet/runtime - 0933e300f0c0647a15a0433f1a3b07bcab9882f4 + 885100b00bc944cbb698bc4cc2ec3ec18007534f - + https://github.com/dotnet/runtime - 0933e300f0c0647a15a0433f1a3b07bcab9882f4 + 885100b00bc944cbb698bc4cc2ec3ec18007534f - + https://github.com/dotnet/runtime - 0933e300f0c0647a15a0433f1a3b07bcab9882f4 + 885100b00bc944cbb698bc4cc2ec3ec18007534f - + https://github.com/dotnet/runtime - 0933e300f0c0647a15a0433f1a3b07bcab9882f4 + 885100b00bc944cbb698bc4cc2ec3ec18007534f - + https://github.com/dotnet/runtime - 0933e300f0c0647a15a0433f1a3b07bcab9882f4 + 885100b00bc944cbb698bc4cc2ec3ec18007534f - + https://github.com/dotnet/winforms - 1b9c660d20132cd343a6ad747b8a6e633793876f + 3653a59a7be8540e914656b4ef2fb26a0384f902 diff --git a/eng/Versions.props b/eng/Versions.props index faada10bf..3cae640cc 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -25,51 +25,51 @@ 6.2.4 - 8.0.0-rtm.23476.15 - 8.0.0-rtm.23476.15 - 8.0.0-rtm.23476.15 - 8.0.0-rtm.23476.15 + 8.0.0-rtm.23477.9 + 8.0.0-rtm.23477.9 + 8.0.0-rtm.23477.9 + 8.0.0-rtm.23477.9 5.0.0 - 8.0.0-rtm.23476.15 - 8.0.0-rtm.23476.15 - 8.0.0-rtm.23476.15 - 8.0.0-rtm.23476.15 - 8.0.0-rtm.23476.15 - 8.0.0-rtm.23476.15 - 8.0.0-rtm.23476.15 - 8.0.0-rtm.23476.15 - 8.0.0-rtm.23476.15 - 8.0.0-rtm.23476.15 - 8.0.0-rtm.23476.15 - 8.0.0-rtm.23476.15 + 8.0.0-rtm.23477.9 + 8.0.0-rtm.23477.9 + 8.0.0-rtm.23477.9 + 8.0.0-rtm.23477.9 + 8.0.0-rtm.23477.9 + 8.0.0-rtm.23477.9 + 8.0.0-rtm.23477.9 + 8.0.0-rtm.23477.9 + 8.0.0-rtm.23477.9 + 8.0.0-rtm.23477.9 + 8.0.0-rtm.23477.9 + 8.0.0-rtm.23477.9 5.0.0 - 8.0.0-rtm.23476.15 + 8.0.0-rtm.23477.9 5.0.0 - 8.0.0-rtm.23476.15 - 8.0.0-rtm.23476.15 - 8.0.0-rtm.23476.15 - 8.0.0-rtm.23476.15 + 8.0.0-rtm.23477.9 + 8.0.0-rtm.23477.9 + 8.0.0-rtm.23477.9 + 8.0.0-rtm.23477.9 6.0.0 5.0.0 - 8.0.0-rtm.23476.15 - 8.0.0-rtm.23476.15 - 8.0.0-rtm.23476.15 - 8.0.0-rtm.23476.15 + 8.0.0-rtm.23477.9 + 8.0.0-rtm.23477.9 + 8.0.0-rtm.23477.9 + 8.0.0-rtm.23477.9 5.0.0 - 8.0.0-rtm.23476.15 - 8.0.0-rtm.23476.15 - 8.0.0-rtm.23476.15 - 8.0.0-rtm.23476.15 - 8.0.0-rtm.23476.15 - 8.0.0-rtm.23476.15 + 8.0.0-rtm.23477.9 + 8.0.0-rtm.23477.9 + 8.0.0-rtm.23477.9 + 8.0.0-rtm.23477.9 + 8.0.0-rtm.23477.9 + 8.0.0-rtm.23477.9 4.10.0 - 8.0.0-rtm.23477.6 - 8.0.0-rtm.23477.6 - 8.0.0-rtm.23477.6 + 8.0.0-rtm.23477.15 + 8.0.0-rtm.23477.15 + 8.0.0-rtm.23477.15 - 8.0.0-rtm.23477.1 - 8.0.0-rtm.23477.1 + 8.0.0-rtm.23477.4 + 8.0.0-rtm.23477.4 From e1b9e73c8dbfff5af569b97dae94ccf27563c958 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Fri, 29 Sep 2023 11:03:08 +0000 Subject: [PATCH 060/222] [release/8.0] Update dependencies from dotnet/wpf (#3869) [release/8.0] Update dependencies from dotnet/wpf - Coherency Updates: - Microsoft.Private.Winforms: from 8.0.0-rtm.23477.15 to 8.0.0-rtm.23479.1 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Internal.Runtime.WindowsDesktop.Transport: from 8.0.0-rtm.23477.9 to 8.0.0-rtm.23478.17 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23477.15 to 8.0.0-rtm.23479.1 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.NETCore.App.Ref: from 8.0.0-rtm.23477.9 to 8.0.0-rtm.23478.17 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23477.15 to 8.0.0-rtm.23479.1 (parent: Microsoft.DotNet.Wpf.GitHub) - VS.Redist.Common.NetCore.SharedFramework.x64.8.0: from 8.0.0-rtm.23477.9 to 8.0.0-rtm.23478.17 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23477.15 to 8.0.0-rtm.23479.1 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.NETCore.App.Runtime.win-x64: from 8.0.0-rtm.23477.9 to 8.0.0-rtm.23478.17 (parent: Microsoft.Private.Winforms) - Microsoft.Dotnet.WinForms.ProjectTemplates: from 8.0.0-rtm.23477.15 to 8.0.0-rtm.23479.1 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rtm.23477.15 to 8.0.0-rtm.23479.1 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Win32.Registry.AccessControl: from 8.0.0-rtm.23477.9 to 8.0.0-rtm.23478.17 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23477.15 to 8.0.0-rtm.23479.1 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Win32.SystemEvents: from 8.0.0-rtm.23477.9 to 8.0.0-rtm.23478.17 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23477.15 to 8.0.0-rtm.23479.1 (parent: Microsoft.DotNet.Wpf.GitHub) - System.CodeDom: from 8.0.0-rtm.23477.9 to 8.0.0-rtm.23478.17 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23477.15 to 8.0.0-rtm.23479.1 (parent: Microsoft.DotNet.Wpf.GitHub) - System.ComponentModel.Composition: from 8.0.0-rtm.23477.9 to 8.0.0-rtm.23478.17 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23477.15 to 8.0.0-rtm.23479.1 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Configuration.ConfigurationManager: from 8.0.0-rtm.23477.9 to 8.0.0-rtm.23478.17 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23477.15 to 8.0.0-rtm.23479.1 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Data.Odbc: from 8.0.0-rtm.23477.9 to 8.0.0-rtm.23478.17 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23477.15 to 8.0.0-rtm.23479.1 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Data.OleDb: from 8.0.0-rtm.23477.9 to 8.0.0-rtm.23478.17 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23477.15 to 8.0.0-rtm.23479.1 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Diagnostics.EventLog: from 8.0.0-rtm.23477.9 to 8.0.0-rtm.23478.17 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23477.15 to 8.0.0-rtm.23479.1 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Diagnostics.PerformanceCounter: from 8.0.0-rtm.23477.9 to 8.0.0-rtm.23478.17 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23477.15 to 8.0.0-rtm.23479.1 (parent: Microsoft.DotNet.Wpf.GitHub) - System.DirectoryServices.AccountManagement: from 8.0.0-rtm.23477.9 to 8.0.0-rtm.23478.17 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23477.15 to 8.0.0-rtm.23479.1 (parent: Microsoft.DotNet.Wpf.GitHub) - System.DirectoryServices.Protocols: from 8.0.0-rtm.23477.9 to 8.0.0-rtm.23478.17 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23477.15 to 8.0.0-rtm.23479.1 (parent: Microsoft.DotNet.Wpf.GitHub) - System.DirectoryServices: from 8.0.0-rtm.23477.9 to 8.0.0-rtm.23478.17 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23477.15 to 8.0.0-rtm.23479.1 (parent: Microsoft.DotNet.Wpf.GitHub) - System.IO.Packaging: from 8.0.0-rtm.23477.9 to 8.0.0-rtm.23478.17 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23477.15 to 8.0.0-rtm.23479.1 (parent: Microsoft.DotNet.Wpf.GitHub) - System.IO.Ports: from 8.0.0-rtm.23477.9 to 8.0.0-rtm.23478.17 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23477.15 to 8.0.0-rtm.23479.1 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Management: from 8.0.0-rtm.23477.9 to 8.0.0-rtm.23478.17 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23477.15 to 8.0.0-rtm.23479.1 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Reflection.Context: from 8.0.0-rtm.23477.9 to 8.0.0-rtm.23478.17 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23477.15 to 8.0.0-rtm.23479.1 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Runtime.Caching: from 8.0.0-rtm.23477.9 to 8.0.0-rtm.23478.17 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23477.15 to 8.0.0-rtm.23479.1 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Security.Cryptography.Pkcs: from 8.0.0-rtm.23477.9 to 8.0.0-rtm.23478.17 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23477.15 to 8.0.0-rtm.23479.1 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Security.Cryptography.ProtectedData: from 8.0.0-rtm.23477.9 to 8.0.0-rtm.23478.17 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23477.15 to 8.0.0-rtm.23479.1 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Security.Cryptography.Xml: from 8.0.0-rtm.23477.9 to 8.0.0-rtm.23478.17 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23477.15 to 8.0.0-rtm.23479.1 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Security.Permissions: from 8.0.0-rtm.23477.9 to 8.0.0-rtm.23478.17 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23477.15 to 8.0.0-rtm.23479.1 (parent: Microsoft.DotNet.Wpf.GitHub) - System.ServiceModel.Syndication: from 8.0.0-rtm.23477.9 to 8.0.0-rtm.23478.17 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23477.15 to 8.0.0-rtm.23479.1 (parent: Microsoft.DotNet.Wpf.GitHub) - System.ServiceProcess.ServiceController: from 8.0.0-rtm.23477.9 to 8.0.0-rtm.23478.17 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23477.15 to 8.0.0-rtm.23479.1 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Speech: from 8.0.0-rtm.23477.9 to 8.0.0-rtm.23478.17 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23477.15 to 8.0.0-rtm.23479.1 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Text.Encoding.CodePages: from 8.0.0-rtm.23477.9 to 8.0.0-rtm.23478.17 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23477.15 to 8.0.0-rtm.23479.1 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Threading.AccessControl: from 8.0.0-rtm.23477.9 to 8.0.0-rtm.23478.17 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23477.15 to 8.0.0-rtm.23479.1 (parent: Microsoft.DotNet.Wpf.GitHub) - System.ComponentModel.Composition.Registration: from 8.0.0-rtm.23477.9 to 8.0.0-rtm.23478.17 (parent: Microsoft.Private.Winforms) - System.Drawing.Common: from 8.0.0-rtm.23477.15 to 8.0.0-rtm.23479.1 (parent: Microsoft.DotNet.Wpf.GitHub) --- eng/Version.Details.xml | 148 ++++++++++++++++++++-------------------- eng/Versions.props | 72 +++++++++---------- 2 files changed, 110 insertions(+), 110 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index c3ad5c957..89bbaba0e 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,153 +1,153 @@ - + https://github.com/dotnet/runtime - 885100b00bc944cbb698bc4cc2ec3ec18007534f + b20f704cc00f390e5560a137deb8f0e64e863e1d - + https://github.com/dotnet/winforms - 3653a59a7be8540e914656b4ef2fb26a0384f902 + 637e44595048bfabc1078e0713a04f72bfbcb633 - + https://github.com/dotnet/wpf - aacebe9dc98fec26170f2717530ba026d4c4cf26 + 6ef4d6a906eee362d8bb447148c6d8d853eac2e6 - + https://github.com/dotnet/wpf - aacebe9dc98fec26170f2717530ba026d4c4cf26 + 6ef4d6a906eee362d8bb447148c6d8d853eac2e6 - + https://github.com/dotnet/runtime - 885100b00bc944cbb698bc4cc2ec3ec18007534f + b20f704cc00f390e5560a137deb8f0e64e863e1d - + https://github.com/dotnet/runtime - 885100b00bc944cbb698bc4cc2ec3ec18007534f + b20f704cc00f390e5560a137deb8f0e64e863e1d - + https://github.com/dotnet/runtime - 885100b00bc944cbb698bc4cc2ec3ec18007534f + b20f704cc00f390e5560a137deb8f0e64e863e1d - + https://github.com/dotnet/winforms - 3653a59a7be8540e914656b4ef2fb26a0384f902 + 637e44595048bfabc1078e0713a04f72bfbcb633 - + https://github.com/dotnet/wpf - aacebe9dc98fec26170f2717530ba026d4c4cf26 + 6ef4d6a906eee362d8bb447148c6d8d853eac2e6 - + https://github.com/dotnet/runtime - 885100b00bc944cbb698bc4cc2ec3ec18007534f + b20f704cc00f390e5560a137deb8f0e64e863e1d - + https://github.com/dotnet/runtime - 885100b00bc944cbb698bc4cc2ec3ec18007534f + b20f704cc00f390e5560a137deb8f0e64e863e1d - + https://github.com/dotnet/runtime - 885100b00bc944cbb698bc4cc2ec3ec18007534f + b20f704cc00f390e5560a137deb8f0e64e863e1d - + https://github.com/dotnet/runtime - 885100b00bc944cbb698bc4cc2ec3ec18007534f + b20f704cc00f390e5560a137deb8f0e64e863e1d - + https://github.com/dotnet/runtime - 885100b00bc944cbb698bc4cc2ec3ec18007534f + b20f704cc00f390e5560a137deb8f0e64e863e1d - + https://github.com/dotnet/runtime - 885100b00bc944cbb698bc4cc2ec3ec18007534f + b20f704cc00f390e5560a137deb8f0e64e863e1d - + https://github.com/dotnet/runtime - 885100b00bc944cbb698bc4cc2ec3ec18007534f + b20f704cc00f390e5560a137deb8f0e64e863e1d - + https://github.com/dotnet/runtime - 885100b00bc944cbb698bc4cc2ec3ec18007534f + b20f704cc00f390e5560a137deb8f0e64e863e1d - + https://github.com/dotnet/runtime - 885100b00bc944cbb698bc4cc2ec3ec18007534f + b20f704cc00f390e5560a137deb8f0e64e863e1d - + https://github.com/dotnet/runtime - 885100b00bc944cbb698bc4cc2ec3ec18007534f + b20f704cc00f390e5560a137deb8f0e64e863e1d - + https://github.com/dotnet/runtime - 885100b00bc944cbb698bc4cc2ec3ec18007534f + b20f704cc00f390e5560a137deb8f0e64e863e1d - + https://github.com/dotnet/runtime - 885100b00bc944cbb698bc4cc2ec3ec18007534f + b20f704cc00f390e5560a137deb8f0e64e863e1d - + https://github.com/dotnet/runtime - 885100b00bc944cbb698bc4cc2ec3ec18007534f + b20f704cc00f390e5560a137deb8f0e64e863e1d - + https://github.com/dotnet/runtime - 885100b00bc944cbb698bc4cc2ec3ec18007534f + b20f704cc00f390e5560a137deb8f0e64e863e1d - + https://github.com/dotnet/runtime - 885100b00bc944cbb698bc4cc2ec3ec18007534f + b20f704cc00f390e5560a137deb8f0e64e863e1d - + https://github.com/dotnet/runtime - 885100b00bc944cbb698bc4cc2ec3ec18007534f + b20f704cc00f390e5560a137deb8f0e64e863e1d - + https://github.com/dotnet/runtime - 885100b00bc944cbb698bc4cc2ec3ec18007534f + b20f704cc00f390e5560a137deb8f0e64e863e1d - + https://github.com/dotnet/runtime - 885100b00bc944cbb698bc4cc2ec3ec18007534f + b20f704cc00f390e5560a137deb8f0e64e863e1d - + https://github.com/dotnet/runtime - 885100b00bc944cbb698bc4cc2ec3ec18007534f + b20f704cc00f390e5560a137deb8f0e64e863e1d - + https://github.com/dotnet/runtime - 885100b00bc944cbb698bc4cc2ec3ec18007534f + b20f704cc00f390e5560a137deb8f0e64e863e1d - + https://github.com/dotnet/runtime - 885100b00bc944cbb698bc4cc2ec3ec18007534f + b20f704cc00f390e5560a137deb8f0e64e863e1d - + https://github.com/dotnet/runtime - 885100b00bc944cbb698bc4cc2ec3ec18007534f + b20f704cc00f390e5560a137deb8f0e64e863e1d - + https://github.com/dotnet/runtime - 885100b00bc944cbb698bc4cc2ec3ec18007534f + b20f704cc00f390e5560a137deb8f0e64e863e1d - + https://github.com/dotnet/runtime - 885100b00bc944cbb698bc4cc2ec3ec18007534f + b20f704cc00f390e5560a137deb8f0e64e863e1d - + https://github.com/dotnet/runtime - 885100b00bc944cbb698bc4cc2ec3ec18007534f + b20f704cc00f390e5560a137deb8f0e64e863e1d - + https://github.com/dotnet/runtime - 885100b00bc944cbb698bc4cc2ec3ec18007534f + b20f704cc00f390e5560a137deb8f0e64e863e1d - + https://github.com/dotnet/runtime - 885100b00bc944cbb698bc4cc2ec3ec18007534f + b20f704cc00f390e5560a137deb8f0e64e863e1d - + https://github.com/dotnet/winforms - 3653a59a7be8540e914656b4ef2fb26a0384f902 + 637e44595048bfabc1078e0713a04f72bfbcb633 diff --git a/eng/Versions.props b/eng/Versions.props index 3cae640cc..4bb4a19f8 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -25,51 +25,51 @@ 6.2.4 - 8.0.0-rtm.23477.9 - 8.0.0-rtm.23477.9 - 8.0.0-rtm.23477.9 - 8.0.0-rtm.23477.9 + 8.0.0-rtm.23478.17 + 8.0.0-rtm.23478.17 + 8.0.0-rtm.23478.17 + 8.0.0-rtm.23478.17 5.0.0 - 8.0.0-rtm.23477.9 - 8.0.0-rtm.23477.9 - 8.0.0-rtm.23477.9 - 8.0.0-rtm.23477.9 - 8.0.0-rtm.23477.9 - 8.0.0-rtm.23477.9 - 8.0.0-rtm.23477.9 - 8.0.0-rtm.23477.9 - 8.0.0-rtm.23477.9 - 8.0.0-rtm.23477.9 - 8.0.0-rtm.23477.9 - 8.0.0-rtm.23477.9 + 8.0.0-rtm.23478.17 + 8.0.0-rtm.23478.17 + 8.0.0-rtm.23478.17 + 8.0.0-rtm.23478.17 + 8.0.0-rtm.23478.17 + 8.0.0-rtm.23478.17 + 8.0.0-rtm.23478.17 + 8.0.0-rtm.23478.17 + 8.0.0-rtm.23478.17 + 8.0.0-rtm.23478.17 + 8.0.0-rtm.23478.17 + 8.0.0-rtm.23478.17 5.0.0 - 8.0.0-rtm.23477.9 + 8.0.0-rtm.23478.17 5.0.0 - 8.0.0-rtm.23477.9 - 8.0.0-rtm.23477.9 - 8.0.0-rtm.23477.9 - 8.0.0-rtm.23477.9 + 8.0.0-rtm.23478.17 + 8.0.0-rtm.23478.17 + 8.0.0-rtm.23478.17 + 8.0.0-rtm.23478.17 6.0.0 5.0.0 - 8.0.0-rtm.23477.9 - 8.0.0-rtm.23477.9 - 8.0.0-rtm.23477.9 - 8.0.0-rtm.23477.9 + 8.0.0-rtm.23478.17 + 8.0.0-rtm.23478.17 + 8.0.0-rtm.23478.17 + 8.0.0-rtm.23478.17 5.0.0 - 8.0.0-rtm.23477.9 - 8.0.0-rtm.23477.9 - 8.0.0-rtm.23477.9 - 8.0.0-rtm.23477.9 - 8.0.0-rtm.23477.9 - 8.0.0-rtm.23477.9 + 8.0.0-rtm.23478.17 + 8.0.0-rtm.23478.17 + 8.0.0-rtm.23478.17 + 8.0.0-rtm.23478.17 + 8.0.0-rtm.23478.17 + 8.0.0-rtm.23478.17 4.10.0 - 8.0.0-rtm.23477.15 - 8.0.0-rtm.23477.15 - 8.0.0-rtm.23477.15 + 8.0.0-rtm.23479.1 + 8.0.0-rtm.23479.1 + 8.0.0-rtm.23479.1 - 8.0.0-rtm.23477.4 - 8.0.0-rtm.23477.4 + 8.0.0-rtm.23479.1 + 8.0.0-rtm.23479.1 From 208db550ac2ce007ca748ba8d678ab025a251907 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Tue, 3 Oct 2023 09:57:51 +0000 Subject: [PATCH 061/222] [release/8.0] Update dependencies from dotnet/wpf (#3870) [release/8.0] Update dependencies from dotnet/wpf - Coherency Updates: - Microsoft.Private.Winforms: from 8.0.0-rtm.23479.1 to 8.0.0-rtm.23503.1 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Internal.Runtime.WindowsDesktop.Transport: from 8.0.0-rtm.23478.17 to 8.0.0-rtm.23502.10 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23479.1 to 8.0.0-rtm.23503.1 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.NETCore.App.Ref: from 8.0.0-rtm.23478.17 to 8.0.0-rtm.23502.10 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23479.1 to 8.0.0-rtm.23503.1 (parent: Microsoft.DotNet.Wpf.GitHub) - VS.Redist.Common.NetCore.SharedFramework.x64.8.0: from 8.0.0-rtm.23478.17 to 8.0.0-rtm.23502.10 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23479.1 to 8.0.0-rtm.23503.1 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.NETCore.App.Runtime.win-x64: from 8.0.0-rtm.23478.17 to 8.0.0-rtm.23502.10 (parent: Microsoft.Private.Winforms) - Microsoft.Dotnet.WinForms.ProjectTemplates: from 8.0.0-rtm.23479.1 to 8.0.0-rtm.23503.1 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rtm.23479.1 to 8.0.0-rtm.23503.1 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Win32.Registry.AccessControl: from 8.0.0-rtm.23478.17 to 8.0.0-rtm.23502.10 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23479.1 to 8.0.0-rtm.23503.1 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Win32.SystemEvents: from 8.0.0-rtm.23478.17 to 8.0.0-rtm.23502.10 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23479.1 to 8.0.0-rtm.23503.1 (parent: Microsoft.DotNet.Wpf.GitHub) - System.CodeDom: from 8.0.0-rtm.23478.17 to 8.0.0-rtm.23502.10 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23479.1 to 8.0.0-rtm.23503.1 (parent: Microsoft.DotNet.Wpf.GitHub) - System.ComponentModel.Composition: from 8.0.0-rtm.23478.17 to 8.0.0-rtm.23502.10 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23479.1 to 8.0.0-rtm.23503.1 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Configuration.ConfigurationManager: from 8.0.0-rtm.23478.17 to 8.0.0-rtm.23502.10 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23479.1 to 8.0.0-rtm.23503.1 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Data.Odbc: from 8.0.0-rtm.23478.17 to 8.0.0-rtm.23502.10 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23479.1 to 8.0.0-rtm.23503.1 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Data.OleDb: from 8.0.0-rtm.23478.17 to 8.0.0-rtm.23502.10 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23479.1 to 8.0.0-rtm.23503.1 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Diagnostics.EventLog: from 8.0.0-rtm.23478.17 to 8.0.0-rtm.23502.10 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23479.1 to 8.0.0-rtm.23503.1 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Diagnostics.PerformanceCounter: from 8.0.0-rtm.23478.17 to 8.0.0-rtm.23502.10 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23479.1 to 8.0.0-rtm.23503.1 (parent: Microsoft.DotNet.Wpf.GitHub) - System.DirectoryServices.AccountManagement: from 8.0.0-rtm.23478.17 to 8.0.0-rtm.23502.10 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23479.1 to 8.0.0-rtm.23503.1 (parent: Microsoft.DotNet.Wpf.GitHub) - System.DirectoryServices.Protocols: from 8.0.0-rtm.23478.17 to 8.0.0-rtm.23502.10 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23479.1 to 8.0.0-rtm.23503.1 (parent: Microsoft.DotNet.Wpf.GitHub) - System.DirectoryServices: from 8.0.0-rtm.23478.17 to 8.0.0-rtm.23502.10 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23479.1 to 8.0.0-rtm.23503.1 (parent: Microsoft.DotNet.Wpf.GitHub) - System.IO.Packaging: from 8.0.0-rtm.23478.17 to 8.0.0-rtm.23502.10 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23479.1 to 8.0.0-rtm.23503.1 (parent: Microsoft.DotNet.Wpf.GitHub) - System.IO.Ports: from 8.0.0-rtm.23478.17 to 8.0.0-rtm.23502.10 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23479.1 to 8.0.0-rtm.23503.1 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Management: from 8.0.0-rtm.23478.17 to 8.0.0-rtm.23502.10 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23479.1 to 8.0.0-rtm.23503.1 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Reflection.Context: from 8.0.0-rtm.23478.17 to 8.0.0-rtm.23502.10 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23479.1 to 8.0.0-rtm.23503.1 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Runtime.Caching: from 8.0.0-rtm.23478.17 to 8.0.0-rtm.23502.10 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23479.1 to 8.0.0-rtm.23503.1 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Security.Cryptography.Pkcs: from 8.0.0-rtm.23478.17 to 8.0.0-rtm.23502.10 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23479.1 to 8.0.0-rtm.23503.1 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Security.Cryptography.ProtectedData: from 8.0.0-rtm.23478.17 to 8.0.0-rtm.23502.10 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23479.1 to 8.0.0-rtm.23503.1 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Security.Cryptography.Xml: from 8.0.0-rtm.23478.17 to 8.0.0-rtm.23502.10 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23479.1 to 8.0.0-rtm.23503.1 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Security.Permissions: from 8.0.0-rtm.23478.17 to 8.0.0-rtm.23502.10 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23479.1 to 8.0.0-rtm.23503.1 (parent: Microsoft.DotNet.Wpf.GitHub) - System.ServiceModel.Syndication: from 8.0.0-rtm.23478.17 to 8.0.0-rtm.23502.10 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23479.1 to 8.0.0-rtm.23503.1 (parent: Microsoft.DotNet.Wpf.GitHub) - System.ServiceProcess.ServiceController: from 8.0.0-rtm.23478.17 to 8.0.0-rtm.23502.10 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23479.1 to 8.0.0-rtm.23503.1 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Speech: from 8.0.0-rtm.23478.17 to 8.0.0-rtm.23502.10 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23479.1 to 8.0.0-rtm.23503.1 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Text.Encoding.CodePages: from 8.0.0-rtm.23478.17 to 8.0.0-rtm.23502.10 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23479.1 to 8.0.0-rtm.23503.1 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Threading.AccessControl: from 8.0.0-rtm.23478.17 to 8.0.0-rtm.23502.10 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23479.1 to 8.0.0-rtm.23503.1 (parent: Microsoft.DotNet.Wpf.GitHub) - System.ComponentModel.Composition.Registration: from 8.0.0-rtm.23478.17 to 8.0.0-rtm.23502.10 (parent: Microsoft.Private.Winforms) - System.Drawing.Common: from 8.0.0-rtm.23479.1 to 8.0.0-rtm.23503.1 (parent: Microsoft.DotNet.Wpf.GitHub) --- eng/Version.Details.xml | 148 ++++++++++++++++++++-------------------- eng/Versions.props | 72 +++++++++---------- 2 files changed, 110 insertions(+), 110 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 89bbaba0e..1c23f9bf1 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,153 +1,153 @@ - + https://github.com/dotnet/runtime - b20f704cc00f390e5560a137deb8f0e64e863e1d + 8e365ee9e1c1b4da3300b0ecb672ea7c85b1f220 - + https://github.com/dotnet/winforms - 637e44595048bfabc1078e0713a04f72bfbcb633 + 5d5b8e9d16e4c9e496e6abd4e3e2e15a7841c455 - + https://github.com/dotnet/wpf - 6ef4d6a906eee362d8bb447148c6d8d853eac2e6 + bc3377c807cbce58e43d96f1fa3d7c04c659ec1d - + https://github.com/dotnet/wpf - 6ef4d6a906eee362d8bb447148c6d8d853eac2e6 + bc3377c807cbce58e43d96f1fa3d7c04c659ec1d - + https://github.com/dotnet/runtime - b20f704cc00f390e5560a137deb8f0e64e863e1d + 8e365ee9e1c1b4da3300b0ecb672ea7c85b1f220 - + https://github.com/dotnet/runtime - b20f704cc00f390e5560a137deb8f0e64e863e1d + 8e365ee9e1c1b4da3300b0ecb672ea7c85b1f220 - + https://github.com/dotnet/runtime - b20f704cc00f390e5560a137deb8f0e64e863e1d + 8e365ee9e1c1b4da3300b0ecb672ea7c85b1f220 - + https://github.com/dotnet/winforms - 637e44595048bfabc1078e0713a04f72bfbcb633 + 5d5b8e9d16e4c9e496e6abd4e3e2e15a7841c455 - + https://github.com/dotnet/wpf - 6ef4d6a906eee362d8bb447148c6d8d853eac2e6 + bc3377c807cbce58e43d96f1fa3d7c04c659ec1d - + https://github.com/dotnet/runtime - b20f704cc00f390e5560a137deb8f0e64e863e1d + 8e365ee9e1c1b4da3300b0ecb672ea7c85b1f220 - + https://github.com/dotnet/runtime - b20f704cc00f390e5560a137deb8f0e64e863e1d + 8e365ee9e1c1b4da3300b0ecb672ea7c85b1f220 - + https://github.com/dotnet/runtime - b20f704cc00f390e5560a137deb8f0e64e863e1d + 8e365ee9e1c1b4da3300b0ecb672ea7c85b1f220 - + https://github.com/dotnet/runtime - b20f704cc00f390e5560a137deb8f0e64e863e1d + 8e365ee9e1c1b4da3300b0ecb672ea7c85b1f220 - + https://github.com/dotnet/runtime - b20f704cc00f390e5560a137deb8f0e64e863e1d + 8e365ee9e1c1b4da3300b0ecb672ea7c85b1f220 - + https://github.com/dotnet/runtime - b20f704cc00f390e5560a137deb8f0e64e863e1d + 8e365ee9e1c1b4da3300b0ecb672ea7c85b1f220 - + https://github.com/dotnet/runtime - b20f704cc00f390e5560a137deb8f0e64e863e1d + 8e365ee9e1c1b4da3300b0ecb672ea7c85b1f220 - + https://github.com/dotnet/runtime - b20f704cc00f390e5560a137deb8f0e64e863e1d + 8e365ee9e1c1b4da3300b0ecb672ea7c85b1f220 - + https://github.com/dotnet/runtime - b20f704cc00f390e5560a137deb8f0e64e863e1d + 8e365ee9e1c1b4da3300b0ecb672ea7c85b1f220 - + https://github.com/dotnet/runtime - b20f704cc00f390e5560a137deb8f0e64e863e1d + 8e365ee9e1c1b4da3300b0ecb672ea7c85b1f220 - + https://github.com/dotnet/runtime - b20f704cc00f390e5560a137deb8f0e64e863e1d + 8e365ee9e1c1b4da3300b0ecb672ea7c85b1f220 - + https://github.com/dotnet/runtime - b20f704cc00f390e5560a137deb8f0e64e863e1d + 8e365ee9e1c1b4da3300b0ecb672ea7c85b1f220 - + https://github.com/dotnet/runtime - b20f704cc00f390e5560a137deb8f0e64e863e1d + 8e365ee9e1c1b4da3300b0ecb672ea7c85b1f220 - + https://github.com/dotnet/runtime - b20f704cc00f390e5560a137deb8f0e64e863e1d + 8e365ee9e1c1b4da3300b0ecb672ea7c85b1f220 - + https://github.com/dotnet/runtime - b20f704cc00f390e5560a137deb8f0e64e863e1d + 8e365ee9e1c1b4da3300b0ecb672ea7c85b1f220 - + https://github.com/dotnet/runtime - b20f704cc00f390e5560a137deb8f0e64e863e1d + 8e365ee9e1c1b4da3300b0ecb672ea7c85b1f220 - + https://github.com/dotnet/runtime - b20f704cc00f390e5560a137deb8f0e64e863e1d + 8e365ee9e1c1b4da3300b0ecb672ea7c85b1f220 - + https://github.com/dotnet/runtime - b20f704cc00f390e5560a137deb8f0e64e863e1d + 8e365ee9e1c1b4da3300b0ecb672ea7c85b1f220 - + https://github.com/dotnet/runtime - b20f704cc00f390e5560a137deb8f0e64e863e1d + 8e365ee9e1c1b4da3300b0ecb672ea7c85b1f220 - + https://github.com/dotnet/runtime - b20f704cc00f390e5560a137deb8f0e64e863e1d + 8e365ee9e1c1b4da3300b0ecb672ea7c85b1f220 - + https://github.com/dotnet/runtime - b20f704cc00f390e5560a137deb8f0e64e863e1d + 8e365ee9e1c1b4da3300b0ecb672ea7c85b1f220 - + https://github.com/dotnet/runtime - b20f704cc00f390e5560a137deb8f0e64e863e1d + 8e365ee9e1c1b4da3300b0ecb672ea7c85b1f220 - + https://github.com/dotnet/runtime - b20f704cc00f390e5560a137deb8f0e64e863e1d + 8e365ee9e1c1b4da3300b0ecb672ea7c85b1f220 - + https://github.com/dotnet/runtime - b20f704cc00f390e5560a137deb8f0e64e863e1d + 8e365ee9e1c1b4da3300b0ecb672ea7c85b1f220 - + https://github.com/dotnet/runtime - b20f704cc00f390e5560a137deb8f0e64e863e1d + 8e365ee9e1c1b4da3300b0ecb672ea7c85b1f220 - + https://github.com/dotnet/runtime - b20f704cc00f390e5560a137deb8f0e64e863e1d + 8e365ee9e1c1b4da3300b0ecb672ea7c85b1f220 - + https://github.com/dotnet/runtime - b20f704cc00f390e5560a137deb8f0e64e863e1d + 8e365ee9e1c1b4da3300b0ecb672ea7c85b1f220 - + https://github.com/dotnet/winforms - 637e44595048bfabc1078e0713a04f72bfbcb633 + 5d5b8e9d16e4c9e496e6abd4e3e2e15a7841c455 diff --git a/eng/Versions.props b/eng/Versions.props index 4bb4a19f8..6e4849781 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -25,51 +25,51 @@ 6.2.4 - 8.0.0-rtm.23478.17 - 8.0.0-rtm.23478.17 - 8.0.0-rtm.23478.17 - 8.0.0-rtm.23478.17 + 8.0.0-rtm.23502.10 + 8.0.0-rtm.23502.10 + 8.0.0-rtm.23502.10 + 8.0.0-rtm.23502.10 5.0.0 - 8.0.0-rtm.23478.17 - 8.0.0-rtm.23478.17 - 8.0.0-rtm.23478.17 - 8.0.0-rtm.23478.17 - 8.0.0-rtm.23478.17 - 8.0.0-rtm.23478.17 - 8.0.0-rtm.23478.17 - 8.0.0-rtm.23478.17 - 8.0.0-rtm.23478.17 - 8.0.0-rtm.23478.17 - 8.0.0-rtm.23478.17 - 8.0.0-rtm.23478.17 + 8.0.0-rtm.23502.10 + 8.0.0-rtm.23502.10 + 8.0.0-rtm.23502.10 + 8.0.0-rtm.23502.10 + 8.0.0-rtm.23502.10 + 8.0.0-rtm.23502.10 + 8.0.0-rtm.23502.10 + 8.0.0-rtm.23502.10 + 8.0.0-rtm.23502.10 + 8.0.0-rtm.23502.10 + 8.0.0-rtm.23502.10 + 8.0.0-rtm.23502.10 5.0.0 - 8.0.0-rtm.23478.17 + 8.0.0-rtm.23502.10 5.0.0 - 8.0.0-rtm.23478.17 - 8.0.0-rtm.23478.17 - 8.0.0-rtm.23478.17 - 8.0.0-rtm.23478.17 + 8.0.0-rtm.23502.10 + 8.0.0-rtm.23502.10 + 8.0.0-rtm.23502.10 + 8.0.0-rtm.23502.10 6.0.0 5.0.0 - 8.0.0-rtm.23478.17 - 8.0.0-rtm.23478.17 - 8.0.0-rtm.23478.17 - 8.0.0-rtm.23478.17 + 8.0.0-rtm.23502.10 + 8.0.0-rtm.23502.10 + 8.0.0-rtm.23502.10 + 8.0.0-rtm.23502.10 5.0.0 - 8.0.0-rtm.23478.17 - 8.0.0-rtm.23478.17 - 8.0.0-rtm.23478.17 - 8.0.0-rtm.23478.17 - 8.0.0-rtm.23478.17 - 8.0.0-rtm.23478.17 + 8.0.0-rtm.23502.10 + 8.0.0-rtm.23502.10 + 8.0.0-rtm.23502.10 + 8.0.0-rtm.23502.10 + 8.0.0-rtm.23502.10 + 8.0.0-rtm.23502.10 4.10.0 - 8.0.0-rtm.23479.1 - 8.0.0-rtm.23479.1 - 8.0.0-rtm.23479.1 + 8.0.0-rtm.23503.1 + 8.0.0-rtm.23503.1 + 8.0.0-rtm.23503.1 - 8.0.0-rtm.23479.1 - 8.0.0-rtm.23479.1 + 8.0.0-rtm.23503.1 + 8.0.0-rtm.23503.1 From a479541272db26a7770518ad233bef2393423f6c Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Tue, 3 Oct 2023 14:41:37 +0000 Subject: [PATCH 062/222] [release/8.0] Update dependencies from dotnet/wpf (#3871) [release/8.0] Update dependencies from dotnet/wpf - Coherency Updates: - Microsoft.Private.Winforms: from 8.0.0-rtm.23503.1 to 8.0.0-rtm.23503.3 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Internal.Runtime.WindowsDesktop.Transport: from 8.0.0-rtm.23502.10 to 8.0.0-rtm.23502.11 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23503.1 to 8.0.0-rtm.23503.3 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.NETCore.App.Ref: from 8.0.0-rtm.23502.10 to 8.0.0-rtm.23502.11 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23503.1 to 8.0.0-rtm.23503.3 (parent: Microsoft.DotNet.Wpf.GitHub) - VS.Redist.Common.NetCore.SharedFramework.x64.8.0: from 8.0.0-rtm.23502.10 to 8.0.0-rtm.23502.11 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23503.1 to 8.0.0-rtm.23503.3 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.NETCore.App.Runtime.win-x64: from 8.0.0-rtm.23502.10 to 8.0.0-rtm.23502.11 (parent: Microsoft.Private.Winforms) - Microsoft.Dotnet.WinForms.ProjectTemplates: from 8.0.0-rtm.23503.1 to 8.0.0-rtm.23503.3 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rtm.23503.1 to 8.0.0-rtm.23503.3 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Win32.Registry.AccessControl: from 8.0.0-rtm.23502.10 to 8.0.0-rtm.23502.11 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23503.1 to 8.0.0-rtm.23503.3 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Win32.SystemEvents: from 8.0.0-rtm.23502.10 to 8.0.0-rtm.23502.11 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23503.1 to 8.0.0-rtm.23503.3 (parent: Microsoft.DotNet.Wpf.GitHub) - System.CodeDom: from 8.0.0-rtm.23502.10 to 8.0.0-rtm.23502.11 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23503.1 to 8.0.0-rtm.23503.3 (parent: Microsoft.DotNet.Wpf.GitHub) - System.ComponentModel.Composition: from 8.0.0-rtm.23502.10 to 8.0.0-rtm.23502.11 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23503.1 to 8.0.0-rtm.23503.3 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Configuration.ConfigurationManager: from 8.0.0-rtm.23502.10 to 8.0.0-rtm.23502.11 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23503.1 to 8.0.0-rtm.23503.3 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Data.Odbc: from 8.0.0-rtm.23502.10 to 8.0.0-rtm.23502.11 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23503.1 to 8.0.0-rtm.23503.3 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Data.OleDb: from 8.0.0-rtm.23502.10 to 8.0.0-rtm.23502.11 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23503.1 to 8.0.0-rtm.23503.3 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Diagnostics.EventLog: from 8.0.0-rtm.23502.10 to 8.0.0-rtm.23502.11 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23503.1 to 8.0.0-rtm.23503.3 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Diagnostics.PerformanceCounter: from 8.0.0-rtm.23502.10 to 8.0.0-rtm.23502.11 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23503.1 to 8.0.0-rtm.23503.3 (parent: Microsoft.DotNet.Wpf.GitHub) - System.DirectoryServices.AccountManagement: from 8.0.0-rtm.23502.10 to 8.0.0-rtm.23502.11 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23503.1 to 8.0.0-rtm.23503.3 (parent: Microsoft.DotNet.Wpf.GitHub) - System.DirectoryServices.Protocols: from 8.0.0-rtm.23502.10 to 8.0.0-rtm.23502.11 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23503.1 to 8.0.0-rtm.23503.3 (parent: Microsoft.DotNet.Wpf.GitHub) - System.DirectoryServices: from 8.0.0-rtm.23502.10 to 8.0.0-rtm.23502.11 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23503.1 to 8.0.0-rtm.23503.3 (parent: Microsoft.DotNet.Wpf.GitHub) - System.IO.Packaging: from 8.0.0-rtm.23502.10 to 8.0.0-rtm.23502.11 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23503.1 to 8.0.0-rtm.23503.3 (parent: Microsoft.DotNet.Wpf.GitHub) - System.IO.Ports: from 8.0.0-rtm.23502.10 to 8.0.0-rtm.23502.11 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23503.1 to 8.0.0-rtm.23503.3 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Management: from 8.0.0-rtm.23502.10 to 8.0.0-rtm.23502.11 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23503.1 to 8.0.0-rtm.23503.3 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Reflection.Context: from 8.0.0-rtm.23502.10 to 8.0.0-rtm.23502.11 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23503.1 to 8.0.0-rtm.23503.3 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Runtime.Caching: from 8.0.0-rtm.23502.10 to 8.0.0-rtm.23502.11 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23503.1 to 8.0.0-rtm.23503.3 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Security.Cryptography.Pkcs: from 8.0.0-rtm.23502.10 to 8.0.0-rtm.23502.11 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23503.1 to 8.0.0-rtm.23503.3 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Security.Cryptography.ProtectedData: from 8.0.0-rtm.23502.10 to 8.0.0-rtm.23502.11 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23503.1 to 8.0.0-rtm.23503.3 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Security.Cryptography.Xml: from 8.0.0-rtm.23502.10 to 8.0.0-rtm.23502.11 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23503.1 to 8.0.0-rtm.23503.3 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Security.Permissions: from 8.0.0-rtm.23502.10 to 8.0.0-rtm.23502.11 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23503.1 to 8.0.0-rtm.23503.3 (parent: Microsoft.DotNet.Wpf.GitHub) - System.ServiceModel.Syndication: from 8.0.0-rtm.23502.10 to 8.0.0-rtm.23502.11 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23503.1 to 8.0.0-rtm.23503.3 (parent: Microsoft.DotNet.Wpf.GitHub) - System.ServiceProcess.ServiceController: from 8.0.0-rtm.23502.10 to 8.0.0-rtm.23502.11 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23503.1 to 8.0.0-rtm.23503.3 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Speech: from 8.0.0-rtm.23502.10 to 8.0.0-rtm.23502.11 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23503.1 to 8.0.0-rtm.23503.3 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Text.Encoding.CodePages: from 8.0.0-rtm.23502.10 to 8.0.0-rtm.23502.11 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23503.1 to 8.0.0-rtm.23503.3 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Threading.AccessControl: from 8.0.0-rtm.23502.10 to 8.0.0-rtm.23502.11 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23503.1 to 8.0.0-rtm.23503.3 (parent: Microsoft.DotNet.Wpf.GitHub) - System.ComponentModel.Composition.Registration: from 8.0.0-rtm.23502.10 to 8.0.0-rtm.23502.11 (parent: Microsoft.Private.Winforms) - System.Drawing.Common: from 8.0.0-rtm.23503.1 to 8.0.0-rtm.23503.3 (parent: Microsoft.DotNet.Wpf.GitHub) --- eng/Version.Details.xml | 148 ++++++++++++++++++++-------------------- eng/Versions.props | 72 +++++++++---------- 2 files changed, 110 insertions(+), 110 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 1c23f9bf1..8ccc4b54d 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,153 +1,153 @@ - + https://github.com/dotnet/runtime - 8e365ee9e1c1b4da3300b0ecb672ea7c85b1f220 + ef6283ac0a14c78d9e9fef4841545099bd7ad12b - + https://github.com/dotnet/winforms - 5d5b8e9d16e4c9e496e6abd4e3e2e15a7841c455 + f41cb9532684313e0c1652c6e51f2c716360166f - + https://github.com/dotnet/wpf - bc3377c807cbce58e43d96f1fa3d7c04c659ec1d + 8493460d6d8a546092e4a28c7d05d2e9fa0a3f13 - + https://github.com/dotnet/wpf - bc3377c807cbce58e43d96f1fa3d7c04c659ec1d + 8493460d6d8a546092e4a28c7d05d2e9fa0a3f13 - + https://github.com/dotnet/runtime - 8e365ee9e1c1b4da3300b0ecb672ea7c85b1f220 + ef6283ac0a14c78d9e9fef4841545099bd7ad12b - + https://github.com/dotnet/runtime - 8e365ee9e1c1b4da3300b0ecb672ea7c85b1f220 + ef6283ac0a14c78d9e9fef4841545099bd7ad12b - + https://github.com/dotnet/runtime - 8e365ee9e1c1b4da3300b0ecb672ea7c85b1f220 + ef6283ac0a14c78d9e9fef4841545099bd7ad12b - + https://github.com/dotnet/winforms - 5d5b8e9d16e4c9e496e6abd4e3e2e15a7841c455 + f41cb9532684313e0c1652c6e51f2c716360166f - + https://github.com/dotnet/wpf - bc3377c807cbce58e43d96f1fa3d7c04c659ec1d + 8493460d6d8a546092e4a28c7d05d2e9fa0a3f13 - + https://github.com/dotnet/runtime - 8e365ee9e1c1b4da3300b0ecb672ea7c85b1f220 + ef6283ac0a14c78d9e9fef4841545099bd7ad12b - + https://github.com/dotnet/runtime - 8e365ee9e1c1b4da3300b0ecb672ea7c85b1f220 + ef6283ac0a14c78d9e9fef4841545099bd7ad12b - + https://github.com/dotnet/runtime - 8e365ee9e1c1b4da3300b0ecb672ea7c85b1f220 + ef6283ac0a14c78d9e9fef4841545099bd7ad12b - + https://github.com/dotnet/runtime - 8e365ee9e1c1b4da3300b0ecb672ea7c85b1f220 + ef6283ac0a14c78d9e9fef4841545099bd7ad12b - + https://github.com/dotnet/runtime - 8e365ee9e1c1b4da3300b0ecb672ea7c85b1f220 + ef6283ac0a14c78d9e9fef4841545099bd7ad12b - + https://github.com/dotnet/runtime - 8e365ee9e1c1b4da3300b0ecb672ea7c85b1f220 + ef6283ac0a14c78d9e9fef4841545099bd7ad12b - + https://github.com/dotnet/runtime - 8e365ee9e1c1b4da3300b0ecb672ea7c85b1f220 + ef6283ac0a14c78d9e9fef4841545099bd7ad12b - + https://github.com/dotnet/runtime - 8e365ee9e1c1b4da3300b0ecb672ea7c85b1f220 + ef6283ac0a14c78d9e9fef4841545099bd7ad12b - + https://github.com/dotnet/runtime - 8e365ee9e1c1b4da3300b0ecb672ea7c85b1f220 + ef6283ac0a14c78d9e9fef4841545099bd7ad12b - + https://github.com/dotnet/runtime - 8e365ee9e1c1b4da3300b0ecb672ea7c85b1f220 + ef6283ac0a14c78d9e9fef4841545099bd7ad12b - + https://github.com/dotnet/runtime - 8e365ee9e1c1b4da3300b0ecb672ea7c85b1f220 + ef6283ac0a14c78d9e9fef4841545099bd7ad12b - + https://github.com/dotnet/runtime - 8e365ee9e1c1b4da3300b0ecb672ea7c85b1f220 + ef6283ac0a14c78d9e9fef4841545099bd7ad12b - + https://github.com/dotnet/runtime - 8e365ee9e1c1b4da3300b0ecb672ea7c85b1f220 + ef6283ac0a14c78d9e9fef4841545099bd7ad12b - + https://github.com/dotnet/runtime - 8e365ee9e1c1b4da3300b0ecb672ea7c85b1f220 + ef6283ac0a14c78d9e9fef4841545099bd7ad12b - + https://github.com/dotnet/runtime - 8e365ee9e1c1b4da3300b0ecb672ea7c85b1f220 + ef6283ac0a14c78d9e9fef4841545099bd7ad12b - + https://github.com/dotnet/runtime - 8e365ee9e1c1b4da3300b0ecb672ea7c85b1f220 + ef6283ac0a14c78d9e9fef4841545099bd7ad12b - + https://github.com/dotnet/runtime - 8e365ee9e1c1b4da3300b0ecb672ea7c85b1f220 + ef6283ac0a14c78d9e9fef4841545099bd7ad12b - + https://github.com/dotnet/runtime - 8e365ee9e1c1b4da3300b0ecb672ea7c85b1f220 + ef6283ac0a14c78d9e9fef4841545099bd7ad12b - + https://github.com/dotnet/runtime - 8e365ee9e1c1b4da3300b0ecb672ea7c85b1f220 + ef6283ac0a14c78d9e9fef4841545099bd7ad12b - + https://github.com/dotnet/runtime - 8e365ee9e1c1b4da3300b0ecb672ea7c85b1f220 + ef6283ac0a14c78d9e9fef4841545099bd7ad12b - + https://github.com/dotnet/runtime - 8e365ee9e1c1b4da3300b0ecb672ea7c85b1f220 + ef6283ac0a14c78d9e9fef4841545099bd7ad12b - + https://github.com/dotnet/runtime - 8e365ee9e1c1b4da3300b0ecb672ea7c85b1f220 + ef6283ac0a14c78d9e9fef4841545099bd7ad12b - + https://github.com/dotnet/runtime - 8e365ee9e1c1b4da3300b0ecb672ea7c85b1f220 + ef6283ac0a14c78d9e9fef4841545099bd7ad12b - + https://github.com/dotnet/runtime - 8e365ee9e1c1b4da3300b0ecb672ea7c85b1f220 + ef6283ac0a14c78d9e9fef4841545099bd7ad12b - + https://github.com/dotnet/runtime - 8e365ee9e1c1b4da3300b0ecb672ea7c85b1f220 + ef6283ac0a14c78d9e9fef4841545099bd7ad12b - + https://github.com/dotnet/runtime - 8e365ee9e1c1b4da3300b0ecb672ea7c85b1f220 + ef6283ac0a14c78d9e9fef4841545099bd7ad12b - + https://github.com/dotnet/runtime - 8e365ee9e1c1b4da3300b0ecb672ea7c85b1f220 + ef6283ac0a14c78d9e9fef4841545099bd7ad12b - + https://github.com/dotnet/winforms - 5d5b8e9d16e4c9e496e6abd4e3e2e15a7841c455 + f41cb9532684313e0c1652c6e51f2c716360166f diff --git a/eng/Versions.props b/eng/Versions.props index 6e4849781..51d28dcf2 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -25,51 +25,51 @@ 6.2.4 - 8.0.0-rtm.23502.10 - 8.0.0-rtm.23502.10 - 8.0.0-rtm.23502.10 - 8.0.0-rtm.23502.10 + 8.0.0-rtm.23502.11 + 8.0.0-rtm.23502.11 + 8.0.0-rtm.23502.11 + 8.0.0-rtm.23502.11 5.0.0 - 8.0.0-rtm.23502.10 - 8.0.0-rtm.23502.10 - 8.0.0-rtm.23502.10 - 8.0.0-rtm.23502.10 - 8.0.0-rtm.23502.10 - 8.0.0-rtm.23502.10 - 8.0.0-rtm.23502.10 - 8.0.0-rtm.23502.10 - 8.0.0-rtm.23502.10 - 8.0.0-rtm.23502.10 - 8.0.0-rtm.23502.10 - 8.0.0-rtm.23502.10 + 8.0.0-rtm.23502.11 + 8.0.0-rtm.23502.11 + 8.0.0-rtm.23502.11 + 8.0.0-rtm.23502.11 + 8.0.0-rtm.23502.11 + 8.0.0-rtm.23502.11 + 8.0.0-rtm.23502.11 + 8.0.0-rtm.23502.11 + 8.0.0-rtm.23502.11 + 8.0.0-rtm.23502.11 + 8.0.0-rtm.23502.11 + 8.0.0-rtm.23502.11 5.0.0 - 8.0.0-rtm.23502.10 + 8.0.0-rtm.23502.11 5.0.0 - 8.0.0-rtm.23502.10 - 8.0.0-rtm.23502.10 - 8.0.0-rtm.23502.10 - 8.0.0-rtm.23502.10 + 8.0.0-rtm.23502.11 + 8.0.0-rtm.23502.11 + 8.0.0-rtm.23502.11 + 8.0.0-rtm.23502.11 6.0.0 5.0.0 - 8.0.0-rtm.23502.10 - 8.0.0-rtm.23502.10 - 8.0.0-rtm.23502.10 - 8.0.0-rtm.23502.10 + 8.0.0-rtm.23502.11 + 8.0.0-rtm.23502.11 + 8.0.0-rtm.23502.11 + 8.0.0-rtm.23502.11 5.0.0 - 8.0.0-rtm.23502.10 - 8.0.0-rtm.23502.10 - 8.0.0-rtm.23502.10 - 8.0.0-rtm.23502.10 - 8.0.0-rtm.23502.10 - 8.0.0-rtm.23502.10 + 8.0.0-rtm.23502.11 + 8.0.0-rtm.23502.11 + 8.0.0-rtm.23502.11 + 8.0.0-rtm.23502.11 + 8.0.0-rtm.23502.11 + 8.0.0-rtm.23502.11 4.10.0 - 8.0.0-rtm.23503.1 - 8.0.0-rtm.23503.1 - 8.0.0-rtm.23503.1 + 8.0.0-rtm.23503.3 + 8.0.0-rtm.23503.3 + 8.0.0-rtm.23503.3 - 8.0.0-rtm.23503.1 - 8.0.0-rtm.23503.1 + 8.0.0-rtm.23503.2 + 8.0.0-rtm.23503.2 From ca8d1c4b5432cf75dbd45f67778390ed8a9f274b Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Wed, 4 Oct 2023 01:26:56 +0000 Subject: [PATCH 063/222] [release/8.0] Update dependencies from dotnet/wpf (#3874) [release/8.0] Update dependencies from dotnet/wpf - Coherency Updates: - Microsoft.Private.Winforms: from 8.0.0-rtm.23503.3 to 8.0.0-rtm.23503.10 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Internal.Runtime.WindowsDesktop.Transport: from 8.0.0-rtm.23502.11 to 8.0.0-rtm.23503.5 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23503.3 to 8.0.0-rtm.23503.10 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.NETCore.App.Ref: from 8.0.0-rtm.23502.11 to 8.0.0-rtm.23503.5 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23503.3 to 8.0.0-rtm.23503.10 (parent: Microsoft.DotNet.Wpf.GitHub) - VS.Redist.Common.NetCore.SharedFramework.x64.8.0: from 8.0.0-rtm.23502.11 to 8.0.0-rtm.23503.5 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23503.3 to 8.0.0-rtm.23503.10 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.NETCore.App.Runtime.win-x64: from 8.0.0-rtm.23502.11 to 8.0.0-rtm.23503.5 (parent: Microsoft.Private.Winforms) - Microsoft.Dotnet.WinForms.ProjectTemplates: from 8.0.0-rtm.23503.3 to 8.0.0-rtm.23503.10 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rtm.23503.3 to 8.0.0-rtm.23503.10 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Win32.Registry.AccessControl: from 8.0.0-rtm.23502.11 to 8.0.0-rtm.23503.5 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23503.3 to 8.0.0-rtm.23503.10 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Win32.SystemEvents: from 8.0.0-rtm.23502.11 to 8.0.0-rtm.23503.5 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23503.3 to 8.0.0-rtm.23503.10 (parent: Microsoft.DotNet.Wpf.GitHub) - System.CodeDom: from 8.0.0-rtm.23502.11 to 8.0.0-rtm.23503.5 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23503.3 to 8.0.0-rtm.23503.10 (parent: Microsoft.DotNet.Wpf.GitHub) - System.ComponentModel.Composition: from 8.0.0-rtm.23502.11 to 8.0.0-rtm.23503.5 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23503.3 to 8.0.0-rtm.23503.10 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Configuration.ConfigurationManager: from 8.0.0-rtm.23502.11 to 8.0.0-rtm.23503.5 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23503.3 to 8.0.0-rtm.23503.10 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Data.Odbc: from 8.0.0-rtm.23502.11 to 8.0.0-rtm.23503.5 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23503.3 to 8.0.0-rtm.23503.10 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Data.OleDb: from 8.0.0-rtm.23502.11 to 8.0.0-rtm.23503.5 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23503.3 to 8.0.0-rtm.23503.10 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Diagnostics.EventLog: from 8.0.0-rtm.23502.11 to 8.0.0-rtm.23503.5 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23503.3 to 8.0.0-rtm.23503.10 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Diagnostics.PerformanceCounter: from 8.0.0-rtm.23502.11 to 8.0.0-rtm.23503.5 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23503.3 to 8.0.0-rtm.23503.10 (parent: Microsoft.DotNet.Wpf.GitHub) - System.DirectoryServices.AccountManagement: from 8.0.0-rtm.23502.11 to 8.0.0-rtm.23503.5 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23503.3 to 8.0.0-rtm.23503.10 (parent: Microsoft.DotNet.Wpf.GitHub) - System.DirectoryServices.Protocols: from 8.0.0-rtm.23502.11 to 8.0.0-rtm.23503.5 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23503.3 to 8.0.0-rtm.23503.10 (parent: Microsoft.DotNet.Wpf.GitHub) - System.DirectoryServices: from 8.0.0-rtm.23502.11 to 8.0.0-rtm.23503.5 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23503.3 to 8.0.0-rtm.23503.10 (parent: Microsoft.DotNet.Wpf.GitHub) - System.IO.Packaging: from 8.0.0-rtm.23502.11 to 8.0.0-rtm.23503.5 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23503.3 to 8.0.0-rtm.23503.10 (parent: Microsoft.DotNet.Wpf.GitHub) - System.IO.Ports: from 8.0.0-rtm.23502.11 to 8.0.0-rtm.23503.5 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23503.3 to 8.0.0-rtm.23503.10 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Management: from 8.0.0-rtm.23502.11 to 8.0.0-rtm.23503.5 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23503.3 to 8.0.0-rtm.23503.10 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Reflection.Context: from 8.0.0-rtm.23502.11 to 8.0.0-rtm.23503.5 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23503.3 to 8.0.0-rtm.23503.10 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Runtime.Caching: from 8.0.0-rtm.23502.11 to 8.0.0-rtm.23503.5 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23503.3 to 8.0.0-rtm.23503.10 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Security.Cryptography.Pkcs: from 8.0.0-rtm.23502.11 to 8.0.0-rtm.23503.5 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23503.3 to 8.0.0-rtm.23503.10 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Security.Cryptography.ProtectedData: from 8.0.0-rtm.23502.11 to 8.0.0-rtm.23503.5 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23503.3 to 8.0.0-rtm.23503.10 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Security.Cryptography.Xml: from 8.0.0-rtm.23502.11 to 8.0.0-rtm.23503.5 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23503.3 to 8.0.0-rtm.23503.10 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Security.Permissions: from 8.0.0-rtm.23502.11 to 8.0.0-rtm.23503.5 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23503.3 to 8.0.0-rtm.23503.10 (parent: Microsoft.DotNet.Wpf.GitHub) - System.ServiceModel.Syndication: from 8.0.0-rtm.23502.11 to 8.0.0-rtm.23503.5 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23503.3 to 8.0.0-rtm.23503.10 (parent: Microsoft.DotNet.Wpf.GitHub) - System.ServiceProcess.ServiceController: from 8.0.0-rtm.23502.11 to 8.0.0-rtm.23503.5 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23503.3 to 8.0.0-rtm.23503.10 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Speech: from 8.0.0-rtm.23502.11 to 8.0.0-rtm.23503.5 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23503.3 to 8.0.0-rtm.23503.10 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Text.Encoding.CodePages: from 8.0.0-rtm.23502.11 to 8.0.0-rtm.23503.5 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23503.3 to 8.0.0-rtm.23503.10 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Threading.AccessControl: from 8.0.0-rtm.23502.11 to 8.0.0-rtm.23503.5 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23503.3 to 8.0.0-rtm.23503.10 (parent: Microsoft.DotNet.Wpf.GitHub) - System.ComponentModel.Composition.Registration: from 8.0.0-rtm.23502.11 to 8.0.0-rtm.23503.5 (parent: Microsoft.Private.Winforms) - System.Drawing.Common: from 8.0.0-rtm.23503.3 to 8.0.0-rtm.23503.10 (parent: Microsoft.DotNet.Wpf.GitHub) --- eng/Version.Details.xml | 148 ++++++++++++++++++++-------------------- eng/Versions.props | 72 +++++++++---------- 2 files changed, 110 insertions(+), 110 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 8ccc4b54d..00433bf67 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,153 +1,153 @@ - + https://github.com/dotnet/runtime - ef6283ac0a14c78d9e9fef4841545099bd7ad12b + bc0f1b0ec650c3a4c81d0b393b4d74a21621c5ce - + https://github.com/dotnet/winforms - f41cb9532684313e0c1652c6e51f2c716360166f + 6c1fdb698461863ba9f1d40b3c8c52eb89dcc151 - + https://github.com/dotnet/wpf - 8493460d6d8a546092e4a28c7d05d2e9fa0a3f13 + 9a9cd969e5b89eac3c487083695d5a532b702e9e - + https://github.com/dotnet/wpf - 8493460d6d8a546092e4a28c7d05d2e9fa0a3f13 + 9a9cd969e5b89eac3c487083695d5a532b702e9e - + https://github.com/dotnet/runtime - ef6283ac0a14c78d9e9fef4841545099bd7ad12b + bc0f1b0ec650c3a4c81d0b393b4d74a21621c5ce - + https://github.com/dotnet/runtime - ef6283ac0a14c78d9e9fef4841545099bd7ad12b + bc0f1b0ec650c3a4c81d0b393b4d74a21621c5ce - + https://github.com/dotnet/runtime - ef6283ac0a14c78d9e9fef4841545099bd7ad12b + bc0f1b0ec650c3a4c81d0b393b4d74a21621c5ce - + https://github.com/dotnet/winforms - f41cb9532684313e0c1652c6e51f2c716360166f + 6c1fdb698461863ba9f1d40b3c8c52eb89dcc151 - + https://github.com/dotnet/wpf - 8493460d6d8a546092e4a28c7d05d2e9fa0a3f13 + 9a9cd969e5b89eac3c487083695d5a532b702e9e - + https://github.com/dotnet/runtime - ef6283ac0a14c78d9e9fef4841545099bd7ad12b + bc0f1b0ec650c3a4c81d0b393b4d74a21621c5ce - + https://github.com/dotnet/runtime - ef6283ac0a14c78d9e9fef4841545099bd7ad12b + bc0f1b0ec650c3a4c81d0b393b4d74a21621c5ce - + https://github.com/dotnet/runtime - ef6283ac0a14c78d9e9fef4841545099bd7ad12b + bc0f1b0ec650c3a4c81d0b393b4d74a21621c5ce - + https://github.com/dotnet/runtime - ef6283ac0a14c78d9e9fef4841545099bd7ad12b + bc0f1b0ec650c3a4c81d0b393b4d74a21621c5ce - + https://github.com/dotnet/runtime - ef6283ac0a14c78d9e9fef4841545099bd7ad12b + bc0f1b0ec650c3a4c81d0b393b4d74a21621c5ce - + https://github.com/dotnet/runtime - ef6283ac0a14c78d9e9fef4841545099bd7ad12b + bc0f1b0ec650c3a4c81d0b393b4d74a21621c5ce - + https://github.com/dotnet/runtime - ef6283ac0a14c78d9e9fef4841545099bd7ad12b + bc0f1b0ec650c3a4c81d0b393b4d74a21621c5ce - + https://github.com/dotnet/runtime - ef6283ac0a14c78d9e9fef4841545099bd7ad12b + bc0f1b0ec650c3a4c81d0b393b4d74a21621c5ce - + https://github.com/dotnet/runtime - ef6283ac0a14c78d9e9fef4841545099bd7ad12b + bc0f1b0ec650c3a4c81d0b393b4d74a21621c5ce - + https://github.com/dotnet/runtime - ef6283ac0a14c78d9e9fef4841545099bd7ad12b + bc0f1b0ec650c3a4c81d0b393b4d74a21621c5ce - + https://github.com/dotnet/runtime - ef6283ac0a14c78d9e9fef4841545099bd7ad12b + bc0f1b0ec650c3a4c81d0b393b4d74a21621c5ce - + https://github.com/dotnet/runtime - ef6283ac0a14c78d9e9fef4841545099bd7ad12b + bc0f1b0ec650c3a4c81d0b393b4d74a21621c5ce - + https://github.com/dotnet/runtime - ef6283ac0a14c78d9e9fef4841545099bd7ad12b + bc0f1b0ec650c3a4c81d0b393b4d74a21621c5ce - + https://github.com/dotnet/runtime - ef6283ac0a14c78d9e9fef4841545099bd7ad12b + bc0f1b0ec650c3a4c81d0b393b4d74a21621c5ce - + https://github.com/dotnet/runtime - ef6283ac0a14c78d9e9fef4841545099bd7ad12b + bc0f1b0ec650c3a4c81d0b393b4d74a21621c5ce - + https://github.com/dotnet/runtime - ef6283ac0a14c78d9e9fef4841545099bd7ad12b + bc0f1b0ec650c3a4c81d0b393b4d74a21621c5ce - + https://github.com/dotnet/runtime - ef6283ac0a14c78d9e9fef4841545099bd7ad12b + bc0f1b0ec650c3a4c81d0b393b4d74a21621c5ce - + https://github.com/dotnet/runtime - ef6283ac0a14c78d9e9fef4841545099bd7ad12b + bc0f1b0ec650c3a4c81d0b393b4d74a21621c5ce - + https://github.com/dotnet/runtime - ef6283ac0a14c78d9e9fef4841545099bd7ad12b + bc0f1b0ec650c3a4c81d0b393b4d74a21621c5ce - + https://github.com/dotnet/runtime - ef6283ac0a14c78d9e9fef4841545099bd7ad12b + bc0f1b0ec650c3a4c81d0b393b4d74a21621c5ce - + https://github.com/dotnet/runtime - ef6283ac0a14c78d9e9fef4841545099bd7ad12b + bc0f1b0ec650c3a4c81d0b393b4d74a21621c5ce - + https://github.com/dotnet/runtime - ef6283ac0a14c78d9e9fef4841545099bd7ad12b + bc0f1b0ec650c3a4c81d0b393b4d74a21621c5ce - + https://github.com/dotnet/runtime - ef6283ac0a14c78d9e9fef4841545099bd7ad12b + bc0f1b0ec650c3a4c81d0b393b4d74a21621c5ce - + https://github.com/dotnet/runtime - ef6283ac0a14c78d9e9fef4841545099bd7ad12b + bc0f1b0ec650c3a4c81d0b393b4d74a21621c5ce - + https://github.com/dotnet/runtime - ef6283ac0a14c78d9e9fef4841545099bd7ad12b + bc0f1b0ec650c3a4c81d0b393b4d74a21621c5ce - + https://github.com/dotnet/runtime - ef6283ac0a14c78d9e9fef4841545099bd7ad12b + bc0f1b0ec650c3a4c81d0b393b4d74a21621c5ce - + https://github.com/dotnet/runtime - ef6283ac0a14c78d9e9fef4841545099bd7ad12b + bc0f1b0ec650c3a4c81d0b393b4d74a21621c5ce - + https://github.com/dotnet/winforms - f41cb9532684313e0c1652c6e51f2c716360166f + 6c1fdb698461863ba9f1d40b3c8c52eb89dcc151 diff --git a/eng/Versions.props b/eng/Versions.props index 51d28dcf2..ea468d66a 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -25,51 +25,51 @@ 6.2.4 - 8.0.0-rtm.23502.11 - 8.0.0-rtm.23502.11 - 8.0.0-rtm.23502.11 - 8.0.0-rtm.23502.11 + 8.0.0-rtm.23503.5 + 8.0.0-rtm.23503.5 + 8.0.0-rtm.23503.5 + 8.0.0-rtm.23503.5 5.0.0 - 8.0.0-rtm.23502.11 - 8.0.0-rtm.23502.11 - 8.0.0-rtm.23502.11 - 8.0.0-rtm.23502.11 - 8.0.0-rtm.23502.11 - 8.0.0-rtm.23502.11 - 8.0.0-rtm.23502.11 - 8.0.0-rtm.23502.11 - 8.0.0-rtm.23502.11 - 8.0.0-rtm.23502.11 - 8.0.0-rtm.23502.11 - 8.0.0-rtm.23502.11 + 8.0.0-rtm.23503.5 + 8.0.0-rtm.23503.5 + 8.0.0-rtm.23503.5 + 8.0.0-rtm.23503.5 + 8.0.0-rtm.23503.5 + 8.0.0-rtm.23503.5 + 8.0.0-rtm.23503.5 + 8.0.0-rtm.23503.5 + 8.0.0-rtm.23503.5 + 8.0.0-rtm.23503.5 + 8.0.0-rtm.23503.5 + 8.0.0-rtm.23503.5 5.0.0 - 8.0.0-rtm.23502.11 + 8.0.0-rtm.23503.5 5.0.0 - 8.0.0-rtm.23502.11 - 8.0.0-rtm.23502.11 - 8.0.0-rtm.23502.11 - 8.0.0-rtm.23502.11 + 8.0.0-rtm.23503.5 + 8.0.0-rtm.23503.5 + 8.0.0-rtm.23503.5 + 8.0.0-rtm.23503.5 6.0.0 5.0.0 - 8.0.0-rtm.23502.11 - 8.0.0-rtm.23502.11 - 8.0.0-rtm.23502.11 - 8.0.0-rtm.23502.11 + 8.0.0-rtm.23503.5 + 8.0.0-rtm.23503.5 + 8.0.0-rtm.23503.5 + 8.0.0-rtm.23503.5 5.0.0 - 8.0.0-rtm.23502.11 - 8.0.0-rtm.23502.11 - 8.0.0-rtm.23502.11 - 8.0.0-rtm.23502.11 - 8.0.0-rtm.23502.11 - 8.0.0-rtm.23502.11 + 8.0.0-rtm.23503.5 + 8.0.0-rtm.23503.5 + 8.0.0-rtm.23503.5 + 8.0.0-rtm.23503.5 + 8.0.0-rtm.23503.5 + 8.0.0-rtm.23503.5 4.10.0 - 8.0.0-rtm.23503.3 - 8.0.0-rtm.23503.3 - 8.0.0-rtm.23503.3 + 8.0.0-rtm.23503.10 + 8.0.0-rtm.23503.10 + 8.0.0-rtm.23503.10 - 8.0.0-rtm.23503.2 - 8.0.0-rtm.23503.2 + 8.0.0-rtm.23503.3 + 8.0.0-rtm.23503.3 From 0229aaad6fe7a31fa9fbb56484ede7e187d20d74 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Wed, 4 Oct 2023 09:26:16 +0000 Subject: [PATCH 064/222] [release/8.0] Update dependencies from dotnet/wpf (#3875) [release/8.0] Update dependencies from dotnet/wpf - Coherency Updates: - Microsoft.Private.Winforms: from 8.0.0-rtm.23503.10 to 8.0.0-rtm.23503.13 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Internal.Runtime.WindowsDesktop.Transport: from 8.0.0-rtm.23503.5 to 8.0.0-rtm.23503.15 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23503.10 to 8.0.0-rtm.23503.13 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.NETCore.App.Ref: from 8.0.0-rtm.23503.5 to 8.0.0-rtm.23503.15 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23503.10 to 8.0.0-rtm.23503.13 (parent: Microsoft.DotNet.Wpf.GitHub) - VS.Redist.Common.NetCore.SharedFramework.x64.8.0: from 8.0.0-rtm.23503.5 to 8.0.0-rtm.23503.15 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23503.10 to 8.0.0-rtm.23503.13 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.NETCore.App.Runtime.win-x64: from 8.0.0-rtm.23503.5 to 8.0.0-rtm.23503.15 (parent: Microsoft.Private.Winforms) - Microsoft.Dotnet.WinForms.ProjectTemplates: from 8.0.0-rtm.23503.10 to 8.0.0-rtm.23503.13 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rtm.23503.10 to 8.0.0-rtm.23503.13 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Win32.Registry.AccessControl: from 8.0.0-rtm.23503.5 to 8.0.0-rtm.23503.15 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23503.10 to 8.0.0-rtm.23503.13 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Win32.SystemEvents: from 8.0.0-rtm.23503.5 to 8.0.0-rtm.23503.15 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23503.10 to 8.0.0-rtm.23503.13 (parent: Microsoft.DotNet.Wpf.GitHub) - System.CodeDom: from 8.0.0-rtm.23503.5 to 8.0.0-rtm.23503.15 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23503.10 to 8.0.0-rtm.23503.13 (parent: Microsoft.DotNet.Wpf.GitHub) - System.ComponentModel.Composition: from 8.0.0-rtm.23503.5 to 8.0.0-rtm.23503.15 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23503.10 to 8.0.0-rtm.23503.13 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Configuration.ConfigurationManager: from 8.0.0-rtm.23503.5 to 8.0.0-rtm.23503.15 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23503.10 to 8.0.0-rtm.23503.13 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Data.Odbc: from 8.0.0-rtm.23503.5 to 8.0.0-rtm.23503.15 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23503.10 to 8.0.0-rtm.23503.13 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Data.OleDb: from 8.0.0-rtm.23503.5 to 8.0.0-rtm.23503.15 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23503.10 to 8.0.0-rtm.23503.13 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Diagnostics.EventLog: from 8.0.0-rtm.23503.5 to 8.0.0-rtm.23503.15 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23503.10 to 8.0.0-rtm.23503.13 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Diagnostics.PerformanceCounter: from 8.0.0-rtm.23503.5 to 8.0.0-rtm.23503.15 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23503.10 to 8.0.0-rtm.23503.13 (parent: Microsoft.DotNet.Wpf.GitHub) - System.DirectoryServices.AccountManagement: from 8.0.0-rtm.23503.5 to 8.0.0-rtm.23503.15 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23503.10 to 8.0.0-rtm.23503.13 (parent: Microsoft.DotNet.Wpf.GitHub) - System.DirectoryServices.Protocols: from 8.0.0-rtm.23503.5 to 8.0.0-rtm.23503.15 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23503.10 to 8.0.0-rtm.23503.13 (parent: Microsoft.DotNet.Wpf.GitHub) - System.DirectoryServices: from 8.0.0-rtm.23503.5 to 8.0.0-rtm.23503.15 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23503.10 to 8.0.0-rtm.23503.13 (parent: Microsoft.DotNet.Wpf.GitHub) - System.IO.Packaging: from 8.0.0-rtm.23503.5 to 8.0.0-rtm.23503.15 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23503.10 to 8.0.0-rtm.23503.13 (parent: Microsoft.DotNet.Wpf.GitHub) - System.IO.Ports: from 8.0.0-rtm.23503.5 to 8.0.0-rtm.23503.15 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23503.10 to 8.0.0-rtm.23503.13 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Management: from 8.0.0-rtm.23503.5 to 8.0.0-rtm.23503.15 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23503.10 to 8.0.0-rtm.23503.13 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Reflection.Context: from 8.0.0-rtm.23503.5 to 8.0.0-rtm.23503.15 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23503.10 to 8.0.0-rtm.23503.13 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Runtime.Caching: from 8.0.0-rtm.23503.5 to 8.0.0-rtm.23503.15 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23503.10 to 8.0.0-rtm.23503.13 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Security.Cryptography.Pkcs: from 8.0.0-rtm.23503.5 to 8.0.0-rtm.23503.15 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23503.10 to 8.0.0-rtm.23503.13 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Security.Cryptography.ProtectedData: from 8.0.0-rtm.23503.5 to 8.0.0-rtm.23503.15 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23503.10 to 8.0.0-rtm.23503.13 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Security.Cryptography.Xml: from 8.0.0-rtm.23503.5 to 8.0.0-rtm.23503.15 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23503.10 to 8.0.0-rtm.23503.13 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Security.Permissions: from 8.0.0-rtm.23503.5 to 8.0.0-rtm.23503.15 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23503.10 to 8.0.0-rtm.23503.13 (parent: Microsoft.DotNet.Wpf.GitHub) - System.ServiceModel.Syndication: from 8.0.0-rtm.23503.5 to 8.0.0-rtm.23503.15 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23503.10 to 8.0.0-rtm.23503.13 (parent: Microsoft.DotNet.Wpf.GitHub) - System.ServiceProcess.ServiceController: from 8.0.0-rtm.23503.5 to 8.0.0-rtm.23503.15 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23503.10 to 8.0.0-rtm.23503.13 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Speech: from 8.0.0-rtm.23503.5 to 8.0.0-rtm.23503.15 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23503.10 to 8.0.0-rtm.23503.13 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Text.Encoding.CodePages: from 8.0.0-rtm.23503.5 to 8.0.0-rtm.23503.15 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23503.10 to 8.0.0-rtm.23503.13 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Threading.AccessControl: from 8.0.0-rtm.23503.5 to 8.0.0-rtm.23503.15 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23503.10 to 8.0.0-rtm.23503.13 (parent: Microsoft.DotNet.Wpf.GitHub) - System.ComponentModel.Composition.Registration: from 8.0.0-rtm.23503.5 to 8.0.0-rtm.23503.15 (parent: Microsoft.Private.Winforms) - System.Drawing.Common: from 8.0.0-rtm.23503.10 to 8.0.0-rtm.23503.13 (parent: Microsoft.DotNet.Wpf.GitHub) --- eng/Version.Details.xml | 148 ++++++++++++++++++++-------------------- eng/Versions.props | 72 +++++++++---------- 2 files changed, 110 insertions(+), 110 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 00433bf67..7a5e7ccc3 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,153 +1,153 @@ - + https://github.com/dotnet/runtime - bc0f1b0ec650c3a4c81d0b393b4d74a21621c5ce + a84f8ffbf5d597b8a91e893a1f413466de017a68 - + https://github.com/dotnet/winforms - 6c1fdb698461863ba9f1d40b3c8c52eb89dcc151 + 8a59d1905af0cdfb97facf168ea45ff66a1aac59 - + https://github.com/dotnet/wpf - 9a9cd969e5b89eac3c487083695d5a532b702e9e + bb02ebf62ac63db011265fee937bdde982af8bf6 - + https://github.com/dotnet/wpf - 9a9cd969e5b89eac3c487083695d5a532b702e9e + bb02ebf62ac63db011265fee937bdde982af8bf6 - + https://github.com/dotnet/runtime - bc0f1b0ec650c3a4c81d0b393b4d74a21621c5ce + a84f8ffbf5d597b8a91e893a1f413466de017a68 - + https://github.com/dotnet/runtime - bc0f1b0ec650c3a4c81d0b393b4d74a21621c5ce + a84f8ffbf5d597b8a91e893a1f413466de017a68 - + https://github.com/dotnet/runtime - bc0f1b0ec650c3a4c81d0b393b4d74a21621c5ce + a84f8ffbf5d597b8a91e893a1f413466de017a68 - + https://github.com/dotnet/winforms - 6c1fdb698461863ba9f1d40b3c8c52eb89dcc151 + 8a59d1905af0cdfb97facf168ea45ff66a1aac59 - + https://github.com/dotnet/wpf - 9a9cd969e5b89eac3c487083695d5a532b702e9e + bb02ebf62ac63db011265fee937bdde982af8bf6 - + https://github.com/dotnet/runtime - bc0f1b0ec650c3a4c81d0b393b4d74a21621c5ce + a84f8ffbf5d597b8a91e893a1f413466de017a68 - + https://github.com/dotnet/runtime - bc0f1b0ec650c3a4c81d0b393b4d74a21621c5ce + a84f8ffbf5d597b8a91e893a1f413466de017a68 - + https://github.com/dotnet/runtime - bc0f1b0ec650c3a4c81d0b393b4d74a21621c5ce + a84f8ffbf5d597b8a91e893a1f413466de017a68 - + https://github.com/dotnet/runtime - bc0f1b0ec650c3a4c81d0b393b4d74a21621c5ce + a84f8ffbf5d597b8a91e893a1f413466de017a68 - + https://github.com/dotnet/runtime - bc0f1b0ec650c3a4c81d0b393b4d74a21621c5ce + a84f8ffbf5d597b8a91e893a1f413466de017a68 - + https://github.com/dotnet/runtime - bc0f1b0ec650c3a4c81d0b393b4d74a21621c5ce + a84f8ffbf5d597b8a91e893a1f413466de017a68 - + https://github.com/dotnet/runtime - bc0f1b0ec650c3a4c81d0b393b4d74a21621c5ce + a84f8ffbf5d597b8a91e893a1f413466de017a68 - + https://github.com/dotnet/runtime - bc0f1b0ec650c3a4c81d0b393b4d74a21621c5ce + a84f8ffbf5d597b8a91e893a1f413466de017a68 - + https://github.com/dotnet/runtime - bc0f1b0ec650c3a4c81d0b393b4d74a21621c5ce + a84f8ffbf5d597b8a91e893a1f413466de017a68 - + https://github.com/dotnet/runtime - bc0f1b0ec650c3a4c81d0b393b4d74a21621c5ce + a84f8ffbf5d597b8a91e893a1f413466de017a68 - + https://github.com/dotnet/runtime - bc0f1b0ec650c3a4c81d0b393b4d74a21621c5ce + a84f8ffbf5d597b8a91e893a1f413466de017a68 - + https://github.com/dotnet/runtime - bc0f1b0ec650c3a4c81d0b393b4d74a21621c5ce + a84f8ffbf5d597b8a91e893a1f413466de017a68 - + https://github.com/dotnet/runtime - bc0f1b0ec650c3a4c81d0b393b4d74a21621c5ce + a84f8ffbf5d597b8a91e893a1f413466de017a68 - + https://github.com/dotnet/runtime - bc0f1b0ec650c3a4c81d0b393b4d74a21621c5ce + a84f8ffbf5d597b8a91e893a1f413466de017a68 - + https://github.com/dotnet/runtime - bc0f1b0ec650c3a4c81d0b393b4d74a21621c5ce + a84f8ffbf5d597b8a91e893a1f413466de017a68 - + https://github.com/dotnet/runtime - bc0f1b0ec650c3a4c81d0b393b4d74a21621c5ce + a84f8ffbf5d597b8a91e893a1f413466de017a68 - + https://github.com/dotnet/runtime - bc0f1b0ec650c3a4c81d0b393b4d74a21621c5ce + a84f8ffbf5d597b8a91e893a1f413466de017a68 - + https://github.com/dotnet/runtime - bc0f1b0ec650c3a4c81d0b393b4d74a21621c5ce + a84f8ffbf5d597b8a91e893a1f413466de017a68 - + https://github.com/dotnet/runtime - bc0f1b0ec650c3a4c81d0b393b4d74a21621c5ce + a84f8ffbf5d597b8a91e893a1f413466de017a68 - + https://github.com/dotnet/runtime - bc0f1b0ec650c3a4c81d0b393b4d74a21621c5ce + a84f8ffbf5d597b8a91e893a1f413466de017a68 - + https://github.com/dotnet/runtime - bc0f1b0ec650c3a4c81d0b393b4d74a21621c5ce + a84f8ffbf5d597b8a91e893a1f413466de017a68 - + https://github.com/dotnet/runtime - bc0f1b0ec650c3a4c81d0b393b4d74a21621c5ce + a84f8ffbf5d597b8a91e893a1f413466de017a68 - + https://github.com/dotnet/runtime - bc0f1b0ec650c3a4c81d0b393b4d74a21621c5ce + a84f8ffbf5d597b8a91e893a1f413466de017a68 - + https://github.com/dotnet/runtime - bc0f1b0ec650c3a4c81d0b393b4d74a21621c5ce + a84f8ffbf5d597b8a91e893a1f413466de017a68 - + https://github.com/dotnet/runtime - bc0f1b0ec650c3a4c81d0b393b4d74a21621c5ce + a84f8ffbf5d597b8a91e893a1f413466de017a68 - + https://github.com/dotnet/runtime - bc0f1b0ec650c3a4c81d0b393b4d74a21621c5ce + a84f8ffbf5d597b8a91e893a1f413466de017a68 - + https://github.com/dotnet/runtime - bc0f1b0ec650c3a4c81d0b393b4d74a21621c5ce + a84f8ffbf5d597b8a91e893a1f413466de017a68 - + https://github.com/dotnet/winforms - 6c1fdb698461863ba9f1d40b3c8c52eb89dcc151 + 8a59d1905af0cdfb97facf168ea45ff66a1aac59 diff --git a/eng/Versions.props b/eng/Versions.props index ea468d66a..196c5ca02 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -25,51 +25,51 @@ 6.2.4 - 8.0.0-rtm.23503.5 - 8.0.0-rtm.23503.5 - 8.0.0-rtm.23503.5 - 8.0.0-rtm.23503.5 + 8.0.0-rtm.23503.15 + 8.0.0-rtm.23503.15 + 8.0.0-rtm.23503.15 + 8.0.0-rtm.23503.15 5.0.0 - 8.0.0-rtm.23503.5 - 8.0.0-rtm.23503.5 - 8.0.0-rtm.23503.5 - 8.0.0-rtm.23503.5 - 8.0.0-rtm.23503.5 - 8.0.0-rtm.23503.5 - 8.0.0-rtm.23503.5 - 8.0.0-rtm.23503.5 - 8.0.0-rtm.23503.5 - 8.0.0-rtm.23503.5 - 8.0.0-rtm.23503.5 - 8.0.0-rtm.23503.5 + 8.0.0-rtm.23503.15 + 8.0.0-rtm.23503.15 + 8.0.0-rtm.23503.15 + 8.0.0-rtm.23503.15 + 8.0.0-rtm.23503.15 + 8.0.0-rtm.23503.15 + 8.0.0-rtm.23503.15 + 8.0.0-rtm.23503.15 + 8.0.0-rtm.23503.15 + 8.0.0-rtm.23503.15 + 8.0.0-rtm.23503.15 + 8.0.0-rtm.23503.15 5.0.0 - 8.0.0-rtm.23503.5 + 8.0.0-rtm.23503.15 5.0.0 - 8.0.0-rtm.23503.5 - 8.0.0-rtm.23503.5 - 8.0.0-rtm.23503.5 - 8.0.0-rtm.23503.5 + 8.0.0-rtm.23503.15 + 8.0.0-rtm.23503.15 + 8.0.0-rtm.23503.15 + 8.0.0-rtm.23503.15 6.0.0 5.0.0 - 8.0.0-rtm.23503.5 - 8.0.0-rtm.23503.5 - 8.0.0-rtm.23503.5 - 8.0.0-rtm.23503.5 + 8.0.0-rtm.23503.15 + 8.0.0-rtm.23503.15 + 8.0.0-rtm.23503.15 + 8.0.0-rtm.23503.15 5.0.0 - 8.0.0-rtm.23503.5 - 8.0.0-rtm.23503.5 - 8.0.0-rtm.23503.5 - 8.0.0-rtm.23503.5 - 8.0.0-rtm.23503.5 - 8.0.0-rtm.23503.5 + 8.0.0-rtm.23503.15 + 8.0.0-rtm.23503.15 + 8.0.0-rtm.23503.15 + 8.0.0-rtm.23503.15 + 8.0.0-rtm.23503.15 + 8.0.0-rtm.23503.15 4.10.0 - 8.0.0-rtm.23503.10 - 8.0.0-rtm.23503.10 - 8.0.0-rtm.23503.10 + 8.0.0-rtm.23503.13 + 8.0.0-rtm.23503.13 + 8.0.0-rtm.23503.13 - 8.0.0-rtm.23503.3 - 8.0.0-rtm.23503.3 + 8.0.0-rtm.23504.1 + 8.0.0-rtm.23504.1 From fbc1fdd82c38765663b256e663a51e55b855f345 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Thu, 5 Oct 2023 03:09:04 +0000 Subject: [PATCH 065/222] [release/8.0] Update dependencies from dotnet/wpf (#3877) [release/8.0] Update dependencies from dotnet/wpf - Coherency Updates: - Microsoft.Private.Winforms: from 8.0.0-rtm.23503.13 to 8.0.0-rtm.23504.13 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Internal.Runtime.WindowsDesktop.Transport: from 8.0.0-rtm.23503.15 to 8.0.0-rtm.23504.8 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23503.13 to 8.0.0-rtm.23504.13 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.NETCore.App.Ref: from 8.0.0-rtm.23503.15 to 8.0.0-rtm.23504.8 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23503.13 to 8.0.0-rtm.23504.13 (parent: Microsoft.DotNet.Wpf.GitHub) - VS.Redist.Common.NetCore.SharedFramework.x64.8.0: from 8.0.0-rtm.23503.15 to 8.0.0-rtm.23504.8 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23503.13 to 8.0.0-rtm.23504.13 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.NETCore.App.Runtime.win-x64: from 8.0.0-rtm.23503.15 to 8.0.0-rtm.23504.8 (parent: Microsoft.Private.Winforms) - Microsoft.Dotnet.WinForms.ProjectTemplates: from 8.0.0-rtm.23503.13 to 8.0.0-rtm.23504.13 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rtm.23503.13 to 8.0.0-rtm.23504.13 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Win32.Registry.AccessControl: from 8.0.0-rtm.23503.15 to 8.0.0-rtm.23504.8 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23503.13 to 8.0.0-rtm.23504.13 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Win32.SystemEvents: from 8.0.0-rtm.23503.15 to 8.0.0-rtm.23504.8 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23503.13 to 8.0.0-rtm.23504.13 (parent: Microsoft.DotNet.Wpf.GitHub) - System.CodeDom: from 8.0.0-rtm.23503.15 to 8.0.0-rtm.23504.8 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23503.13 to 8.0.0-rtm.23504.13 (parent: Microsoft.DotNet.Wpf.GitHub) - System.ComponentModel.Composition: from 8.0.0-rtm.23503.15 to 8.0.0-rtm.23504.8 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23503.13 to 8.0.0-rtm.23504.13 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Configuration.ConfigurationManager: from 8.0.0-rtm.23503.15 to 8.0.0-rtm.23504.8 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23503.13 to 8.0.0-rtm.23504.13 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Data.Odbc: from 8.0.0-rtm.23503.15 to 8.0.0-rtm.23504.8 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23503.13 to 8.0.0-rtm.23504.13 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Data.OleDb: from 8.0.0-rtm.23503.15 to 8.0.0-rtm.23504.8 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23503.13 to 8.0.0-rtm.23504.13 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Diagnostics.EventLog: from 8.0.0-rtm.23503.15 to 8.0.0-rtm.23504.8 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23503.13 to 8.0.0-rtm.23504.13 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Diagnostics.PerformanceCounter: from 8.0.0-rtm.23503.15 to 8.0.0-rtm.23504.8 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23503.13 to 8.0.0-rtm.23504.13 (parent: Microsoft.DotNet.Wpf.GitHub) - System.DirectoryServices.AccountManagement: from 8.0.0-rtm.23503.15 to 8.0.0-rtm.23504.8 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23503.13 to 8.0.0-rtm.23504.13 (parent: Microsoft.DotNet.Wpf.GitHub) - System.DirectoryServices.Protocols: from 8.0.0-rtm.23503.15 to 8.0.0-rtm.23504.8 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23503.13 to 8.0.0-rtm.23504.13 (parent: Microsoft.DotNet.Wpf.GitHub) - System.DirectoryServices: from 8.0.0-rtm.23503.15 to 8.0.0-rtm.23504.8 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23503.13 to 8.0.0-rtm.23504.13 (parent: Microsoft.DotNet.Wpf.GitHub) - System.IO.Packaging: from 8.0.0-rtm.23503.15 to 8.0.0-rtm.23504.8 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23503.13 to 8.0.0-rtm.23504.13 (parent: Microsoft.DotNet.Wpf.GitHub) - System.IO.Ports: from 8.0.0-rtm.23503.15 to 8.0.0-rtm.23504.8 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23503.13 to 8.0.0-rtm.23504.13 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Management: from 8.0.0-rtm.23503.15 to 8.0.0-rtm.23504.8 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23503.13 to 8.0.0-rtm.23504.13 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Reflection.Context: from 8.0.0-rtm.23503.15 to 8.0.0-rtm.23504.8 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23503.13 to 8.0.0-rtm.23504.13 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Runtime.Caching: from 8.0.0-rtm.23503.15 to 8.0.0-rtm.23504.8 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23503.13 to 8.0.0-rtm.23504.13 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Security.Cryptography.Pkcs: from 8.0.0-rtm.23503.15 to 8.0.0-rtm.23504.8 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23503.13 to 8.0.0-rtm.23504.13 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Security.Cryptography.ProtectedData: from 8.0.0-rtm.23503.15 to 8.0.0-rtm.23504.8 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23503.13 to 8.0.0-rtm.23504.13 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Security.Cryptography.Xml: from 8.0.0-rtm.23503.15 to 8.0.0-rtm.23504.8 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23503.13 to 8.0.0-rtm.23504.13 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Security.Permissions: from 8.0.0-rtm.23503.15 to 8.0.0-rtm.23504.8 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23503.13 to 8.0.0-rtm.23504.13 (parent: Microsoft.DotNet.Wpf.GitHub) - System.ServiceModel.Syndication: from 8.0.0-rtm.23503.15 to 8.0.0-rtm.23504.8 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23503.13 to 8.0.0-rtm.23504.13 (parent: Microsoft.DotNet.Wpf.GitHub) - System.ServiceProcess.ServiceController: from 8.0.0-rtm.23503.15 to 8.0.0-rtm.23504.8 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23503.13 to 8.0.0-rtm.23504.13 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Speech: from 8.0.0-rtm.23503.15 to 8.0.0-rtm.23504.8 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23503.13 to 8.0.0-rtm.23504.13 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Text.Encoding.CodePages: from 8.0.0-rtm.23503.15 to 8.0.0-rtm.23504.8 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23503.13 to 8.0.0-rtm.23504.13 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Threading.AccessControl: from 8.0.0-rtm.23503.15 to 8.0.0-rtm.23504.8 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23503.13 to 8.0.0-rtm.23504.13 (parent: Microsoft.DotNet.Wpf.GitHub) - System.ComponentModel.Composition.Registration: from 8.0.0-rtm.23503.15 to 8.0.0-rtm.23504.8 (parent: Microsoft.Private.Winforms) - System.Drawing.Common: from 8.0.0-rtm.23503.13 to 8.0.0-rtm.23504.13 (parent: Microsoft.DotNet.Wpf.GitHub) --- eng/Version.Details.xml | 148 ++++++++++++++++++++-------------------- eng/Versions.props | 72 +++++++++---------- 2 files changed, 110 insertions(+), 110 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 7a5e7ccc3..e46ced3af 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,153 +1,153 @@ - + https://github.com/dotnet/runtime - a84f8ffbf5d597b8a91e893a1f413466de017a68 + 22b8a5665f5725a2c7bb09cfbe88f2cdc9847c1a - + https://github.com/dotnet/winforms - 8a59d1905af0cdfb97facf168ea45ff66a1aac59 + 8226c3cbaf595ae2c6fb8ed7ccd69ae77d647bd4 - + https://github.com/dotnet/wpf - bb02ebf62ac63db011265fee937bdde982af8bf6 + b892ae845b9832e0873ef2f7c958c46dc6b3d637 - + https://github.com/dotnet/wpf - bb02ebf62ac63db011265fee937bdde982af8bf6 + b892ae845b9832e0873ef2f7c958c46dc6b3d637 - + https://github.com/dotnet/runtime - a84f8ffbf5d597b8a91e893a1f413466de017a68 + 22b8a5665f5725a2c7bb09cfbe88f2cdc9847c1a - + https://github.com/dotnet/runtime - a84f8ffbf5d597b8a91e893a1f413466de017a68 + 22b8a5665f5725a2c7bb09cfbe88f2cdc9847c1a - + https://github.com/dotnet/runtime - a84f8ffbf5d597b8a91e893a1f413466de017a68 + 22b8a5665f5725a2c7bb09cfbe88f2cdc9847c1a - + https://github.com/dotnet/winforms - 8a59d1905af0cdfb97facf168ea45ff66a1aac59 + 8226c3cbaf595ae2c6fb8ed7ccd69ae77d647bd4 - + https://github.com/dotnet/wpf - bb02ebf62ac63db011265fee937bdde982af8bf6 + b892ae845b9832e0873ef2f7c958c46dc6b3d637 - + https://github.com/dotnet/runtime - a84f8ffbf5d597b8a91e893a1f413466de017a68 + 22b8a5665f5725a2c7bb09cfbe88f2cdc9847c1a - + https://github.com/dotnet/runtime - a84f8ffbf5d597b8a91e893a1f413466de017a68 + 22b8a5665f5725a2c7bb09cfbe88f2cdc9847c1a - + https://github.com/dotnet/runtime - a84f8ffbf5d597b8a91e893a1f413466de017a68 + 22b8a5665f5725a2c7bb09cfbe88f2cdc9847c1a - + https://github.com/dotnet/runtime - a84f8ffbf5d597b8a91e893a1f413466de017a68 + 22b8a5665f5725a2c7bb09cfbe88f2cdc9847c1a - + https://github.com/dotnet/runtime - a84f8ffbf5d597b8a91e893a1f413466de017a68 + 22b8a5665f5725a2c7bb09cfbe88f2cdc9847c1a - + https://github.com/dotnet/runtime - a84f8ffbf5d597b8a91e893a1f413466de017a68 + 22b8a5665f5725a2c7bb09cfbe88f2cdc9847c1a - + https://github.com/dotnet/runtime - a84f8ffbf5d597b8a91e893a1f413466de017a68 + 22b8a5665f5725a2c7bb09cfbe88f2cdc9847c1a - + https://github.com/dotnet/runtime - a84f8ffbf5d597b8a91e893a1f413466de017a68 + 22b8a5665f5725a2c7bb09cfbe88f2cdc9847c1a - + https://github.com/dotnet/runtime - a84f8ffbf5d597b8a91e893a1f413466de017a68 + 22b8a5665f5725a2c7bb09cfbe88f2cdc9847c1a - + https://github.com/dotnet/runtime - a84f8ffbf5d597b8a91e893a1f413466de017a68 + 22b8a5665f5725a2c7bb09cfbe88f2cdc9847c1a - + https://github.com/dotnet/runtime - a84f8ffbf5d597b8a91e893a1f413466de017a68 + 22b8a5665f5725a2c7bb09cfbe88f2cdc9847c1a - + https://github.com/dotnet/runtime - a84f8ffbf5d597b8a91e893a1f413466de017a68 + 22b8a5665f5725a2c7bb09cfbe88f2cdc9847c1a - + https://github.com/dotnet/runtime - a84f8ffbf5d597b8a91e893a1f413466de017a68 + 22b8a5665f5725a2c7bb09cfbe88f2cdc9847c1a - + https://github.com/dotnet/runtime - a84f8ffbf5d597b8a91e893a1f413466de017a68 + 22b8a5665f5725a2c7bb09cfbe88f2cdc9847c1a - + https://github.com/dotnet/runtime - a84f8ffbf5d597b8a91e893a1f413466de017a68 + 22b8a5665f5725a2c7bb09cfbe88f2cdc9847c1a - + https://github.com/dotnet/runtime - a84f8ffbf5d597b8a91e893a1f413466de017a68 + 22b8a5665f5725a2c7bb09cfbe88f2cdc9847c1a - + https://github.com/dotnet/runtime - a84f8ffbf5d597b8a91e893a1f413466de017a68 + 22b8a5665f5725a2c7bb09cfbe88f2cdc9847c1a - + https://github.com/dotnet/runtime - a84f8ffbf5d597b8a91e893a1f413466de017a68 + 22b8a5665f5725a2c7bb09cfbe88f2cdc9847c1a - + https://github.com/dotnet/runtime - a84f8ffbf5d597b8a91e893a1f413466de017a68 + 22b8a5665f5725a2c7bb09cfbe88f2cdc9847c1a - + https://github.com/dotnet/runtime - a84f8ffbf5d597b8a91e893a1f413466de017a68 + 22b8a5665f5725a2c7bb09cfbe88f2cdc9847c1a - + https://github.com/dotnet/runtime - a84f8ffbf5d597b8a91e893a1f413466de017a68 + 22b8a5665f5725a2c7bb09cfbe88f2cdc9847c1a - + https://github.com/dotnet/runtime - a84f8ffbf5d597b8a91e893a1f413466de017a68 + 22b8a5665f5725a2c7bb09cfbe88f2cdc9847c1a - + https://github.com/dotnet/runtime - a84f8ffbf5d597b8a91e893a1f413466de017a68 + 22b8a5665f5725a2c7bb09cfbe88f2cdc9847c1a - + https://github.com/dotnet/runtime - a84f8ffbf5d597b8a91e893a1f413466de017a68 + 22b8a5665f5725a2c7bb09cfbe88f2cdc9847c1a - + https://github.com/dotnet/runtime - a84f8ffbf5d597b8a91e893a1f413466de017a68 + 22b8a5665f5725a2c7bb09cfbe88f2cdc9847c1a - + https://github.com/dotnet/runtime - a84f8ffbf5d597b8a91e893a1f413466de017a68 + 22b8a5665f5725a2c7bb09cfbe88f2cdc9847c1a - + https://github.com/dotnet/runtime - a84f8ffbf5d597b8a91e893a1f413466de017a68 + 22b8a5665f5725a2c7bb09cfbe88f2cdc9847c1a - + https://github.com/dotnet/winforms - 8a59d1905af0cdfb97facf168ea45ff66a1aac59 + 8226c3cbaf595ae2c6fb8ed7ccd69ae77d647bd4 diff --git a/eng/Versions.props b/eng/Versions.props index 196c5ca02..5268b1e22 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -25,51 +25,51 @@ 6.2.4 - 8.0.0-rtm.23503.15 - 8.0.0-rtm.23503.15 - 8.0.0-rtm.23503.15 - 8.0.0-rtm.23503.15 + 8.0.0-rtm.23504.8 + 8.0.0-rtm.23504.8 + 8.0.0-rtm.23504.8 + 8.0.0-rtm.23504.8 5.0.0 - 8.0.0-rtm.23503.15 - 8.0.0-rtm.23503.15 - 8.0.0-rtm.23503.15 - 8.0.0-rtm.23503.15 - 8.0.0-rtm.23503.15 - 8.0.0-rtm.23503.15 - 8.0.0-rtm.23503.15 - 8.0.0-rtm.23503.15 - 8.0.0-rtm.23503.15 - 8.0.0-rtm.23503.15 - 8.0.0-rtm.23503.15 - 8.0.0-rtm.23503.15 + 8.0.0-rtm.23504.8 + 8.0.0-rtm.23504.8 + 8.0.0-rtm.23504.8 + 8.0.0-rtm.23504.8 + 8.0.0-rtm.23504.8 + 8.0.0-rtm.23504.8 + 8.0.0-rtm.23504.8 + 8.0.0-rtm.23504.8 + 8.0.0-rtm.23504.8 + 8.0.0-rtm.23504.8 + 8.0.0-rtm.23504.8 + 8.0.0-rtm.23504.8 5.0.0 - 8.0.0-rtm.23503.15 + 8.0.0-rtm.23504.8 5.0.0 - 8.0.0-rtm.23503.15 - 8.0.0-rtm.23503.15 - 8.0.0-rtm.23503.15 - 8.0.0-rtm.23503.15 + 8.0.0-rtm.23504.8 + 8.0.0-rtm.23504.8 + 8.0.0-rtm.23504.8 + 8.0.0-rtm.23504.8 6.0.0 5.0.0 - 8.0.0-rtm.23503.15 - 8.0.0-rtm.23503.15 - 8.0.0-rtm.23503.15 - 8.0.0-rtm.23503.15 + 8.0.0-rtm.23504.8 + 8.0.0-rtm.23504.8 + 8.0.0-rtm.23504.8 + 8.0.0-rtm.23504.8 5.0.0 - 8.0.0-rtm.23503.15 - 8.0.0-rtm.23503.15 - 8.0.0-rtm.23503.15 - 8.0.0-rtm.23503.15 - 8.0.0-rtm.23503.15 - 8.0.0-rtm.23503.15 + 8.0.0-rtm.23504.8 + 8.0.0-rtm.23504.8 + 8.0.0-rtm.23504.8 + 8.0.0-rtm.23504.8 + 8.0.0-rtm.23504.8 + 8.0.0-rtm.23504.8 4.10.0 - 8.0.0-rtm.23503.13 - 8.0.0-rtm.23503.13 - 8.0.0-rtm.23503.13 + 8.0.0-rtm.23504.13 + 8.0.0-rtm.23504.13 + 8.0.0-rtm.23504.13 - 8.0.0-rtm.23504.1 - 8.0.0-rtm.23504.1 + 8.0.0-rtm.23504.3 + 8.0.0-rtm.23504.3 From 63ea9e6d9fca83209b278b5a8ecec6bbaf20fde6 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Mon, 9 Oct 2023 10:04:54 -0700 Subject: [PATCH 066/222] [release/8.0] Update dependencies from dotnet/wpf (#3879) * Update dependencies from https://github.com/dotnet/wpf build 20231006.1 Microsoft.DotNet.Wpf.GitHub , Microsoft.DotNet.Wpf.ProjectTemplates , Microsoft.NET.Sdk.WindowsDesktop From Version 8.0.0-rtm.23504.3 -> To Version 8.0.0-rtm.23506.1 Dependency coherency updates Microsoft.Private.Winforms,Microsoft.Internal.Runtime.WindowsDesktop.Transport,Microsoft.Private.Winforms,Microsoft.NETCore.App.Ref,Microsoft.Private.Winforms,VS.Redist.Common.NetCore.SharedFramework.x64.8.0,Microsoft.Private.Winforms,Microsoft.NETCore.App.Runtime.win-x64,Microsoft.Dotnet.WinForms.ProjectTemplates,Microsoft.Private.Winforms,Microsoft.Win32.Registry.AccessControl,Microsoft.Private.Winforms,Microsoft.Win32.SystemEvents,Microsoft.Private.Winforms,System.CodeDom,Microsoft.Private.Winforms,System.ComponentModel.Composition,Microsoft.Private.Winforms,System.Configuration.ConfigurationManager,Microsoft.Private.Winforms,System.Data.Odbc,Microsoft.Private.Winforms,System.Data.OleDb,Microsoft.Private.Winforms,System.Diagnostics.EventLog,Microsoft.Private.Winforms,System.Diagnostics.PerformanceCounter,Microsoft.Private.Winforms,System.DirectoryServices.AccountManagement,Microsoft.Private.Winforms,System.DirectoryServices.Protocols,Microsoft.Private.Winforms,System.DirectoryServices,Microsoft.Private.Winforms,System.IO.Packaging,Microsoft.Private.Winforms,System.IO.Ports,Microsoft.Private.Winforms,System.Management,Microsoft.Private.Winforms,System.Reflection.Context,Microsoft.Private.Winforms,System.Runtime.Caching,Microsoft.Private.Winforms,System.Security.Cryptography.Pkcs,Microsoft.Private.Winforms,System.Security.Cryptography.ProtectedData,Microsoft.Private.Winforms,System.Security.Cryptography.Xml,Microsoft.Private.Winforms,System.Security.Permissions,Microsoft.Private.Winforms,System.ServiceModel.Syndication,Microsoft.Private.Winforms,System.ServiceProcess.ServiceController,Microsoft.Private.Winforms,System.Speech,Microsoft.Private.Winforms,System.Text.Encoding.CodePages,Microsoft.Private.Winforms,System.Threading.AccessControl,Microsoft.Private.Winforms,System.ComponentModel.Composition.Registration,System.Drawing.Common From Version 8.0.0-rtm.23504.13 -> To Version 8.0.0-rtm.23506.5 (parent: Microsoft.DotNet.Wpf.GitHub * Update dependencies from https://github.com/dotnet/wpf build 20231006.3 Microsoft.DotNet.Wpf.GitHub , Microsoft.DotNet.Wpf.ProjectTemplates , Microsoft.NET.Sdk.WindowsDesktop From Version 8.0.0-rtm.23504.3 -> To Version 8.0.0-rtm.23506.3 Dependency coherency updates Microsoft.Private.Winforms,Microsoft.Internal.Runtime.WindowsDesktop.Transport,Microsoft.Private.Winforms,Microsoft.NETCore.App.Ref,Microsoft.Private.Winforms,VS.Redist.Common.NetCore.SharedFramework.x64.8.0,Microsoft.Private.Winforms,Microsoft.NETCore.App.Runtime.win-x64,Microsoft.Dotnet.WinForms.ProjectTemplates,Microsoft.Private.Winforms,Microsoft.Win32.Registry.AccessControl,Microsoft.Private.Winforms,Microsoft.Win32.SystemEvents,Microsoft.Private.Winforms,System.CodeDom,Microsoft.Private.Winforms,System.ComponentModel.Composition,Microsoft.Private.Winforms,System.Configuration.ConfigurationManager,Microsoft.Private.Winforms,System.Data.Odbc,Microsoft.Private.Winforms,System.Data.OleDb,Microsoft.Private.Winforms,System.Diagnostics.EventLog,Microsoft.Private.Winforms,System.Diagnostics.PerformanceCounter,Microsoft.Private.Winforms,System.DirectoryServices.AccountManagement,Microsoft.Private.Winforms,System.DirectoryServices.Protocols,Microsoft.Private.Winforms,System.DirectoryServices,Microsoft.Private.Winforms,System.IO.Packaging,Microsoft.Private.Winforms,System.IO.Ports,Microsoft.Private.Winforms,System.Management,Microsoft.Private.Winforms,System.Reflection.Context,Microsoft.Private.Winforms,System.Runtime.Caching,Microsoft.Private.Winforms,System.Security.Cryptography.Pkcs,Microsoft.Private.Winforms,System.Security.Cryptography.ProtectedData,Microsoft.Private.Winforms,System.Security.Cryptography.Xml,Microsoft.Private.Winforms,System.Security.Permissions,Microsoft.Private.Winforms,System.ServiceModel.Syndication,Microsoft.Private.Winforms,System.ServiceProcess.ServiceController,Microsoft.Private.Winforms,System.Speech,Microsoft.Private.Winforms,System.Text.Encoding.CodePages,Microsoft.Private.Winforms,System.Threading.AccessControl,Microsoft.Private.Winforms,System.ComponentModel.Composition.Registration,System.Drawing.Common From Version 8.0.0-rtm.23504.13 -> To Version 8.0.0-rtm.23506.7 (parent: Microsoft.DotNet.Wpf.GitHub --------- Co-authored-by: dotnet-maestro[bot] --- eng/Version.Details.xml | 148 ++++++++++++++++++++-------------------- eng/Versions.props | 72 +++++++++---------- 2 files changed, 110 insertions(+), 110 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index e46ced3af..111a292c3 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,153 +1,153 @@ - + https://github.com/dotnet/runtime - 22b8a5665f5725a2c7bb09cfbe88f2cdc9847c1a + b17a34c818bd5e01fdb9827fea64727a5fc51025 - + https://github.com/dotnet/winforms - 8226c3cbaf595ae2c6fb8ed7ccd69ae77d647bd4 + bd005f683aec43f415bbd192c3ac9df4516e2d24 - + https://github.com/dotnet/wpf - b892ae845b9832e0873ef2f7c958c46dc6b3d637 + 1ccf500b5b5f412b4158c243c08813691699623e - + https://github.com/dotnet/wpf - b892ae845b9832e0873ef2f7c958c46dc6b3d637 + 1ccf500b5b5f412b4158c243c08813691699623e - + https://github.com/dotnet/runtime - 22b8a5665f5725a2c7bb09cfbe88f2cdc9847c1a + b17a34c818bd5e01fdb9827fea64727a5fc51025 - + https://github.com/dotnet/runtime - 22b8a5665f5725a2c7bb09cfbe88f2cdc9847c1a + b17a34c818bd5e01fdb9827fea64727a5fc51025 - + https://github.com/dotnet/runtime - 22b8a5665f5725a2c7bb09cfbe88f2cdc9847c1a + b17a34c818bd5e01fdb9827fea64727a5fc51025 - + https://github.com/dotnet/winforms - 8226c3cbaf595ae2c6fb8ed7ccd69ae77d647bd4 + bd005f683aec43f415bbd192c3ac9df4516e2d24 - + https://github.com/dotnet/wpf - b892ae845b9832e0873ef2f7c958c46dc6b3d637 + 1ccf500b5b5f412b4158c243c08813691699623e - + https://github.com/dotnet/runtime - 22b8a5665f5725a2c7bb09cfbe88f2cdc9847c1a + b17a34c818bd5e01fdb9827fea64727a5fc51025 - + https://github.com/dotnet/runtime - 22b8a5665f5725a2c7bb09cfbe88f2cdc9847c1a + b17a34c818bd5e01fdb9827fea64727a5fc51025 - + https://github.com/dotnet/runtime - 22b8a5665f5725a2c7bb09cfbe88f2cdc9847c1a + b17a34c818bd5e01fdb9827fea64727a5fc51025 - + https://github.com/dotnet/runtime - 22b8a5665f5725a2c7bb09cfbe88f2cdc9847c1a + b17a34c818bd5e01fdb9827fea64727a5fc51025 - + https://github.com/dotnet/runtime - 22b8a5665f5725a2c7bb09cfbe88f2cdc9847c1a + b17a34c818bd5e01fdb9827fea64727a5fc51025 - + https://github.com/dotnet/runtime - 22b8a5665f5725a2c7bb09cfbe88f2cdc9847c1a + b17a34c818bd5e01fdb9827fea64727a5fc51025 - + https://github.com/dotnet/runtime - 22b8a5665f5725a2c7bb09cfbe88f2cdc9847c1a + b17a34c818bd5e01fdb9827fea64727a5fc51025 - + https://github.com/dotnet/runtime - 22b8a5665f5725a2c7bb09cfbe88f2cdc9847c1a + b17a34c818bd5e01fdb9827fea64727a5fc51025 - + https://github.com/dotnet/runtime - 22b8a5665f5725a2c7bb09cfbe88f2cdc9847c1a + b17a34c818bd5e01fdb9827fea64727a5fc51025 - + https://github.com/dotnet/runtime - 22b8a5665f5725a2c7bb09cfbe88f2cdc9847c1a + b17a34c818bd5e01fdb9827fea64727a5fc51025 - + https://github.com/dotnet/runtime - 22b8a5665f5725a2c7bb09cfbe88f2cdc9847c1a + b17a34c818bd5e01fdb9827fea64727a5fc51025 - + https://github.com/dotnet/runtime - 22b8a5665f5725a2c7bb09cfbe88f2cdc9847c1a + b17a34c818bd5e01fdb9827fea64727a5fc51025 - + https://github.com/dotnet/runtime - 22b8a5665f5725a2c7bb09cfbe88f2cdc9847c1a + b17a34c818bd5e01fdb9827fea64727a5fc51025 - + https://github.com/dotnet/runtime - 22b8a5665f5725a2c7bb09cfbe88f2cdc9847c1a + b17a34c818bd5e01fdb9827fea64727a5fc51025 - + https://github.com/dotnet/runtime - 22b8a5665f5725a2c7bb09cfbe88f2cdc9847c1a + b17a34c818bd5e01fdb9827fea64727a5fc51025 - + https://github.com/dotnet/runtime - 22b8a5665f5725a2c7bb09cfbe88f2cdc9847c1a + b17a34c818bd5e01fdb9827fea64727a5fc51025 - + https://github.com/dotnet/runtime - 22b8a5665f5725a2c7bb09cfbe88f2cdc9847c1a + b17a34c818bd5e01fdb9827fea64727a5fc51025 - + https://github.com/dotnet/runtime - 22b8a5665f5725a2c7bb09cfbe88f2cdc9847c1a + b17a34c818bd5e01fdb9827fea64727a5fc51025 - + https://github.com/dotnet/runtime - 22b8a5665f5725a2c7bb09cfbe88f2cdc9847c1a + b17a34c818bd5e01fdb9827fea64727a5fc51025 - + https://github.com/dotnet/runtime - 22b8a5665f5725a2c7bb09cfbe88f2cdc9847c1a + b17a34c818bd5e01fdb9827fea64727a5fc51025 - + https://github.com/dotnet/runtime - 22b8a5665f5725a2c7bb09cfbe88f2cdc9847c1a + b17a34c818bd5e01fdb9827fea64727a5fc51025 - + https://github.com/dotnet/runtime - 22b8a5665f5725a2c7bb09cfbe88f2cdc9847c1a + b17a34c818bd5e01fdb9827fea64727a5fc51025 - + https://github.com/dotnet/runtime - 22b8a5665f5725a2c7bb09cfbe88f2cdc9847c1a + b17a34c818bd5e01fdb9827fea64727a5fc51025 - + https://github.com/dotnet/runtime - 22b8a5665f5725a2c7bb09cfbe88f2cdc9847c1a + b17a34c818bd5e01fdb9827fea64727a5fc51025 - + https://github.com/dotnet/runtime - 22b8a5665f5725a2c7bb09cfbe88f2cdc9847c1a + b17a34c818bd5e01fdb9827fea64727a5fc51025 - + https://github.com/dotnet/runtime - 22b8a5665f5725a2c7bb09cfbe88f2cdc9847c1a + b17a34c818bd5e01fdb9827fea64727a5fc51025 - + https://github.com/dotnet/runtime - 22b8a5665f5725a2c7bb09cfbe88f2cdc9847c1a + b17a34c818bd5e01fdb9827fea64727a5fc51025 - + https://github.com/dotnet/winforms - 8226c3cbaf595ae2c6fb8ed7ccd69ae77d647bd4 + bd005f683aec43f415bbd192c3ac9df4516e2d24 diff --git a/eng/Versions.props b/eng/Versions.props index 5268b1e22..0b7346caf 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -25,51 +25,51 @@ 6.2.4 - 8.0.0-rtm.23504.8 - 8.0.0-rtm.23504.8 - 8.0.0-rtm.23504.8 - 8.0.0-rtm.23504.8 + 8.0.0-rtm.23506.12 + 8.0.0-rtm.23506.12 + 8.0.0-rtm.23506.12 + 8.0.0-rtm.23506.12 5.0.0 - 8.0.0-rtm.23504.8 - 8.0.0-rtm.23504.8 - 8.0.0-rtm.23504.8 - 8.0.0-rtm.23504.8 - 8.0.0-rtm.23504.8 - 8.0.0-rtm.23504.8 - 8.0.0-rtm.23504.8 - 8.0.0-rtm.23504.8 - 8.0.0-rtm.23504.8 - 8.0.0-rtm.23504.8 - 8.0.0-rtm.23504.8 - 8.0.0-rtm.23504.8 + 8.0.0-rtm.23506.12 + 8.0.0-rtm.23506.12 + 8.0.0-rtm.23506.12 + 8.0.0-rtm.23506.12 + 8.0.0-rtm.23506.12 + 8.0.0-rtm.23506.12 + 8.0.0-rtm.23506.12 + 8.0.0-rtm.23506.12 + 8.0.0-rtm.23506.12 + 8.0.0-rtm.23506.12 + 8.0.0-rtm.23506.12 + 8.0.0-rtm.23506.12 5.0.0 - 8.0.0-rtm.23504.8 + 8.0.0-rtm.23506.12 5.0.0 - 8.0.0-rtm.23504.8 - 8.0.0-rtm.23504.8 - 8.0.0-rtm.23504.8 - 8.0.0-rtm.23504.8 + 8.0.0-rtm.23506.12 + 8.0.0-rtm.23506.12 + 8.0.0-rtm.23506.12 + 8.0.0-rtm.23506.12 6.0.0 5.0.0 - 8.0.0-rtm.23504.8 - 8.0.0-rtm.23504.8 - 8.0.0-rtm.23504.8 - 8.0.0-rtm.23504.8 + 8.0.0-rtm.23506.12 + 8.0.0-rtm.23506.12 + 8.0.0-rtm.23506.12 + 8.0.0-rtm.23506.12 5.0.0 - 8.0.0-rtm.23504.8 - 8.0.0-rtm.23504.8 - 8.0.0-rtm.23504.8 - 8.0.0-rtm.23504.8 - 8.0.0-rtm.23504.8 - 8.0.0-rtm.23504.8 + 8.0.0-rtm.23506.12 + 8.0.0-rtm.23506.12 + 8.0.0-rtm.23506.12 + 8.0.0-rtm.23506.12 + 8.0.0-rtm.23506.12 + 8.0.0-rtm.23506.12 4.10.0 - 8.0.0-rtm.23504.13 - 8.0.0-rtm.23504.13 - 8.0.0-rtm.23504.13 + 8.0.0-rtm.23506.7 + 8.0.0-rtm.23506.7 + 8.0.0-rtm.23506.7 - 8.0.0-rtm.23504.3 - 8.0.0-rtm.23504.3 + 8.0.0-rtm.23506.3 + 8.0.0-rtm.23506.3 From 28cb6ed29636b7db978e83ba1a8a2369584e71f4 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Tue, 10 Oct 2023 00:20:10 +0000 Subject: [PATCH 067/222] [release/8.0] Update dependencies from dotnet/wpf (#3880) [release/8.0] Update dependencies from dotnet/wpf - Coherency Updates: - Microsoft.Private.Winforms: from 8.0.0-rtm.23506.7 to 8.0.0-rtm.23509.3 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Internal.Runtime.WindowsDesktop.Transport: from 8.0.0-rtm.23506.12 to 8.0.0-rtm.23509.5 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23506.7 to 8.0.0-rtm.23509.3 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.NETCore.App.Ref: from 8.0.0-rtm.23506.12 to 8.0.0-rtm.23509.5 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23506.7 to 8.0.0-rtm.23509.3 (parent: Microsoft.DotNet.Wpf.GitHub) - VS.Redist.Common.NetCore.SharedFramework.x64.8.0: from 8.0.0-rtm.23506.12 to 8.0.0-rtm.23509.5 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23506.7 to 8.0.0-rtm.23509.3 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.NETCore.App.Runtime.win-x64: from 8.0.0-rtm.23506.12 to 8.0.0-rtm.23509.5 (parent: Microsoft.Private.Winforms) - Microsoft.Dotnet.WinForms.ProjectTemplates: from 8.0.0-rtm.23506.7 to 8.0.0-rtm.23509.3 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rtm.23506.7 to 8.0.0-rtm.23509.3 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Win32.Registry.AccessControl: from 8.0.0-rtm.23506.12 to 8.0.0-rtm.23509.5 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23506.7 to 8.0.0-rtm.23509.3 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Win32.SystemEvents: from 8.0.0-rtm.23506.12 to 8.0.0-rtm.23509.5 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23506.7 to 8.0.0-rtm.23509.3 (parent: Microsoft.DotNet.Wpf.GitHub) - System.CodeDom: from 8.0.0-rtm.23506.12 to 8.0.0-rtm.23509.5 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23506.7 to 8.0.0-rtm.23509.3 (parent: Microsoft.DotNet.Wpf.GitHub) - System.ComponentModel.Composition: from 8.0.0-rtm.23506.12 to 8.0.0-rtm.23509.5 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23506.7 to 8.0.0-rtm.23509.3 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Configuration.ConfigurationManager: from 8.0.0-rtm.23506.12 to 8.0.0-rtm.23509.5 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23506.7 to 8.0.0-rtm.23509.3 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Data.Odbc: from 8.0.0-rtm.23506.12 to 8.0.0-rtm.23509.5 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23506.7 to 8.0.0-rtm.23509.3 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Data.OleDb: from 8.0.0-rtm.23506.12 to 8.0.0-rtm.23509.5 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23506.7 to 8.0.0-rtm.23509.3 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Diagnostics.EventLog: from 8.0.0-rtm.23506.12 to 8.0.0-rtm.23509.5 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23506.7 to 8.0.0-rtm.23509.3 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Diagnostics.PerformanceCounter: from 8.0.0-rtm.23506.12 to 8.0.0-rtm.23509.5 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23506.7 to 8.0.0-rtm.23509.3 (parent: Microsoft.DotNet.Wpf.GitHub) - System.DirectoryServices.AccountManagement: from 8.0.0-rtm.23506.12 to 8.0.0-rtm.23509.5 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23506.7 to 8.0.0-rtm.23509.3 (parent: Microsoft.DotNet.Wpf.GitHub) - System.DirectoryServices.Protocols: from 8.0.0-rtm.23506.12 to 8.0.0-rtm.23509.5 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23506.7 to 8.0.0-rtm.23509.3 (parent: Microsoft.DotNet.Wpf.GitHub) - System.DirectoryServices: from 8.0.0-rtm.23506.12 to 8.0.0-rtm.23509.5 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23506.7 to 8.0.0-rtm.23509.3 (parent: Microsoft.DotNet.Wpf.GitHub) - System.IO.Packaging: from 8.0.0-rtm.23506.12 to 8.0.0-rtm.23509.5 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23506.7 to 8.0.0-rtm.23509.3 (parent: Microsoft.DotNet.Wpf.GitHub) - System.IO.Ports: from 8.0.0-rtm.23506.12 to 8.0.0-rtm.23509.5 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23506.7 to 8.0.0-rtm.23509.3 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Management: from 8.0.0-rtm.23506.12 to 8.0.0-rtm.23509.5 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23506.7 to 8.0.0-rtm.23509.3 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Reflection.Context: from 8.0.0-rtm.23506.12 to 8.0.0-rtm.23509.5 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23506.7 to 8.0.0-rtm.23509.3 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Runtime.Caching: from 8.0.0-rtm.23506.12 to 8.0.0-rtm.23509.5 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23506.7 to 8.0.0-rtm.23509.3 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Security.Cryptography.Pkcs: from 8.0.0-rtm.23506.12 to 8.0.0-rtm.23509.5 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23506.7 to 8.0.0-rtm.23509.3 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Security.Cryptography.ProtectedData: from 8.0.0-rtm.23506.12 to 8.0.0-rtm.23509.5 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23506.7 to 8.0.0-rtm.23509.3 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Security.Cryptography.Xml: from 8.0.0-rtm.23506.12 to 8.0.0-rtm.23509.5 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23506.7 to 8.0.0-rtm.23509.3 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Security.Permissions: from 8.0.0-rtm.23506.12 to 8.0.0-rtm.23509.5 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23506.7 to 8.0.0-rtm.23509.3 (parent: Microsoft.DotNet.Wpf.GitHub) - System.ServiceModel.Syndication: from 8.0.0-rtm.23506.12 to 8.0.0-rtm.23509.5 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23506.7 to 8.0.0-rtm.23509.3 (parent: Microsoft.DotNet.Wpf.GitHub) - System.ServiceProcess.ServiceController: from 8.0.0-rtm.23506.12 to 8.0.0-rtm.23509.5 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23506.7 to 8.0.0-rtm.23509.3 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Speech: from 8.0.0-rtm.23506.12 to 8.0.0-rtm.23509.5 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23506.7 to 8.0.0-rtm.23509.3 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Text.Encoding.CodePages: from 8.0.0-rtm.23506.12 to 8.0.0-rtm.23509.5 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23506.7 to 8.0.0-rtm.23509.3 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Threading.AccessControl: from 8.0.0-rtm.23506.12 to 8.0.0-rtm.23509.5 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23506.7 to 8.0.0-rtm.23509.3 (parent: Microsoft.DotNet.Wpf.GitHub) - System.ComponentModel.Composition.Registration: from 8.0.0-rtm.23506.12 to 8.0.0-rtm.23509.5 (parent: Microsoft.Private.Winforms) - System.Drawing.Common: from 8.0.0-rtm.23506.7 to 8.0.0-rtm.23509.3 (parent: Microsoft.DotNet.Wpf.GitHub) --- eng/Version.Details.xml | 148 ++++++++++++++++++++-------------------- eng/Versions.props | 72 +++++++++---------- 2 files changed, 110 insertions(+), 110 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 111a292c3..0f2c216b5 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,153 +1,153 @@ - + https://github.com/dotnet/runtime - b17a34c818bd5e01fdb9827fea64727a5fc51025 + a9cc3c80fe43d19a38cacda4c1aecc51fb6eabb1 - + https://github.com/dotnet/winforms - bd005f683aec43f415bbd192c3ac9df4516e2d24 + 34ebe80d29001d352096758b59ac7696317cc0cc - + https://github.com/dotnet/wpf - 1ccf500b5b5f412b4158c243c08813691699623e + 50d7731991f3d1c4f1efb94821ecc8c2cb7a1c35 - + https://github.com/dotnet/wpf - 1ccf500b5b5f412b4158c243c08813691699623e + 50d7731991f3d1c4f1efb94821ecc8c2cb7a1c35 - + https://github.com/dotnet/runtime - b17a34c818bd5e01fdb9827fea64727a5fc51025 + a9cc3c80fe43d19a38cacda4c1aecc51fb6eabb1 - + https://github.com/dotnet/runtime - b17a34c818bd5e01fdb9827fea64727a5fc51025 + a9cc3c80fe43d19a38cacda4c1aecc51fb6eabb1 - + https://github.com/dotnet/runtime - b17a34c818bd5e01fdb9827fea64727a5fc51025 + a9cc3c80fe43d19a38cacda4c1aecc51fb6eabb1 - + https://github.com/dotnet/winforms - bd005f683aec43f415bbd192c3ac9df4516e2d24 + 34ebe80d29001d352096758b59ac7696317cc0cc - + https://github.com/dotnet/wpf - 1ccf500b5b5f412b4158c243c08813691699623e + 50d7731991f3d1c4f1efb94821ecc8c2cb7a1c35 - + https://github.com/dotnet/runtime - b17a34c818bd5e01fdb9827fea64727a5fc51025 + a9cc3c80fe43d19a38cacda4c1aecc51fb6eabb1 - + https://github.com/dotnet/runtime - b17a34c818bd5e01fdb9827fea64727a5fc51025 + a9cc3c80fe43d19a38cacda4c1aecc51fb6eabb1 - + https://github.com/dotnet/runtime - b17a34c818bd5e01fdb9827fea64727a5fc51025 + a9cc3c80fe43d19a38cacda4c1aecc51fb6eabb1 - + https://github.com/dotnet/runtime - b17a34c818bd5e01fdb9827fea64727a5fc51025 + a9cc3c80fe43d19a38cacda4c1aecc51fb6eabb1 - + https://github.com/dotnet/runtime - b17a34c818bd5e01fdb9827fea64727a5fc51025 + a9cc3c80fe43d19a38cacda4c1aecc51fb6eabb1 - + https://github.com/dotnet/runtime - b17a34c818bd5e01fdb9827fea64727a5fc51025 + a9cc3c80fe43d19a38cacda4c1aecc51fb6eabb1 - + https://github.com/dotnet/runtime - b17a34c818bd5e01fdb9827fea64727a5fc51025 + a9cc3c80fe43d19a38cacda4c1aecc51fb6eabb1 - + https://github.com/dotnet/runtime - b17a34c818bd5e01fdb9827fea64727a5fc51025 + a9cc3c80fe43d19a38cacda4c1aecc51fb6eabb1 - + https://github.com/dotnet/runtime - b17a34c818bd5e01fdb9827fea64727a5fc51025 + a9cc3c80fe43d19a38cacda4c1aecc51fb6eabb1 - + https://github.com/dotnet/runtime - b17a34c818bd5e01fdb9827fea64727a5fc51025 + a9cc3c80fe43d19a38cacda4c1aecc51fb6eabb1 - + https://github.com/dotnet/runtime - b17a34c818bd5e01fdb9827fea64727a5fc51025 + a9cc3c80fe43d19a38cacda4c1aecc51fb6eabb1 - + https://github.com/dotnet/runtime - b17a34c818bd5e01fdb9827fea64727a5fc51025 + a9cc3c80fe43d19a38cacda4c1aecc51fb6eabb1 - + https://github.com/dotnet/runtime - b17a34c818bd5e01fdb9827fea64727a5fc51025 + a9cc3c80fe43d19a38cacda4c1aecc51fb6eabb1 - + https://github.com/dotnet/runtime - b17a34c818bd5e01fdb9827fea64727a5fc51025 + a9cc3c80fe43d19a38cacda4c1aecc51fb6eabb1 - + https://github.com/dotnet/runtime - b17a34c818bd5e01fdb9827fea64727a5fc51025 + a9cc3c80fe43d19a38cacda4c1aecc51fb6eabb1 - + https://github.com/dotnet/runtime - b17a34c818bd5e01fdb9827fea64727a5fc51025 + a9cc3c80fe43d19a38cacda4c1aecc51fb6eabb1 - + https://github.com/dotnet/runtime - b17a34c818bd5e01fdb9827fea64727a5fc51025 + a9cc3c80fe43d19a38cacda4c1aecc51fb6eabb1 - + https://github.com/dotnet/runtime - b17a34c818bd5e01fdb9827fea64727a5fc51025 + a9cc3c80fe43d19a38cacda4c1aecc51fb6eabb1 - + https://github.com/dotnet/runtime - b17a34c818bd5e01fdb9827fea64727a5fc51025 + a9cc3c80fe43d19a38cacda4c1aecc51fb6eabb1 - + https://github.com/dotnet/runtime - b17a34c818bd5e01fdb9827fea64727a5fc51025 + a9cc3c80fe43d19a38cacda4c1aecc51fb6eabb1 - + https://github.com/dotnet/runtime - b17a34c818bd5e01fdb9827fea64727a5fc51025 + a9cc3c80fe43d19a38cacda4c1aecc51fb6eabb1 - + https://github.com/dotnet/runtime - b17a34c818bd5e01fdb9827fea64727a5fc51025 + a9cc3c80fe43d19a38cacda4c1aecc51fb6eabb1 - + https://github.com/dotnet/runtime - b17a34c818bd5e01fdb9827fea64727a5fc51025 + a9cc3c80fe43d19a38cacda4c1aecc51fb6eabb1 - + https://github.com/dotnet/runtime - b17a34c818bd5e01fdb9827fea64727a5fc51025 + a9cc3c80fe43d19a38cacda4c1aecc51fb6eabb1 - + https://github.com/dotnet/runtime - b17a34c818bd5e01fdb9827fea64727a5fc51025 + a9cc3c80fe43d19a38cacda4c1aecc51fb6eabb1 - + https://github.com/dotnet/runtime - b17a34c818bd5e01fdb9827fea64727a5fc51025 + a9cc3c80fe43d19a38cacda4c1aecc51fb6eabb1 - + https://github.com/dotnet/runtime - b17a34c818bd5e01fdb9827fea64727a5fc51025 + a9cc3c80fe43d19a38cacda4c1aecc51fb6eabb1 - + https://github.com/dotnet/winforms - bd005f683aec43f415bbd192c3ac9df4516e2d24 + 34ebe80d29001d352096758b59ac7696317cc0cc diff --git a/eng/Versions.props b/eng/Versions.props index 0b7346caf..4a38325c0 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -25,51 +25,51 @@ 6.2.4 - 8.0.0-rtm.23506.12 - 8.0.0-rtm.23506.12 - 8.0.0-rtm.23506.12 - 8.0.0-rtm.23506.12 + 8.0.0-rtm.23509.5 + 8.0.0-rtm.23509.5 + 8.0.0-rtm.23509.5 + 8.0.0-rtm.23509.5 5.0.0 - 8.0.0-rtm.23506.12 - 8.0.0-rtm.23506.12 - 8.0.0-rtm.23506.12 - 8.0.0-rtm.23506.12 - 8.0.0-rtm.23506.12 - 8.0.0-rtm.23506.12 - 8.0.0-rtm.23506.12 - 8.0.0-rtm.23506.12 - 8.0.0-rtm.23506.12 - 8.0.0-rtm.23506.12 - 8.0.0-rtm.23506.12 - 8.0.0-rtm.23506.12 + 8.0.0-rtm.23509.5 + 8.0.0-rtm.23509.5 + 8.0.0-rtm.23509.5 + 8.0.0-rtm.23509.5 + 8.0.0-rtm.23509.5 + 8.0.0-rtm.23509.5 + 8.0.0-rtm.23509.5 + 8.0.0-rtm.23509.5 + 8.0.0-rtm.23509.5 + 8.0.0-rtm.23509.5 + 8.0.0-rtm.23509.5 + 8.0.0-rtm.23509.5 5.0.0 - 8.0.0-rtm.23506.12 + 8.0.0-rtm.23509.5 5.0.0 - 8.0.0-rtm.23506.12 - 8.0.0-rtm.23506.12 - 8.0.0-rtm.23506.12 - 8.0.0-rtm.23506.12 + 8.0.0-rtm.23509.5 + 8.0.0-rtm.23509.5 + 8.0.0-rtm.23509.5 + 8.0.0-rtm.23509.5 6.0.0 5.0.0 - 8.0.0-rtm.23506.12 - 8.0.0-rtm.23506.12 - 8.0.0-rtm.23506.12 - 8.0.0-rtm.23506.12 + 8.0.0-rtm.23509.5 + 8.0.0-rtm.23509.5 + 8.0.0-rtm.23509.5 + 8.0.0-rtm.23509.5 5.0.0 - 8.0.0-rtm.23506.12 - 8.0.0-rtm.23506.12 - 8.0.0-rtm.23506.12 - 8.0.0-rtm.23506.12 - 8.0.0-rtm.23506.12 - 8.0.0-rtm.23506.12 + 8.0.0-rtm.23509.5 + 8.0.0-rtm.23509.5 + 8.0.0-rtm.23509.5 + 8.0.0-rtm.23509.5 + 8.0.0-rtm.23509.5 + 8.0.0-rtm.23509.5 4.10.0 - 8.0.0-rtm.23506.7 - 8.0.0-rtm.23506.7 - 8.0.0-rtm.23506.7 + 8.0.0-rtm.23509.3 + 8.0.0-rtm.23509.3 + 8.0.0-rtm.23509.3 - 8.0.0-rtm.23506.3 - 8.0.0-rtm.23506.3 + 8.0.0-rtm.23509.3 + 8.0.0-rtm.23509.3 From 5229dd0e814a0f553f6ef15b808114bd27570071 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Thu, 12 Oct 2023 13:07:10 +0000 Subject: [PATCH 068/222] [release/8.0] Update dependencies from dotnet/arcade (#3883) [release/8.0] Update dependencies from dotnet/arcade --- eng/Version.Details.xml | 24 ++++++++++++------------ eng/Versions.props | 8 ++++---- eng/common/sdk-task.ps1 | 2 +- eng/common/sdl/trim-assets-version.ps1 | 2 +- eng/common/tools.ps1 | 6 +++--- global.json | 6 +++--- 6 files changed, 24 insertions(+), 24 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 0f2c216b5..e93e5ade1 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -151,29 +151,29 @@ - + https://github.com/dotnet/arcade - 1d451c32dda2314c721adbf8829e1c0cd4e681ff + e6be64c3e27aeb29f93f6aa751fad972e4ef2d52 - + https://github.com/dotnet/arcade - 1d451c32dda2314c721adbf8829e1c0cd4e681ff + e6be64c3e27aeb29f93f6aa751fad972e4ef2d52 - + https://github.com/dotnet/arcade - 1d451c32dda2314c721adbf8829e1c0cd4e681ff + e6be64c3e27aeb29f93f6aa751fad972e4ef2d52 - + https://github.com/dotnet/arcade - 1d451c32dda2314c721adbf8829e1c0cd4e681ff + e6be64c3e27aeb29f93f6aa751fad972e4ef2d52 - + https://github.com/dotnet/arcade - 1d451c32dda2314c721adbf8829e1c0cd4e681ff + e6be64c3e27aeb29f93f6aa751fad972e4ef2d52 - + https://github.com/dotnet/arcade - 1d451c32dda2314c721adbf8829e1c0cd4e681ff + e6be64c3e27aeb29f93f6aa751fad972e4ef2d52 diff --git a/eng/Versions.props b/eng/Versions.props index 4a38325c0..6419e9fd2 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -12,10 +12,10 @@ - 8.0.0-beta.23463.1 - 8.0.0-beta.23463.1 - 8.0.0-beta.23463.1 - 8.0.0-beta.23463.1 + 8.0.0-beta.23505.1 + 8.0.0-beta.23505.1 + 8.0.0-beta.23505.1 + 8.0.0-beta.23505.1 4.5.0 4.8.5 diff --git a/eng/common/sdk-task.ps1 b/eng/common/sdk-task.ps1 index 6c4ac6fec..91f8196cc 100644 --- a/eng/common/sdk-task.ps1 +++ b/eng/common/sdk-task.ps1 @@ -64,7 +64,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.6.0-2" -MemberType NoteProperty + $GlobalJson.tools | Add-Member -Name "xcopy-msbuild" -Value "17.7.2-1" -MemberType NoteProperty } if ($GlobalJson.tools."xcopy-msbuild".Trim() -ine "none") { $xcopyMSBuildToolsFolder = InitializeXCopyMSBuild $GlobalJson.tools."xcopy-msbuild" -install $true diff --git a/eng/common/sdl/trim-assets-version.ps1 b/eng/common/sdl/trim-assets-version.ps1 index 0daa2a9e9..a2e004877 100644 --- a/eng/common/sdl/trim-assets-version.ps1 +++ b/eng/common/sdl/trim-assets-version.ps1 @@ -72,4 +72,4 @@ catch { Write-Host $_ Write-PipelineTelemetryError -Force -Category 'Sdl' -Message $_ ExitWithExitCode 1 -} +} \ No newline at end of file diff --git a/eng/common/tools.ps1 b/eng/common/tools.ps1 index aa74ab4a8..84cfe7cd9 100644 --- a/eng/common/tools.ps1 +++ b/eng/common/tools.ps1 @@ -379,13 +379,13 @@ function InitializeVisualStudioMSBuild([bool]$install, [object]$vsRequirements = } # Minimum VS version to require. - $vsMinVersionReqdStr = '17.6' + $vsMinVersionReqdStr = '17.7' $vsMinVersionReqd = [Version]::new($vsMinVersionReqdStr) # 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/RoslynTools.MSBuild/versions/17.6.0-2 - $defaultXCopyMSBuildVersion = '17.6.0-2' + # https://dev.azure.com/dnceng/public/_artifacts/feed/dotnet-eng/NuGet/RoslynTools.MSBuild/versions/17.7.2-1 + $defaultXCopyMSBuildVersion = '17.7.2-1' if (!$vsRequirements) { if (Get-Member -InputObject $GlobalJson.tools -Name 'vs') { diff --git a/global.json b/global.json index d46a8e498..0ddb8a2eb 100644 --- a/global.json +++ b/global.json @@ -1,10 +1,10 @@ { "tools": { - "dotnet": "8.0.100-preview.7.23376.3" + "dotnet": "8.0.100-rc.1.23455.8" }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "8.0.0-beta.23463.1", - "Microsoft.DotNet.SharedFramework.Sdk": "8.0.0-beta.23463.1", + "Microsoft.DotNet.Arcade.Sdk": "8.0.0-beta.23505.1", + "Microsoft.DotNet.SharedFramework.Sdk": "8.0.0-beta.23505.1", "Microsoft.Build.NoTargets": "3.7.0", "Microsoft.Build.Traversal": "3.4.0" } From 8844f4e280a7858ab6ef3e227ef090589199956a Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Thu, 12 Oct 2023 14:22:37 +0000 Subject: [PATCH 069/222] [release/8.0] Update dependencies from dotnet/wpf (#3884) [release/8.0] Update dependencies from dotnet/wpf --- eng/Version.Details.xml | 12 ++++++------ eng/Versions.props | 4 ++-- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index e93e5ade1..2249dcfe7 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -9,13 +9,13 @@ https://github.com/dotnet/winforms 34ebe80d29001d352096758b59ac7696317cc0cc - + https://github.com/dotnet/wpf - 50d7731991f3d1c4f1efb94821ecc8c2cb7a1c35 + c36f19f3fe41be15f7ca373c5154ea07a6cf40f5 - + https://github.com/dotnet/wpf - 50d7731991f3d1c4f1efb94821ecc8c2cb7a1c35 + c36f19f3fe41be15f7ca373c5154ea07a6cf40f5 https://github.com/dotnet/runtime @@ -33,9 +33,9 @@ https://github.com/dotnet/winforms 34ebe80d29001d352096758b59ac7696317cc0cc - + https://github.com/dotnet/wpf - 50d7731991f3d1c4f1efb94821ecc8c2cb7a1c35 + c36f19f3fe41be15f7ca373c5154ea07a6cf40f5 https://github.com/dotnet/runtime diff --git a/eng/Versions.props b/eng/Versions.props index 6419e9fd2..1fd1f2849 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -69,7 +69,7 @@ 8.0.0-rtm.23509.3 8.0.0-rtm.23509.3 - 8.0.0-rtm.23509.3 - 8.0.0-rtm.23509.3 + 8.0.0-rtm.23512.2 + 8.0.0-rtm.23512.2 From 24c4f411ba81ac0f561214df337eb7bacba70ac2 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Sat, 14 Oct 2023 00:27:30 +0000 Subject: [PATCH 070/222] [release/8.0] Update dependencies from dotnet/wpf (#3888) [release/8.0] Update dependencies from dotnet/wpf - Coherency Updates: - Microsoft.Private.Winforms: from 8.0.0-rtm.23509.3 to 8.0.0-rtm.23513.6 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Internal.Runtime.WindowsDesktop.Transport: from 8.0.0-rtm.23509.5 to 8.0.0-rtm.23511.16 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23509.3 to 8.0.0-rtm.23513.6 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.NETCore.App.Ref: from 8.0.0-rtm.23509.5 to 8.0.0-rtm.23511.16 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23509.3 to 8.0.0-rtm.23513.6 (parent: Microsoft.DotNet.Wpf.GitHub) - VS.Redist.Common.NetCore.SharedFramework.x64.8.0: from 8.0.0-rtm.23509.5 to 8.0.0-rtm.23511.16 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23509.3 to 8.0.0-rtm.23513.6 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.NETCore.App.Runtime.win-x64: from 8.0.0-rtm.23509.5 to 8.0.0-rtm.23511.16 (parent: Microsoft.Private.Winforms) - Microsoft.Dotnet.WinForms.ProjectTemplates: from 8.0.0-rtm.23509.3 to 8.0.0-rtm.23513.6 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rtm.23509.3 to 8.0.0-rtm.23513.6 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Win32.Registry.AccessControl: from 8.0.0-rtm.23509.5 to 8.0.0-rtm.23511.16 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23509.3 to 8.0.0-rtm.23513.6 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Win32.SystemEvents: from 8.0.0-rtm.23509.5 to 8.0.0-rtm.23511.16 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23509.3 to 8.0.0-rtm.23513.6 (parent: Microsoft.DotNet.Wpf.GitHub) - System.CodeDom: from 8.0.0-rtm.23509.5 to 8.0.0-rtm.23511.16 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23509.3 to 8.0.0-rtm.23513.6 (parent: Microsoft.DotNet.Wpf.GitHub) - System.ComponentModel.Composition: from 8.0.0-rtm.23509.5 to 8.0.0-rtm.23511.16 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23509.3 to 8.0.0-rtm.23513.6 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Configuration.ConfigurationManager: from 8.0.0-rtm.23509.5 to 8.0.0-rtm.23511.16 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23509.3 to 8.0.0-rtm.23513.6 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Data.Odbc: from 8.0.0-rtm.23509.5 to 8.0.0-rtm.23511.16 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23509.3 to 8.0.0-rtm.23513.6 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Data.OleDb: from 8.0.0-rtm.23509.5 to 8.0.0-rtm.23511.16 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23509.3 to 8.0.0-rtm.23513.6 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Diagnostics.EventLog: from 8.0.0-rtm.23509.5 to 8.0.0-rtm.23511.16 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23509.3 to 8.0.0-rtm.23513.6 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Diagnostics.PerformanceCounter: from 8.0.0-rtm.23509.5 to 8.0.0-rtm.23511.16 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23509.3 to 8.0.0-rtm.23513.6 (parent: Microsoft.DotNet.Wpf.GitHub) - System.DirectoryServices.AccountManagement: from 8.0.0-rtm.23509.5 to 8.0.0-rtm.23511.16 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23509.3 to 8.0.0-rtm.23513.6 (parent: Microsoft.DotNet.Wpf.GitHub) - System.DirectoryServices.Protocols: from 8.0.0-rtm.23509.5 to 8.0.0-rtm.23511.16 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23509.3 to 8.0.0-rtm.23513.6 (parent: Microsoft.DotNet.Wpf.GitHub) - System.DirectoryServices: from 8.0.0-rtm.23509.5 to 8.0.0-rtm.23511.16 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23509.3 to 8.0.0-rtm.23513.6 (parent: Microsoft.DotNet.Wpf.GitHub) - System.IO.Packaging: from 8.0.0-rtm.23509.5 to 8.0.0-rtm.23511.16 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23509.3 to 8.0.0-rtm.23513.6 (parent: Microsoft.DotNet.Wpf.GitHub) - System.IO.Ports: from 8.0.0-rtm.23509.5 to 8.0.0-rtm.23511.16 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23509.3 to 8.0.0-rtm.23513.6 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Management: from 8.0.0-rtm.23509.5 to 8.0.0-rtm.23511.16 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23509.3 to 8.0.0-rtm.23513.6 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Reflection.Context: from 8.0.0-rtm.23509.5 to 8.0.0-rtm.23511.16 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23509.3 to 8.0.0-rtm.23513.6 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Runtime.Caching: from 8.0.0-rtm.23509.5 to 8.0.0-rtm.23511.16 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23509.3 to 8.0.0-rtm.23513.6 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Security.Cryptography.Pkcs: from 8.0.0-rtm.23509.5 to 8.0.0-rtm.23511.16 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23509.3 to 8.0.0-rtm.23513.6 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Security.Cryptography.ProtectedData: from 8.0.0-rtm.23509.5 to 8.0.0-rtm.23511.16 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23509.3 to 8.0.0-rtm.23513.6 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Security.Cryptography.Xml: from 8.0.0-rtm.23509.5 to 8.0.0-rtm.23511.16 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23509.3 to 8.0.0-rtm.23513.6 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Security.Permissions: from 8.0.0-rtm.23509.5 to 8.0.0-rtm.23511.16 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23509.3 to 8.0.0-rtm.23513.6 (parent: Microsoft.DotNet.Wpf.GitHub) - System.ServiceModel.Syndication: from 8.0.0-rtm.23509.5 to 8.0.0-rtm.23511.16 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23509.3 to 8.0.0-rtm.23513.6 (parent: Microsoft.DotNet.Wpf.GitHub) - System.ServiceProcess.ServiceController: from 8.0.0-rtm.23509.5 to 8.0.0-rtm.23511.16 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23509.3 to 8.0.0-rtm.23513.6 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Speech: from 8.0.0-rtm.23509.5 to 8.0.0-rtm.23511.16 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23509.3 to 8.0.0-rtm.23513.6 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Text.Encoding.CodePages: from 8.0.0-rtm.23509.5 to 8.0.0-rtm.23511.16 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23509.3 to 8.0.0-rtm.23513.6 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Threading.AccessControl: from 8.0.0-rtm.23509.5 to 8.0.0-rtm.23511.16 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23509.3 to 8.0.0-rtm.23513.6 (parent: Microsoft.DotNet.Wpf.GitHub) - System.ComponentModel.Composition.Registration: from 8.0.0-rtm.23509.5 to 8.0.0-rtm.23511.16 (parent: Microsoft.Private.Winforms) - System.Drawing.Common: from 8.0.0-rtm.23509.3 to 8.0.0-rtm.23513.6 (parent: Microsoft.DotNet.Wpf.GitHub) --- eng/Version.Details.xml | 148 ++++++++++++++++++++-------------------- eng/Versions.props | 72 +++++++++---------- 2 files changed, 110 insertions(+), 110 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 2249dcfe7..35b0973f5 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,153 +1,153 @@ - + https://github.com/dotnet/runtime - a9cc3c80fe43d19a38cacda4c1aecc51fb6eabb1 + 256bf22a3ddf920516752701da2b95e1847ff708 - + https://github.com/dotnet/winforms - 34ebe80d29001d352096758b59ac7696317cc0cc + 4b8ada673cb60b4070e3d74013a662b55d556ebb - + https://github.com/dotnet/wpf - c36f19f3fe41be15f7ca373c5154ea07a6cf40f5 + 24a3dfb76ada6153ff4ab199857ae5d11b2385e6 - + https://github.com/dotnet/wpf - c36f19f3fe41be15f7ca373c5154ea07a6cf40f5 + 24a3dfb76ada6153ff4ab199857ae5d11b2385e6 - + https://github.com/dotnet/runtime - a9cc3c80fe43d19a38cacda4c1aecc51fb6eabb1 + 256bf22a3ddf920516752701da2b95e1847ff708 - + https://github.com/dotnet/runtime - a9cc3c80fe43d19a38cacda4c1aecc51fb6eabb1 + 256bf22a3ddf920516752701da2b95e1847ff708 - + https://github.com/dotnet/runtime - a9cc3c80fe43d19a38cacda4c1aecc51fb6eabb1 + 256bf22a3ddf920516752701da2b95e1847ff708 - + https://github.com/dotnet/winforms - 34ebe80d29001d352096758b59ac7696317cc0cc + 4b8ada673cb60b4070e3d74013a662b55d556ebb - + https://github.com/dotnet/wpf - c36f19f3fe41be15f7ca373c5154ea07a6cf40f5 + 24a3dfb76ada6153ff4ab199857ae5d11b2385e6 - + https://github.com/dotnet/runtime - a9cc3c80fe43d19a38cacda4c1aecc51fb6eabb1 + 256bf22a3ddf920516752701da2b95e1847ff708 - + https://github.com/dotnet/runtime - a9cc3c80fe43d19a38cacda4c1aecc51fb6eabb1 + 256bf22a3ddf920516752701da2b95e1847ff708 - + https://github.com/dotnet/runtime - a9cc3c80fe43d19a38cacda4c1aecc51fb6eabb1 + 256bf22a3ddf920516752701da2b95e1847ff708 - + https://github.com/dotnet/runtime - a9cc3c80fe43d19a38cacda4c1aecc51fb6eabb1 + 256bf22a3ddf920516752701da2b95e1847ff708 - + https://github.com/dotnet/runtime - a9cc3c80fe43d19a38cacda4c1aecc51fb6eabb1 + 256bf22a3ddf920516752701da2b95e1847ff708 - + https://github.com/dotnet/runtime - a9cc3c80fe43d19a38cacda4c1aecc51fb6eabb1 + 256bf22a3ddf920516752701da2b95e1847ff708 - + https://github.com/dotnet/runtime - a9cc3c80fe43d19a38cacda4c1aecc51fb6eabb1 + 256bf22a3ddf920516752701da2b95e1847ff708 - + https://github.com/dotnet/runtime - a9cc3c80fe43d19a38cacda4c1aecc51fb6eabb1 + 256bf22a3ddf920516752701da2b95e1847ff708 - + https://github.com/dotnet/runtime - a9cc3c80fe43d19a38cacda4c1aecc51fb6eabb1 + 256bf22a3ddf920516752701da2b95e1847ff708 - + https://github.com/dotnet/runtime - a9cc3c80fe43d19a38cacda4c1aecc51fb6eabb1 + 256bf22a3ddf920516752701da2b95e1847ff708 - + https://github.com/dotnet/runtime - a9cc3c80fe43d19a38cacda4c1aecc51fb6eabb1 + 256bf22a3ddf920516752701da2b95e1847ff708 - + https://github.com/dotnet/runtime - a9cc3c80fe43d19a38cacda4c1aecc51fb6eabb1 + 256bf22a3ddf920516752701da2b95e1847ff708 - + https://github.com/dotnet/runtime - a9cc3c80fe43d19a38cacda4c1aecc51fb6eabb1 + 256bf22a3ddf920516752701da2b95e1847ff708 - + https://github.com/dotnet/runtime - a9cc3c80fe43d19a38cacda4c1aecc51fb6eabb1 + 256bf22a3ddf920516752701da2b95e1847ff708 - + https://github.com/dotnet/runtime - a9cc3c80fe43d19a38cacda4c1aecc51fb6eabb1 + 256bf22a3ddf920516752701da2b95e1847ff708 - + https://github.com/dotnet/runtime - a9cc3c80fe43d19a38cacda4c1aecc51fb6eabb1 + 256bf22a3ddf920516752701da2b95e1847ff708 - + https://github.com/dotnet/runtime - a9cc3c80fe43d19a38cacda4c1aecc51fb6eabb1 + 256bf22a3ddf920516752701da2b95e1847ff708 - + https://github.com/dotnet/runtime - a9cc3c80fe43d19a38cacda4c1aecc51fb6eabb1 + 256bf22a3ddf920516752701da2b95e1847ff708 - + https://github.com/dotnet/runtime - a9cc3c80fe43d19a38cacda4c1aecc51fb6eabb1 + 256bf22a3ddf920516752701da2b95e1847ff708 - + https://github.com/dotnet/runtime - a9cc3c80fe43d19a38cacda4c1aecc51fb6eabb1 + 256bf22a3ddf920516752701da2b95e1847ff708 - + https://github.com/dotnet/runtime - a9cc3c80fe43d19a38cacda4c1aecc51fb6eabb1 + 256bf22a3ddf920516752701da2b95e1847ff708 - + https://github.com/dotnet/runtime - a9cc3c80fe43d19a38cacda4c1aecc51fb6eabb1 + 256bf22a3ddf920516752701da2b95e1847ff708 - + https://github.com/dotnet/runtime - a9cc3c80fe43d19a38cacda4c1aecc51fb6eabb1 + 256bf22a3ddf920516752701da2b95e1847ff708 - + https://github.com/dotnet/runtime - a9cc3c80fe43d19a38cacda4c1aecc51fb6eabb1 + 256bf22a3ddf920516752701da2b95e1847ff708 - + https://github.com/dotnet/runtime - a9cc3c80fe43d19a38cacda4c1aecc51fb6eabb1 + 256bf22a3ddf920516752701da2b95e1847ff708 - + https://github.com/dotnet/runtime - a9cc3c80fe43d19a38cacda4c1aecc51fb6eabb1 + 256bf22a3ddf920516752701da2b95e1847ff708 - + https://github.com/dotnet/runtime - a9cc3c80fe43d19a38cacda4c1aecc51fb6eabb1 + 256bf22a3ddf920516752701da2b95e1847ff708 - + https://github.com/dotnet/winforms - 34ebe80d29001d352096758b59ac7696317cc0cc + 4b8ada673cb60b4070e3d74013a662b55d556ebb diff --git a/eng/Versions.props b/eng/Versions.props index 1fd1f2849..66b3a574d 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -25,51 +25,51 @@ 6.2.4 - 8.0.0-rtm.23509.5 - 8.0.0-rtm.23509.5 - 8.0.0-rtm.23509.5 - 8.0.0-rtm.23509.5 + 8.0.0-rtm.23511.16 + 8.0.0-rtm.23511.16 + 8.0.0-rtm.23511.16 + 8.0.0-rtm.23511.16 5.0.0 - 8.0.0-rtm.23509.5 - 8.0.0-rtm.23509.5 - 8.0.0-rtm.23509.5 - 8.0.0-rtm.23509.5 - 8.0.0-rtm.23509.5 - 8.0.0-rtm.23509.5 - 8.0.0-rtm.23509.5 - 8.0.0-rtm.23509.5 - 8.0.0-rtm.23509.5 - 8.0.0-rtm.23509.5 - 8.0.0-rtm.23509.5 - 8.0.0-rtm.23509.5 + 8.0.0-rtm.23511.16 + 8.0.0-rtm.23511.16 + 8.0.0-rtm.23511.16 + 8.0.0-rtm.23511.16 + 8.0.0-rtm.23511.16 + 8.0.0-rtm.23511.16 + 8.0.0-rtm.23511.16 + 8.0.0-rtm.23511.16 + 8.0.0-rtm.23511.16 + 8.0.0-rtm.23511.16 + 8.0.0-rtm.23511.16 + 8.0.0-rtm.23511.16 5.0.0 - 8.0.0-rtm.23509.5 + 8.0.0-rtm.23511.16 5.0.0 - 8.0.0-rtm.23509.5 - 8.0.0-rtm.23509.5 - 8.0.0-rtm.23509.5 - 8.0.0-rtm.23509.5 + 8.0.0-rtm.23511.16 + 8.0.0-rtm.23511.16 + 8.0.0-rtm.23511.16 + 8.0.0-rtm.23511.16 6.0.0 5.0.0 - 8.0.0-rtm.23509.5 - 8.0.0-rtm.23509.5 - 8.0.0-rtm.23509.5 - 8.0.0-rtm.23509.5 + 8.0.0-rtm.23511.16 + 8.0.0-rtm.23511.16 + 8.0.0-rtm.23511.16 + 8.0.0-rtm.23511.16 5.0.0 - 8.0.0-rtm.23509.5 - 8.0.0-rtm.23509.5 - 8.0.0-rtm.23509.5 - 8.0.0-rtm.23509.5 - 8.0.0-rtm.23509.5 - 8.0.0-rtm.23509.5 + 8.0.0-rtm.23511.16 + 8.0.0-rtm.23511.16 + 8.0.0-rtm.23511.16 + 8.0.0-rtm.23511.16 + 8.0.0-rtm.23511.16 + 8.0.0-rtm.23511.16 4.10.0 - 8.0.0-rtm.23509.3 - 8.0.0-rtm.23509.3 - 8.0.0-rtm.23509.3 + 8.0.0-rtm.23513.6 + 8.0.0-rtm.23513.6 + 8.0.0-rtm.23513.6 - 8.0.0-rtm.23512.2 - 8.0.0-rtm.23512.2 + 8.0.0-rtm.23513.8 + 8.0.0-rtm.23513.8 From a90eae1160573eb1274e346881214713640de729 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Sat, 14 Oct 2023 09:01:02 +0000 Subject: [PATCH 071/222] [release/8.0] Update dependencies from dotnet/wpf (#3890) [release/8.0] Update dependencies from dotnet/wpf - Coherency Updates: - Microsoft.Private.Winforms: from 8.0.0-rtm.23513.6 to 8.0.0-rtm.23513.8 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Internal.Runtime.WindowsDesktop.Transport: from 8.0.0-rtm.23511.16 to 8.0.0-rtm.23513.17 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23513.6 to 8.0.0-rtm.23513.8 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.NETCore.App.Ref: from 8.0.0-rtm.23511.16 to 8.0.0-rtm.23513.17 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23513.6 to 8.0.0-rtm.23513.8 (parent: Microsoft.DotNet.Wpf.GitHub) - VS.Redist.Common.NetCore.SharedFramework.x64.8.0: from 8.0.0-rtm.23511.16 to 8.0.0-rtm.23513.17 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23513.6 to 8.0.0-rtm.23513.8 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.NETCore.App.Runtime.win-x64: from 8.0.0-rtm.23511.16 to 8.0.0-rtm.23513.17 (parent: Microsoft.Private.Winforms) - Microsoft.Dotnet.WinForms.ProjectTemplates: from 8.0.0-rtm.23513.6 to 8.0.0-rtm.23513.8 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rtm.23513.6 to 8.0.0-rtm.23513.8 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Win32.Registry.AccessControl: from 8.0.0-rtm.23511.16 to 8.0.0-rtm.23513.17 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23513.6 to 8.0.0-rtm.23513.8 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Win32.SystemEvents: from 8.0.0-rtm.23511.16 to 8.0.0-rtm.23513.17 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23513.6 to 8.0.0-rtm.23513.8 (parent: Microsoft.DotNet.Wpf.GitHub) - System.CodeDom: from 8.0.0-rtm.23511.16 to 8.0.0-rtm.23513.17 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23513.6 to 8.0.0-rtm.23513.8 (parent: Microsoft.DotNet.Wpf.GitHub) - System.ComponentModel.Composition: from 8.0.0-rtm.23511.16 to 8.0.0-rtm.23513.17 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23513.6 to 8.0.0-rtm.23513.8 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Configuration.ConfigurationManager: from 8.0.0-rtm.23511.16 to 8.0.0-rtm.23513.17 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23513.6 to 8.0.0-rtm.23513.8 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Data.Odbc: from 8.0.0-rtm.23511.16 to 8.0.0-rtm.23513.17 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23513.6 to 8.0.0-rtm.23513.8 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Data.OleDb: from 8.0.0-rtm.23511.16 to 8.0.0-rtm.23513.17 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23513.6 to 8.0.0-rtm.23513.8 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Diagnostics.EventLog: from 8.0.0-rtm.23511.16 to 8.0.0-rtm.23513.17 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23513.6 to 8.0.0-rtm.23513.8 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Diagnostics.PerformanceCounter: from 8.0.0-rtm.23511.16 to 8.0.0-rtm.23513.17 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23513.6 to 8.0.0-rtm.23513.8 (parent: Microsoft.DotNet.Wpf.GitHub) - System.DirectoryServices.AccountManagement: from 8.0.0-rtm.23511.16 to 8.0.0-rtm.23513.17 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23513.6 to 8.0.0-rtm.23513.8 (parent: Microsoft.DotNet.Wpf.GitHub) - System.DirectoryServices.Protocols: from 8.0.0-rtm.23511.16 to 8.0.0-rtm.23513.17 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23513.6 to 8.0.0-rtm.23513.8 (parent: Microsoft.DotNet.Wpf.GitHub) - System.DirectoryServices: from 8.0.0-rtm.23511.16 to 8.0.0-rtm.23513.17 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23513.6 to 8.0.0-rtm.23513.8 (parent: Microsoft.DotNet.Wpf.GitHub) - System.IO.Packaging: from 8.0.0-rtm.23511.16 to 8.0.0-rtm.23513.17 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23513.6 to 8.0.0-rtm.23513.8 (parent: Microsoft.DotNet.Wpf.GitHub) - System.IO.Ports: from 8.0.0-rtm.23511.16 to 8.0.0-rtm.23513.17 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23513.6 to 8.0.0-rtm.23513.8 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Management: from 8.0.0-rtm.23511.16 to 8.0.0-rtm.23513.17 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23513.6 to 8.0.0-rtm.23513.8 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Reflection.Context: from 8.0.0-rtm.23511.16 to 8.0.0-rtm.23513.17 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23513.6 to 8.0.0-rtm.23513.8 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Runtime.Caching: from 8.0.0-rtm.23511.16 to 8.0.0-rtm.23513.17 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23513.6 to 8.0.0-rtm.23513.8 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Security.Cryptography.Pkcs: from 8.0.0-rtm.23511.16 to 8.0.0-rtm.23513.17 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23513.6 to 8.0.0-rtm.23513.8 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Security.Cryptography.ProtectedData: from 8.0.0-rtm.23511.16 to 8.0.0-rtm.23513.17 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23513.6 to 8.0.0-rtm.23513.8 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Security.Cryptography.Xml: from 8.0.0-rtm.23511.16 to 8.0.0-rtm.23513.17 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23513.6 to 8.0.0-rtm.23513.8 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Security.Permissions: from 8.0.0-rtm.23511.16 to 8.0.0-rtm.23513.17 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23513.6 to 8.0.0-rtm.23513.8 (parent: Microsoft.DotNet.Wpf.GitHub) - System.ServiceModel.Syndication: from 8.0.0-rtm.23511.16 to 8.0.0-rtm.23513.17 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23513.6 to 8.0.0-rtm.23513.8 (parent: Microsoft.DotNet.Wpf.GitHub) - System.ServiceProcess.ServiceController: from 8.0.0-rtm.23511.16 to 8.0.0-rtm.23513.17 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23513.6 to 8.0.0-rtm.23513.8 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Speech: from 8.0.0-rtm.23511.16 to 8.0.0-rtm.23513.17 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23513.6 to 8.0.0-rtm.23513.8 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Text.Encoding.CodePages: from 8.0.0-rtm.23511.16 to 8.0.0-rtm.23513.17 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23513.6 to 8.0.0-rtm.23513.8 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Threading.AccessControl: from 8.0.0-rtm.23511.16 to 8.0.0-rtm.23513.17 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23513.6 to 8.0.0-rtm.23513.8 (parent: Microsoft.DotNet.Wpf.GitHub) - System.ComponentModel.Composition.Registration: from 8.0.0-rtm.23511.16 to 8.0.0-rtm.23513.17 (parent: Microsoft.Private.Winforms) - System.Drawing.Common: from 8.0.0-rtm.23513.6 to 8.0.0-rtm.23513.8 (parent: Microsoft.DotNet.Wpf.GitHub) --- eng/Version.Details.xml | 148 ++++++++++++++++++++-------------------- eng/Versions.props | 72 +++++++++---------- 2 files changed, 110 insertions(+), 110 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 35b0973f5..1098774fe 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,153 +1,153 @@ - + https://github.com/dotnet/runtime - 256bf22a3ddf920516752701da2b95e1847ff708 + 60b77a63df30362ed1c66a834fcb8f8956ea113b - + https://github.com/dotnet/winforms - 4b8ada673cb60b4070e3d74013a662b55d556ebb + 4aba8ffa84ee10f4d5110570590b4637b7098755 - + https://github.com/dotnet/wpf - 24a3dfb76ada6153ff4ab199857ae5d11b2385e6 + ecee80556f0b2551b618c677c7f67910d4d3eb22 - + https://github.com/dotnet/wpf - 24a3dfb76ada6153ff4ab199857ae5d11b2385e6 + ecee80556f0b2551b618c677c7f67910d4d3eb22 - + https://github.com/dotnet/runtime - 256bf22a3ddf920516752701da2b95e1847ff708 + 60b77a63df30362ed1c66a834fcb8f8956ea113b - + https://github.com/dotnet/runtime - 256bf22a3ddf920516752701da2b95e1847ff708 + 60b77a63df30362ed1c66a834fcb8f8956ea113b - + https://github.com/dotnet/runtime - 256bf22a3ddf920516752701da2b95e1847ff708 + 60b77a63df30362ed1c66a834fcb8f8956ea113b - + https://github.com/dotnet/winforms - 4b8ada673cb60b4070e3d74013a662b55d556ebb + 4aba8ffa84ee10f4d5110570590b4637b7098755 - + https://github.com/dotnet/wpf - 24a3dfb76ada6153ff4ab199857ae5d11b2385e6 + ecee80556f0b2551b618c677c7f67910d4d3eb22 - + https://github.com/dotnet/runtime - 256bf22a3ddf920516752701da2b95e1847ff708 + 60b77a63df30362ed1c66a834fcb8f8956ea113b - + https://github.com/dotnet/runtime - 256bf22a3ddf920516752701da2b95e1847ff708 + 60b77a63df30362ed1c66a834fcb8f8956ea113b - + https://github.com/dotnet/runtime - 256bf22a3ddf920516752701da2b95e1847ff708 + 60b77a63df30362ed1c66a834fcb8f8956ea113b - + https://github.com/dotnet/runtime - 256bf22a3ddf920516752701da2b95e1847ff708 + 60b77a63df30362ed1c66a834fcb8f8956ea113b - + https://github.com/dotnet/runtime - 256bf22a3ddf920516752701da2b95e1847ff708 + 60b77a63df30362ed1c66a834fcb8f8956ea113b - + https://github.com/dotnet/runtime - 256bf22a3ddf920516752701da2b95e1847ff708 + 60b77a63df30362ed1c66a834fcb8f8956ea113b - + https://github.com/dotnet/runtime - 256bf22a3ddf920516752701da2b95e1847ff708 + 60b77a63df30362ed1c66a834fcb8f8956ea113b - + https://github.com/dotnet/runtime - 256bf22a3ddf920516752701da2b95e1847ff708 + 60b77a63df30362ed1c66a834fcb8f8956ea113b - + https://github.com/dotnet/runtime - 256bf22a3ddf920516752701da2b95e1847ff708 + 60b77a63df30362ed1c66a834fcb8f8956ea113b - + https://github.com/dotnet/runtime - 256bf22a3ddf920516752701da2b95e1847ff708 + 60b77a63df30362ed1c66a834fcb8f8956ea113b - + https://github.com/dotnet/runtime - 256bf22a3ddf920516752701da2b95e1847ff708 + 60b77a63df30362ed1c66a834fcb8f8956ea113b - + https://github.com/dotnet/runtime - 256bf22a3ddf920516752701da2b95e1847ff708 + 60b77a63df30362ed1c66a834fcb8f8956ea113b - + https://github.com/dotnet/runtime - 256bf22a3ddf920516752701da2b95e1847ff708 + 60b77a63df30362ed1c66a834fcb8f8956ea113b - + https://github.com/dotnet/runtime - 256bf22a3ddf920516752701da2b95e1847ff708 + 60b77a63df30362ed1c66a834fcb8f8956ea113b - + https://github.com/dotnet/runtime - 256bf22a3ddf920516752701da2b95e1847ff708 + 60b77a63df30362ed1c66a834fcb8f8956ea113b - + https://github.com/dotnet/runtime - 256bf22a3ddf920516752701da2b95e1847ff708 + 60b77a63df30362ed1c66a834fcb8f8956ea113b - + https://github.com/dotnet/runtime - 256bf22a3ddf920516752701da2b95e1847ff708 + 60b77a63df30362ed1c66a834fcb8f8956ea113b - + https://github.com/dotnet/runtime - 256bf22a3ddf920516752701da2b95e1847ff708 + 60b77a63df30362ed1c66a834fcb8f8956ea113b - + https://github.com/dotnet/runtime - 256bf22a3ddf920516752701da2b95e1847ff708 + 60b77a63df30362ed1c66a834fcb8f8956ea113b - + https://github.com/dotnet/runtime - 256bf22a3ddf920516752701da2b95e1847ff708 + 60b77a63df30362ed1c66a834fcb8f8956ea113b - + https://github.com/dotnet/runtime - 256bf22a3ddf920516752701da2b95e1847ff708 + 60b77a63df30362ed1c66a834fcb8f8956ea113b - + https://github.com/dotnet/runtime - 256bf22a3ddf920516752701da2b95e1847ff708 + 60b77a63df30362ed1c66a834fcb8f8956ea113b - + https://github.com/dotnet/runtime - 256bf22a3ddf920516752701da2b95e1847ff708 + 60b77a63df30362ed1c66a834fcb8f8956ea113b - + https://github.com/dotnet/runtime - 256bf22a3ddf920516752701da2b95e1847ff708 + 60b77a63df30362ed1c66a834fcb8f8956ea113b - + https://github.com/dotnet/runtime - 256bf22a3ddf920516752701da2b95e1847ff708 + 60b77a63df30362ed1c66a834fcb8f8956ea113b - + https://github.com/dotnet/runtime - 256bf22a3ddf920516752701da2b95e1847ff708 + 60b77a63df30362ed1c66a834fcb8f8956ea113b - + https://github.com/dotnet/runtime - 256bf22a3ddf920516752701da2b95e1847ff708 + 60b77a63df30362ed1c66a834fcb8f8956ea113b - + https://github.com/dotnet/winforms - 4b8ada673cb60b4070e3d74013a662b55d556ebb + 4aba8ffa84ee10f4d5110570590b4637b7098755 diff --git a/eng/Versions.props b/eng/Versions.props index 66b3a574d..f16d54719 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -25,51 +25,51 @@ 6.2.4 - 8.0.0-rtm.23511.16 - 8.0.0-rtm.23511.16 - 8.0.0-rtm.23511.16 - 8.0.0-rtm.23511.16 + 8.0.0-rtm.23513.17 + 8.0.0-rtm.23513.17 + 8.0.0-rtm.23513.17 + 8.0.0-rtm.23513.17 5.0.0 - 8.0.0-rtm.23511.16 - 8.0.0-rtm.23511.16 - 8.0.0-rtm.23511.16 - 8.0.0-rtm.23511.16 - 8.0.0-rtm.23511.16 - 8.0.0-rtm.23511.16 - 8.0.0-rtm.23511.16 - 8.0.0-rtm.23511.16 - 8.0.0-rtm.23511.16 - 8.0.0-rtm.23511.16 - 8.0.0-rtm.23511.16 - 8.0.0-rtm.23511.16 + 8.0.0-rtm.23513.17 + 8.0.0-rtm.23513.17 + 8.0.0-rtm.23513.17 + 8.0.0-rtm.23513.17 + 8.0.0-rtm.23513.17 + 8.0.0-rtm.23513.17 + 8.0.0-rtm.23513.17 + 8.0.0-rtm.23513.17 + 8.0.0-rtm.23513.17 + 8.0.0-rtm.23513.17 + 8.0.0-rtm.23513.17 + 8.0.0-rtm.23513.17 5.0.0 - 8.0.0-rtm.23511.16 + 8.0.0-rtm.23513.17 5.0.0 - 8.0.0-rtm.23511.16 - 8.0.0-rtm.23511.16 - 8.0.0-rtm.23511.16 - 8.0.0-rtm.23511.16 + 8.0.0-rtm.23513.17 + 8.0.0-rtm.23513.17 + 8.0.0-rtm.23513.17 + 8.0.0-rtm.23513.17 6.0.0 5.0.0 - 8.0.0-rtm.23511.16 - 8.0.0-rtm.23511.16 - 8.0.0-rtm.23511.16 - 8.0.0-rtm.23511.16 + 8.0.0-rtm.23513.17 + 8.0.0-rtm.23513.17 + 8.0.0-rtm.23513.17 + 8.0.0-rtm.23513.17 5.0.0 - 8.0.0-rtm.23511.16 - 8.0.0-rtm.23511.16 - 8.0.0-rtm.23511.16 - 8.0.0-rtm.23511.16 - 8.0.0-rtm.23511.16 - 8.0.0-rtm.23511.16 + 8.0.0-rtm.23513.17 + 8.0.0-rtm.23513.17 + 8.0.0-rtm.23513.17 + 8.0.0-rtm.23513.17 + 8.0.0-rtm.23513.17 + 8.0.0-rtm.23513.17 4.10.0 - 8.0.0-rtm.23513.6 - 8.0.0-rtm.23513.6 - 8.0.0-rtm.23513.6 + 8.0.0-rtm.23513.8 + 8.0.0-rtm.23513.8 + 8.0.0-rtm.23513.8 - 8.0.0-rtm.23513.8 - 8.0.0-rtm.23513.8 + 8.0.0-rtm.23514.1 + 8.0.0-rtm.23514.1 From 10997762bcd88ca515da4b104d4d0c6c8389f2f9 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Tue, 17 Oct 2023 03:33:01 +0000 Subject: [PATCH 072/222] [release/8.0] Update dependencies from dotnet/wpf (#3892) [release/8.0] Update dependencies from dotnet/wpf - Coherency Updates: - Microsoft.Private.Winforms: from 8.0.0-rtm.23513.8 to 8.0.0-rtm.23516.7 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Internal.Runtime.WindowsDesktop.Transport: from 8.0.0-rtm.23513.17 to 8.0.0-rtm.23516.9 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23513.8 to 8.0.0-rtm.23516.7 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.NETCore.App.Ref: from 8.0.0-rtm.23513.17 to 8.0.0-rtm.23516.9 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23513.8 to 8.0.0-rtm.23516.7 (parent: Microsoft.DotNet.Wpf.GitHub) - VS.Redist.Common.NetCore.SharedFramework.x64.8.0: from 8.0.0-rtm.23513.17 to 8.0.0-rtm.23516.9 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23513.8 to 8.0.0-rtm.23516.7 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.NETCore.App.Runtime.win-x64: from 8.0.0-rtm.23513.17 to 8.0.0-rtm.23516.9 (parent: Microsoft.Private.Winforms) - Microsoft.Dotnet.WinForms.ProjectTemplates: from 8.0.0-rtm.23513.8 to 8.0.0-rtm.23516.7 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rtm.23513.8 to 8.0.0-rtm.23516.7 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Win32.Registry.AccessControl: from 8.0.0-rtm.23513.17 to 8.0.0-rtm.23516.9 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23513.8 to 8.0.0-rtm.23516.7 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Win32.SystemEvents: from 8.0.0-rtm.23513.17 to 8.0.0-rtm.23516.9 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23513.8 to 8.0.0-rtm.23516.7 (parent: Microsoft.DotNet.Wpf.GitHub) - System.CodeDom: from 8.0.0-rtm.23513.17 to 8.0.0-rtm.23516.9 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23513.8 to 8.0.0-rtm.23516.7 (parent: Microsoft.DotNet.Wpf.GitHub) - System.ComponentModel.Composition: from 8.0.0-rtm.23513.17 to 8.0.0-rtm.23516.9 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23513.8 to 8.0.0-rtm.23516.7 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Configuration.ConfigurationManager: from 8.0.0-rtm.23513.17 to 8.0.0-rtm.23516.9 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23513.8 to 8.0.0-rtm.23516.7 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Data.Odbc: from 8.0.0-rtm.23513.17 to 8.0.0-rtm.23516.9 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23513.8 to 8.0.0-rtm.23516.7 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Data.OleDb: from 8.0.0-rtm.23513.17 to 8.0.0-rtm.23516.9 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23513.8 to 8.0.0-rtm.23516.7 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Diagnostics.EventLog: from 8.0.0-rtm.23513.17 to 8.0.0-rtm.23516.9 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23513.8 to 8.0.0-rtm.23516.7 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Diagnostics.PerformanceCounter: from 8.0.0-rtm.23513.17 to 8.0.0-rtm.23516.9 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23513.8 to 8.0.0-rtm.23516.7 (parent: Microsoft.DotNet.Wpf.GitHub) - System.DirectoryServices.AccountManagement: from 8.0.0-rtm.23513.17 to 8.0.0-rtm.23516.9 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23513.8 to 8.0.0-rtm.23516.7 (parent: Microsoft.DotNet.Wpf.GitHub) - System.DirectoryServices.Protocols: from 8.0.0-rtm.23513.17 to 8.0.0-rtm.23516.9 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23513.8 to 8.0.0-rtm.23516.7 (parent: Microsoft.DotNet.Wpf.GitHub) - System.DirectoryServices: from 8.0.0-rtm.23513.17 to 8.0.0-rtm.23516.9 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23513.8 to 8.0.0-rtm.23516.7 (parent: Microsoft.DotNet.Wpf.GitHub) - System.IO.Packaging: from 8.0.0-rtm.23513.17 to 8.0.0-rtm.23516.9 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23513.8 to 8.0.0-rtm.23516.7 (parent: Microsoft.DotNet.Wpf.GitHub) - System.IO.Ports: from 8.0.0-rtm.23513.17 to 8.0.0-rtm.23516.9 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23513.8 to 8.0.0-rtm.23516.7 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Management: from 8.0.0-rtm.23513.17 to 8.0.0-rtm.23516.9 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23513.8 to 8.0.0-rtm.23516.7 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Reflection.Context: from 8.0.0-rtm.23513.17 to 8.0.0-rtm.23516.9 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23513.8 to 8.0.0-rtm.23516.7 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Runtime.Caching: from 8.0.0-rtm.23513.17 to 8.0.0-rtm.23516.9 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23513.8 to 8.0.0-rtm.23516.7 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Security.Cryptography.Pkcs: from 8.0.0-rtm.23513.17 to 8.0.0-rtm.23516.9 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23513.8 to 8.0.0-rtm.23516.7 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Security.Cryptography.ProtectedData: from 8.0.0-rtm.23513.17 to 8.0.0-rtm.23516.9 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23513.8 to 8.0.0-rtm.23516.7 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Security.Cryptography.Xml: from 8.0.0-rtm.23513.17 to 8.0.0-rtm.23516.9 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23513.8 to 8.0.0-rtm.23516.7 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Security.Permissions: from 8.0.0-rtm.23513.17 to 8.0.0-rtm.23516.9 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23513.8 to 8.0.0-rtm.23516.7 (parent: Microsoft.DotNet.Wpf.GitHub) - System.ServiceModel.Syndication: from 8.0.0-rtm.23513.17 to 8.0.0-rtm.23516.9 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23513.8 to 8.0.0-rtm.23516.7 (parent: Microsoft.DotNet.Wpf.GitHub) - System.ServiceProcess.ServiceController: from 8.0.0-rtm.23513.17 to 8.0.0-rtm.23516.9 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23513.8 to 8.0.0-rtm.23516.7 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Speech: from 8.0.0-rtm.23513.17 to 8.0.0-rtm.23516.9 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23513.8 to 8.0.0-rtm.23516.7 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Text.Encoding.CodePages: from 8.0.0-rtm.23513.17 to 8.0.0-rtm.23516.9 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23513.8 to 8.0.0-rtm.23516.7 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Threading.AccessControl: from 8.0.0-rtm.23513.17 to 8.0.0-rtm.23516.9 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23513.8 to 8.0.0-rtm.23516.7 (parent: Microsoft.DotNet.Wpf.GitHub) - System.ComponentModel.Composition.Registration: from 8.0.0-rtm.23513.17 to 8.0.0-rtm.23516.9 (parent: Microsoft.Private.Winforms) - System.Drawing.Common: from 8.0.0-rtm.23513.8 to 8.0.0-rtm.23516.7 (parent: Microsoft.DotNet.Wpf.GitHub) --- eng/Version.Details.xml | 148 ++++++++++++++++++++-------------------- eng/Versions.props | 72 +++++++++---------- 2 files changed, 110 insertions(+), 110 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 1098774fe..1ca389127 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,153 +1,153 @@ - + https://github.com/dotnet/runtime - 60b77a63df30362ed1c66a834fcb8f8956ea113b + 324f912f4d01a43009ea79c0d43434860b51b450 - + https://github.com/dotnet/winforms - 4aba8ffa84ee10f4d5110570590b4637b7098755 + 9842f0a73b9184a17cdde2cabc5a8b0e8e9b63a7 - + https://github.com/dotnet/wpf - ecee80556f0b2551b618c677c7f67910d4d3eb22 + 23175b4d463ba97037b2d5d68582f3c479983a0f - + https://github.com/dotnet/wpf - ecee80556f0b2551b618c677c7f67910d4d3eb22 + 23175b4d463ba97037b2d5d68582f3c479983a0f - + https://github.com/dotnet/runtime - 60b77a63df30362ed1c66a834fcb8f8956ea113b + 324f912f4d01a43009ea79c0d43434860b51b450 - + https://github.com/dotnet/runtime - 60b77a63df30362ed1c66a834fcb8f8956ea113b + 324f912f4d01a43009ea79c0d43434860b51b450 - + https://github.com/dotnet/runtime - 60b77a63df30362ed1c66a834fcb8f8956ea113b + 324f912f4d01a43009ea79c0d43434860b51b450 - + https://github.com/dotnet/winforms - 4aba8ffa84ee10f4d5110570590b4637b7098755 + 9842f0a73b9184a17cdde2cabc5a8b0e8e9b63a7 - + https://github.com/dotnet/wpf - ecee80556f0b2551b618c677c7f67910d4d3eb22 + 23175b4d463ba97037b2d5d68582f3c479983a0f - + https://github.com/dotnet/runtime - 60b77a63df30362ed1c66a834fcb8f8956ea113b + 324f912f4d01a43009ea79c0d43434860b51b450 - + https://github.com/dotnet/runtime - 60b77a63df30362ed1c66a834fcb8f8956ea113b + 324f912f4d01a43009ea79c0d43434860b51b450 - + https://github.com/dotnet/runtime - 60b77a63df30362ed1c66a834fcb8f8956ea113b + 324f912f4d01a43009ea79c0d43434860b51b450 - + https://github.com/dotnet/runtime - 60b77a63df30362ed1c66a834fcb8f8956ea113b + 324f912f4d01a43009ea79c0d43434860b51b450 - + https://github.com/dotnet/runtime - 60b77a63df30362ed1c66a834fcb8f8956ea113b + 324f912f4d01a43009ea79c0d43434860b51b450 - + https://github.com/dotnet/runtime - 60b77a63df30362ed1c66a834fcb8f8956ea113b + 324f912f4d01a43009ea79c0d43434860b51b450 - + https://github.com/dotnet/runtime - 60b77a63df30362ed1c66a834fcb8f8956ea113b + 324f912f4d01a43009ea79c0d43434860b51b450 - + https://github.com/dotnet/runtime - 60b77a63df30362ed1c66a834fcb8f8956ea113b + 324f912f4d01a43009ea79c0d43434860b51b450 - + https://github.com/dotnet/runtime - 60b77a63df30362ed1c66a834fcb8f8956ea113b + 324f912f4d01a43009ea79c0d43434860b51b450 - + https://github.com/dotnet/runtime - 60b77a63df30362ed1c66a834fcb8f8956ea113b + 324f912f4d01a43009ea79c0d43434860b51b450 - + https://github.com/dotnet/runtime - 60b77a63df30362ed1c66a834fcb8f8956ea113b + 324f912f4d01a43009ea79c0d43434860b51b450 - + https://github.com/dotnet/runtime - 60b77a63df30362ed1c66a834fcb8f8956ea113b + 324f912f4d01a43009ea79c0d43434860b51b450 - + https://github.com/dotnet/runtime - 60b77a63df30362ed1c66a834fcb8f8956ea113b + 324f912f4d01a43009ea79c0d43434860b51b450 - + https://github.com/dotnet/runtime - 60b77a63df30362ed1c66a834fcb8f8956ea113b + 324f912f4d01a43009ea79c0d43434860b51b450 - + https://github.com/dotnet/runtime - 60b77a63df30362ed1c66a834fcb8f8956ea113b + 324f912f4d01a43009ea79c0d43434860b51b450 - + https://github.com/dotnet/runtime - 60b77a63df30362ed1c66a834fcb8f8956ea113b + 324f912f4d01a43009ea79c0d43434860b51b450 - + https://github.com/dotnet/runtime - 60b77a63df30362ed1c66a834fcb8f8956ea113b + 324f912f4d01a43009ea79c0d43434860b51b450 - + https://github.com/dotnet/runtime - 60b77a63df30362ed1c66a834fcb8f8956ea113b + 324f912f4d01a43009ea79c0d43434860b51b450 - + https://github.com/dotnet/runtime - 60b77a63df30362ed1c66a834fcb8f8956ea113b + 324f912f4d01a43009ea79c0d43434860b51b450 - + https://github.com/dotnet/runtime - 60b77a63df30362ed1c66a834fcb8f8956ea113b + 324f912f4d01a43009ea79c0d43434860b51b450 - + https://github.com/dotnet/runtime - 60b77a63df30362ed1c66a834fcb8f8956ea113b + 324f912f4d01a43009ea79c0d43434860b51b450 - + https://github.com/dotnet/runtime - 60b77a63df30362ed1c66a834fcb8f8956ea113b + 324f912f4d01a43009ea79c0d43434860b51b450 - + https://github.com/dotnet/runtime - 60b77a63df30362ed1c66a834fcb8f8956ea113b + 324f912f4d01a43009ea79c0d43434860b51b450 - + https://github.com/dotnet/runtime - 60b77a63df30362ed1c66a834fcb8f8956ea113b + 324f912f4d01a43009ea79c0d43434860b51b450 - + https://github.com/dotnet/runtime - 60b77a63df30362ed1c66a834fcb8f8956ea113b + 324f912f4d01a43009ea79c0d43434860b51b450 - + https://github.com/dotnet/runtime - 60b77a63df30362ed1c66a834fcb8f8956ea113b + 324f912f4d01a43009ea79c0d43434860b51b450 - + https://github.com/dotnet/runtime - 60b77a63df30362ed1c66a834fcb8f8956ea113b + 324f912f4d01a43009ea79c0d43434860b51b450 - + https://github.com/dotnet/winforms - 4aba8ffa84ee10f4d5110570590b4637b7098755 + 9842f0a73b9184a17cdde2cabc5a8b0e8e9b63a7 diff --git a/eng/Versions.props b/eng/Versions.props index f16d54719..366e6ea71 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -25,51 +25,51 @@ 6.2.4 - 8.0.0-rtm.23513.17 - 8.0.0-rtm.23513.17 - 8.0.0-rtm.23513.17 - 8.0.0-rtm.23513.17 + 8.0.0-rtm.23516.9 + 8.0.0-rtm.23516.9 + 8.0.0-rtm.23516.9 + 8.0.0-rtm.23516.9 5.0.0 - 8.0.0-rtm.23513.17 - 8.0.0-rtm.23513.17 - 8.0.0-rtm.23513.17 - 8.0.0-rtm.23513.17 - 8.0.0-rtm.23513.17 - 8.0.0-rtm.23513.17 - 8.0.0-rtm.23513.17 - 8.0.0-rtm.23513.17 - 8.0.0-rtm.23513.17 - 8.0.0-rtm.23513.17 - 8.0.0-rtm.23513.17 - 8.0.0-rtm.23513.17 + 8.0.0-rtm.23516.9 + 8.0.0-rtm.23516.9 + 8.0.0-rtm.23516.9 + 8.0.0-rtm.23516.9 + 8.0.0-rtm.23516.9 + 8.0.0-rtm.23516.9 + 8.0.0-rtm.23516.9 + 8.0.0-rtm.23516.9 + 8.0.0-rtm.23516.9 + 8.0.0-rtm.23516.9 + 8.0.0-rtm.23516.9 + 8.0.0-rtm.23516.9 5.0.0 - 8.0.0-rtm.23513.17 + 8.0.0-rtm.23516.9 5.0.0 - 8.0.0-rtm.23513.17 - 8.0.0-rtm.23513.17 - 8.0.0-rtm.23513.17 - 8.0.0-rtm.23513.17 + 8.0.0-rtm.23516.9 + 8.0.0-rtm.23516.9 + 8.0.0-rtm.23516.9 + 8.0.0-rtm.23516.9 6.0.0 5.0.0 - 8.0.0-rtm.23513.17 - 8.0.0-rtm.23513.17 - 8.0.0-rtm.23513.17 - 8.0.0-rtm.23513.17 + 8.0.0-rtm.23516.9 + 8.0.0-rtm.23516.9 + 8.0.0-rtm.23516.9 + 8.0.0-rtm.23516.9 5.0.0 - 8.0.0-rtm.23513.17 - 8.0.0-rtm.23513.17 - 8.0.0-rtm.23513.17 - 8.0.0-rtm.23513.17 - 8.0.0-rtm.23513.17 - 8.0.0-rtm.23513.17 + 8.0.0-rtm.23516.9 + 8.0.0-rtm.23516.9 + 8.0.0-rtm.23516.9 + 8.0.0-rtm.23516.9 + 8.0.0-rtm.23516.9 + 8.0.0-rtm.23516.9 4.10.0 - 8.0.0-rtm.23513.8 - 8.0.0-rtm.23513.8 - 8.0.0-rtm.23513.8 + 8.0.0-rtm.23516.7 + 8.0.0-rtm.23516.7 + 8.0.0-rtm.23516.7 - 8.0.0-rtm.23514.1 - 8.0.0-rtm.23514.1 + 8.0.0-rtm.23516.10 + 8.0.0-rtm.23516.10 From e846ac57cea8f922cd5eb9b17fb4385db5af2a0f Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Tue, 17 Oct 2023 04:36:59 +0000 Subject: [PATCH 073/222] [release/8.0] Update dependencies from dotnet/wpf (#3893) [release/8.0] Update dependencies from dotnet/wpf - Coherency Updates: - Microsoft.Private.Winforms: from 8.0.0-rtm.23516.7 to 8.0.0-rtm.23516.9 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Internal.Runtime.WindowsDesktop.Transport: from 8.0.0-rtm.23516.9 to 8.0.0-rtm.23516.15 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23516.7 to 8.0.0-rtm.23516.9 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.NETCore.App.Ref: from 8.0.0-rtm.23516.9 to 8.0.0-rtm.23516.15 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23516.7 to 8.0.0-rtm.23516.9 (parent: Microsoft.DotNet.Wpf.GitHub) - VS.Redist.Common.NetCore.SharedFramework.x64.8.0: from 8.0.0-rtm.23516.9 to 8.0.0-rtm.23516.15 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23516.7 to 8.0.0-rtm.23516.9 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.NETCore.App.Runtime.win-x64: from 8.0.0-rtm.23516.9 to 8.0.0-rtm.23516.15 (parent: Microsoft.Private.Winforms) - Microsoft.Dotnet.WinForms.ProjectTemplates: from 8.0.0-rtm.23516.7 to 8.0.0-rtm.23516.9 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rtm.23516.7 to 8.0.0-rtm.23516.9 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Win32.Registry.AccessControl: from 8.0.0-rtm.23516.9 to 8.0.0-rtm.23516.15 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23516.7 to 8.0.0-rtm.23516.9 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Win32.SystemEvents: from 8.0.0-rtm.23516.9 to 8.0.0-rtm.23516.15 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23516.7 to 8.0.0-rtm.23516.9 (parent: Microsoft.DotNet.Wpf.GitHub) - System.CodeDom: from 8.0.0-rtm.23516.9 to 8.0.0-rtm.23516.15 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23516.7 to 8.0.0-rtm.23516.9 (parent: Microsoft.DotNet.Wpf.GitHub) - System.ComponentModel.Composition: from 8.0.0-rtm.23516.9 to 8.0.0-rtm.23516.15 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23516.7 to 8.0.0-rtm.23516.9 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Configuration.ConfigurationManager: from 8.0.0-rtm.23516.9 to 8.0.0-rtm.23516.15 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23516.7 to 8.0.0-rtm.23516.9 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Data.Odbc: from 8.0.0-rtm.23516.9 to 8.0.0-rtm.23516.15 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23516.7 to 8.0.0-rtm.23516.9 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Data.OleDb: from 8.0.0-rtm.23516.9 to 8.0.0-rtm.23516.15 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23516.7 to 8.0.0-rtm.23516.9 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Diagnostics.EventLog: from 8.0.0-rtm.23516.9 to 8.0.0-rtm.23516.15 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23516.7 to 8.0.0-rtm.23516.9 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Diagnostics.PerformanceCounter: from 8.0.0-rtm.23516.9 to 8.0.0-rtm.23516.15 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23516.7 to 8.0.0-rtm.23516.9 (parent: Microsoft.DotNet.Wpf.GitHub) - System.DirectoryServices.AccountManagement: from 8.0.0-rtm.23516.9 to 8.0.0-rtm.23516.15 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23516.7 to 8.0.0-rtm.23516.9 (parent: Microsoft.DotNet.Wpf.GitHub) - System.DirectoryServices.Protocols: from 8.0.0-rtm.23516.9 to 8.0.0-rtm.23516.15 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23516.7 to 8.0.0-rtm.23516.9 (parent: Microsoft.DotNet.Wpf.GitHub) - System.DirectoryServices: from 8.0.0-rtm.23516.9 to 8.0.0-rtm.23516.15 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23516.7 to 8.0.0-rtm.23516.9 (parent: Microsoft.DotNet.Wpf.GitHub) - System.IO.Packaging: from 8.0.0-rtm.23516.9 to 8.0.0-rtm.23516.15 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23516.7 to 8.0.0-rtm.23516.9 (parent: Microsoft.DotNet.Wpf.GitHub) - System.IO.Ports: from 8.0.0-rtm.23516.9 to 8.0.0-rtm.23516.15 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23516.7 to 8.0.0-rtm.23516.9 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Management: from 8.0.0-rtm.23516.9 to 8.0.0-rtm.23516.15 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23516.7 to 8.0.0-rtm.23516.9 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Reflection.Context: from 8.0.0-rtm.23516.9 to 8.0.0-rtm.23516.15 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23516.7 to 8.0.0-rtm.23516.9 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Runtime.Caching: from 8.0.0-rtm.23516.9 to 8.0.0-rtm.23516.15 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23516.7 to 8.0.0-rtm.23516.9 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Security.Cryptography.Pkcs: from 8.0.0-rtm.23516.9 to 8.0.0-rtm.23516.15 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23516.7 to 8.0.0-rtm.23516.9 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Security.Cryptography.ProtectedData: from 8.0.0-rtm.23516.9 to 8.0.0-rtm.23516.15 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23516.7 to 8.0.0-rtm.23516.9 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Security.Cryptography.Xml: from 8.0.0-rtm.23516.9 to 8.0.0-rtm.23516.15 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23516.7 to 8.0.0-rtm.23516.9 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Security.Permissions: from 8.0.0-rtm.23516.9 to 8.0.0-rtm.23516.15 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23516.7 to 8.0.0-rtm.23516.9 (parent: Microsoft.DotNet.Wpf.GitHub) - System.ServiceModel.Syndication: from 8.0.0-rtm.23516.9 to 8.0.0-rtm.23516.15 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23516.7 to 8.0.0-rtm.23516.9 (parent: Microsoft.DotNet.Wpf.GitHub) - System.ServiceProcess.ServiceController: from 8.0.0-rtm.23516.9 to 8.0.0-rtm.23516.15 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23516.7 to 8.0.0-rtm.23516.9 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Speech: from 8.0.0-rtm.23516.9 to 8.0.0-rtm.23516.15 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23516.7 to 8.0.0-rtm.23516.9 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Text.Encoding.CodePages: from 8.0.0-rtm.23516.9 to 8.0.0-rtm.23516.15 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23516.7 to 8.0.0-rtm.23516.9 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Threading.AccessControl: from 8.0.0-rtm.23516.9 to 8.0.0-rtm.23516.15 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23516.7 to 8.0.0-rtm.23516.9 (parent: Microsoft.DotNet.Wpf.GitHub) - System.ComponentModel.Composition.Registration: from 8.0.0-rtm.23516.9 to 8.0.0-rtm.23516.15 (parent: Microsoft.Private.Winforms) - System.Drawing.Common: from 8.0.0-rtm.23516.7 to 8.0.0-rtm.23516.9 (parent: Microsoft.DotNet.Wpf.GitHub) --- eng/Version.Details.xml | 148 ++++++++++++++++++++-------------------- eng/Versions.props | 72 +++++++++---------- 2 files changed, 110 insertions(+), 110 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 1ca389127..701caac5e 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,153 +1,153 @@ - + https://github.com/dotnet/runtime - 324f912f4d01a43009ea79c0d43434860b51b450 + 567f81e719091bd1ba3c751d49bacee2c6a45e66 - + https://github.com/dotnet/winforms - 9842f0a73b9184a17cdde2cabc5a8b0e8e9b63a7 + ecdff75cfde7dc49147be791da1ec15a4eee21a3 - + https://github.com/dotnet/wpf - 23175b4d463ba97037b2d5d68582f3c479983a0f + babeeb65b164c87633db21a20223c8d99e2185e9 - + https://github.com/dotnet/wpf - 23175b4d463ba97037b2d5d68582f3c479983a0f + babeeb65b164c87633db21a20223c8d99e2185e9 - + https://github.com/dotnet/runtime - 324f912f4d01a43009ea79c0d43434860b51b450 + 567f81e719091bd1ba3c751d49bacee2c6a45e66 - + https://github.com/dotnet/runtime - 324f912f4d01a43009ea79c0d43434860b51b450 + 567f81e719091bd1ba3c751d49bacee2c6a45e66 - + https://github.com/dotnet/runtime - 324f912f4d01a43009ea79c0d43434860b51b450 + 567f81e719091bd1ba3c751d49bacee2c6a45e66 - + https://github.com/dotnet/winforms - 9842f0a73b9184a17cdde2cabc5a8b0e8e9b63a7 + ecdff75cfde7dc49147be791da1ec15a4eee21a3 - + https://github.com/dotnet/wpf - 23175b4d463ba97037b2d5d68582f3c479983a0f + babeeb65b164c87633db21a20223c8d99e2185e9 - + https://github.com/dotnet/runtime - 324f912f4d01a43009ea79c0d43434860b51b450 + 567f81e719091bd1ba3c751d49bacee2c6a45e66 - + https://github.com/dotnet/runtime - 324f912f4d01a43009ea79c0d43434860b51b450 + 567f81e719091bd1ba3c751d49bacee2c6a45e66 - + https://github.com/dotnet/runtime - 324f912f4d01a43009ea79c0d43434860b51b450 + 567f81e719091bd1ba3c751d49bacee2c6a45e66 - + https://github.com/dotnet/runtime - 324f912f4d01a43009ea79c0d43434860b51b450 + 567f81e719091bd1ba3c751d49bacee2c6a45e66 - + https://github.com/dotnet/runtime - 324f912f4d01a43009ea79c0d43434860b51b450 + 567f81e719091bd1ba3c751d49bacee2c6a45e66 - + https://github.com/dotnet/runtime - 324f912f4d01a43009ea79c0d43434860b51b450 + 567f81e719091bd1ba3c751d49bacee2c6a45e66 - + https://github.com/dotnet/runtime - 324f912f4d01a43009ea79c0d43434860b51b450 + 567f81e719091bd1ba3c751d49bacee2c6a45e66 - + https://github.com/dotnet/runtime - 324f912f4d01a43009ea79c0d43434860b51b450 + 567f81e719091bd1ba3c751d49bacee2c6a45e66 - + https://github.com/dotnet/runtime - 324f912f4d01a43009ea79c0d43434860b51b450 + 567f81e719091bd1ba3c751d49bacee2c6a45e66 - + https://github.com/dotnet/runtime - 324f912f4d01a43009ea79c0d43434860b51b450 + 567f81e719091bd1ba3c751d49bacee2c6a45e66 - + https://github.com/dotnet/runtime - 324f912f4d01a43009ea79c0d43434860b51b450 + 567f81e719091bd1ba3c751d49bacee2c6a45e66 - + https://github.com/dotnet/runtime - 324f912f4d01a43009ea79c0d43434860b51b450 + 567f81e719091bd1ba3c751d49bacee2c6a45e66 - + https://github.com/dotnet/runtime - 324f912f4d01a43009ea79c0d43434860b51b450 + 567f81e719091bd1ba3c751d49bacee2c6a45e66 - + https://github.com/dotnet/runtime - 324f912f4d01a43009ea79c0d43434860b51b450 + 567f81e719091bd1ba3c751d49bacee2c6a45e66 - + https://github.com/dotnet/runtime - 324f912f4d01a43009ea79c0d43434860b51b450 + 567f81e719091bd1ba3c751d49bacee2c6a45e66 - + https://github.com/dotnet/runtime - 324f912f4d01a43009ea79c0d43434860b51b450 + 567f81e719091bd1ba3c751d49bacee2c6a45e66 - + https://github.com/dotnet/runtime - 324f912f4d01a43009ea79c0d43434860b51b450 + 567f81e719091bd1ba3c751d49bacee2c6a45e66 - + https://github.com/dotnet/runtime - 324f912f4d01a43009ea79c0d43434860b51b450 + 567f81e719091bd1ba3c751d49bacee2c6a45e66 - + https://github.com/dotnet/runtime - 324f912f4d01a43009ea79c0d43434860b51b450 + 567f81e719091bd1ba3c751d49bacee2c6a45e66 - + https://github.com/dotnet/runtime - 324f912f4d01a43009ea79c0d43434860b51b450 + 567f81e719091bd1ba3c751d49bacee2c6a45e66 - + https://github.com/dotnet/runtime - 324f912f4d01a43009ea79c0d43434860b51b450 + 567f81e719091bd1ba3c751d49bacee2c6a45e66 - + https://github.com/dotnet/runtime - 324f912f4d01a43009ea79c0d43434860b51b450 + 567f81e719091bd1ba3c751d49bacee2c6a45e66 - + https://github.com/dotnet/runtime - 324f912f4d01a43009ea79c0d43434860b51b450 + 567f81e719091bd1ba3c751d49bacee2c6a45e66 - + https://github.com/dotnet/runtime - 324f912f4d01a43009ea79c0d43434860b51b450 + 567f81e719091bd1ba3c751d49bacee2c6a45e66 - + https://github.com/dotnet/runtime - 324f912f4d01a43009ea79c0d43434860b51b450 + 567f81e719091bd1ba3c751d49bacee2c6a45e66 - + https://github.com/dotnet/runtime - 324f912f4d01a43009ea79c0d43434860b51b450 + 567f81e719091bd1ba3c751d49bacee2c6a45e66 - + https://github.com/dotnet/runtime - 324f912f4d01a43009ea79c0d43434860b51b450 + 567f81e719091bd1ba3c751d49bacee2c6a45e66 - + https://github.com/dotnet/winforms - 9842f0a73b9184a17cdde2cabc5a8b0e8e9b63a7 + ecdff75cfde7dc49147be791da1ec15a4eee21a3 diff --git a/eng/Versions.props b/eng/Versions.props index 366e6ea71..de742d058 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -25,51 +25,51 @@ 6.2.4 - 8.0.0-rtm.23516.9 - 8.0.0-rtm.23516.9 - 8.0.0-rtm.23516.9 - 8.0.0-rtm.23516.9 + 8.0.0-rtm.23516.15 + 8.0.0-rtm.23516.15 + 8.0.0-rtm.23516.15 + 8.0.0-rtm.23516.15 5.0.0 - 8.0.0-rtm.23516.9 - 8.0.0-rtm.23516.9 - 8.0.0-rtm.23516.9 - 8.0.0-rtm.23516.9 - 8.0.0-rtm.23516.9 - 8.0.0-rtm.23516.9 - 8.0.0-rtm.23516.9 - 8.0.0-rtm.23516.9 - 8.0.0-rtm.23516.9 - 8.0.0-rtm.23516.9 - 8.0.0-rtm.23516.9 - 8.0.0-rtm.23516.9 + 8.0.0-rtm.23516.15 + 8.0.0-rtm.23516.15 + 8.0.0-rtm.23516.15 + 8.0.0-rtm.23516.15 + 8.0.0-rtm.23516.15 + 8.0.0-rtm.23516.15 + 8.0.0-rtm.23516.15 + 8.0.0-rtm.23516.15 + 8.0.0-rtm.23516.15 + 8.0.0-rtm.23516.15 + 8.0.0-rtm.23516.15 + 8.0.0-rtm.23516.15 5.0.0 - 8.0.0-rtm.23516.9 + 8.0.0-rtm.23516.15 5.0.0 - 8.0.0-rtm.23516.9 - 8.0.0-rtm.23516.9 - 8.0.0-rtm.23516.9 - 8.0.0-rtm.23516.9 + 8.0.0-rtm.23516.15 + 8.0.0-rtm.23516.15 + 8.0.0-rtm.23516.15 + 8.0.0-rtm.23516.15 6.0.0 5.0.0 - 8.0.0-rtm.23516.9 - 8.0.0-rtm.23516.9 - 8.0.0-rtm.23516.9 - 8.0.0-rtm.23516.9 + 8.0.0-rtm.23516.15 + 8.0.0-rtm.23516.15 + 8.0.0-rtm.23516.15 + 8.0.0-rtm.23516.15 5.0.0 - 8.0.0-rtm.23516.9 - 8.0.0-rtm.23516.9 - 8.0.0-rtm.23516.9 - 8.0.0-rtm.23516.9 - 8.0.0-rtm.23516.9 - 8.0.0-rtm.23516.9 + 8.0.0-rtm.23516.15 + 8.0.0-rtm.23516.15 + 8.0.0-rtm.23516.15 + 8.0.0-rtm.23516.15 + 8.0.0-rtm.23516.15 + 8.0.0-rtm.23516.15 4.10.0 - 8.0.0-rtm.23516.7 - 8.0.0-rtm.23516.7 - 8.0.0-rtm.23516.7 + 8.0.0-rtm.23516.9 + 8.0.0-rtm.23516.9 + 8.0.0-rtm.23516.9 - 8.0.0-rtm.23516.10 - 8.0.0-rtm.23516.10 + 8.0.0-rtm.23516.12 + 8.0.0-rtm.23516.12 From 0e2b934180c7afb7759843c6285bbc6bb8838cb9 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Thu, 19 Oct 2023 13:04:33 +0000 Subject: [PATCH 074/222] [release/8.0] Update dependencies from dotnet/arcade (#3902) [release/8.0] Update dependencies from dotnet/arcade --- eng/Version.Details.xml | 24 ++++++++++++------------ eng/Versions.props | 8 ++++---- eng/common/sdk-task.ps1 | 2 +- eng/common/tools.ps1 | 4 ++-- global.json | 6 +++--- 5 files changed, 22 insertions(+), 22 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 701caac5e..1aeef17c5 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -151,29 +151,29 @@ - + https://github.com/dotnet/arcade - e6be64c3e27aeb29f93f6aa751fad972e4ef2d52 + 39042b4048580366d35a7c1c4f4ce8fc0dbea4b4 - + https://github.com/dotnet/arcade - e6be64c3e27aeb29f93f6aa751fad972e4ef2d52 + 39042b4048580366d35a7c1c4f4ce8fc0dbea4b4 - + https://github.com/dotnet/arcade - e6be64c3e27aeb29f93f6aa751fad972e4ef2d52 + 39042b4048580366d35a7c1c4f4ce8fc0dbea4b4 - + https://github.com/dotnet/arcade - e6be64c3e27aeb29f93f6aa751fad972e4ef2d52 + 39042b4048580366d35a7c1c4f4ce8fc0dbea4b4 - + https://github.com/dotnet/arcade - e6be64c3e27aeb29f93f6aa751fad972e4ef2d52 + 39042b4048580366d35a7c1c4f4ce8fc0dbea4b4 - + https://github.com/dotnet/arcade - e6be64c3e27aeb29f93f6aa751fad972e4ef2d52 + 39042b4048580366d35a7c1c4f4ce8fc0dbea4b4 diff --git a/eng/Versions.props b/eng/Versions.props index de742d058..274516e80 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -12,10 +12,10 @@ - 8.0.0-beta.23505.1 - 8.0.0-beta.23505.1 - 8.0.0-beta.23505.1 - 8.0.0-beta.23505.1 + 8.0.0-beta.23516.4 + 8.0.0-beta.23516.4 + 8.0.0-beta.23516.4 + 8.0.0-beta.23516.4 4.5.0 4.8.5 diff --git a/eng/common/sdk-task.ps1 b/eng/common/sdk-task.ps1 index 91f8196cc..73828dd30 100644 --- a/eng/common/sdk-task.ps1 +++ b/eng/common/sdk-task.ps1 @@ -64,7 +64,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.7.2-1" -MemberType NoteProperty + $GlobalJson.tools | Add-Member -Name "xcopy-msbuild" -Value "17.8.1-2" -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 84cfe7cd9..fdd0cbb91 100644 --- a/eng/common/tools.ps1 +++ b/eng/common/tools.ps1 @@ -384,8 +384,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/RoslynTools.MSBuild/versions/17.7.2-1 - $defaultXCopyMSBuildVersion = '17.7.2-1' + # https://dev.azure.com/dnceng/public/_artifacts/feed/dotnet-eng/NuGet/RoslynTools.MSBuild/versions/17.8.1-2 + $defaultXCopyMSBuildVersion = '17.8.1-2' if (!$vsRequirements) { if (Get-Member -InputObject $GlobalJson.tools -Name 'vs') { diff --git a/global.json b/global.json index 0ddb8a2eb..9a6479bff 100644 --- a/global.json +++ b/global.json @@ -1,10 +1,10 @@ { "tools": { - "dotnet": "8.0.100-rc.1.23455.8" + "dotnet": "8.0.100-rtm.23506.1" }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "8.0.0-beta.23505.1", - "Microsoft.DotNet.SharedFramework.Sdk": "8.0.0-beta.23505.1", + "Microsoft.DotNet.Arcade.Sdk": "8.0.0-beta.23516.4", + "Microsoft.DotNet.SharedFramework.Sdk": "8.0.0-beta.23516.4", "Microsoft.Build.NoTargets": "3.7.0", "Microsoft.Build.Traversal": "3.4.0" } From 05d1635fd3b18cc18dfd50bb6a6b3661a48d3f9a Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Thu, 19 Oct 2023 18:58:55 +0000 Subject: [PATCH 075/222] [release/8.0] Update dependencies from dotnet/wpf (#3903) [release/8.0] Update dependencies from dotnet/wpf --- eng/Version.Details.xml | 12 ++++++------ eng/Versions.props | 4 ++-- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 1aeef17c5..2f739e9f0 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -9,13 +9,13 @@ https://github.com/dotnet/winforms ecdff75cfde7dc49147be791da1ec15a4eee21a3 - + https://github.com/dotnet/wpf - babeeb65b164c87633db21a20223c8d99e2185e9 + 895d793b1177bcc3e99917e0047ec65d628e0dde - + https://github.com/dotnet/wpf - babeeb65b164c87633db21a20223c8d99e2185e9 + 895d793b1177bcc3e99917e0047ec65d628e0dde https://github.com/dotnet/runtime @@ -33,9 +33,9 @@ https://github.com/dotnet/winforms ecdff75cfde7dc49147be791da1ec15a4eee21a3 - + https://github.com/dotnet/wpf - babeeb65b164c87633db21a20223c8d99e2185e9 + 895d793b1177bcc3e99917e0047ec65d628e0dde https://github.com/dotnet/runtime diff --git a/eng/Versions.props b/eng/Versions.props index 274516e80..eede4048f 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -69,7 +69,7 @@ 8.0.0-rtm.23516.9 8.0.0-rtm.23516.9 - 8.0.0-rtm.23516.12 - 8.0.0-rtm.23516.12 + 8.0.0-rtm.23519.3 + 8.0.0-rtm.23519.3 From edabf36bfbd131c37739c6a135e71d0dee49f9f0 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Thu, 19 Oct 2023 21:03:36 +0000 Subject: [PATCH 076/222] [release/8.0] Update dependencies from dotnet/wpf (#3904) [release/8.0] Update dependencies from dotnet/wpf - Coherency Updates: - Microsoft.Private.Winforms: from 8.0.0-rtm.23516.9 to 8.0.0-rtm.23519.3 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Internal.Runtime.WindowsDesktop.Transport: from 8.0.0-rtm.23516.15 to 8.0.0-rtm.23518.26 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23516.9 to 8.0.0-rtm.23519.3 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.NETCore.App.Ref: from 8.0.0-rtm.23516.15 to 8.0.0-rtm.23518.26 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23516.9 to 8.0.0-rtm.23519.3 (parent: Microsoft.DotNet.Wpf.GitHub) - VS.Redist.Common.NetCore.SharedFramework.x64.8.0: from 8.0.0-rtm.23516.15 to 8.0.0-rtm.23518.26 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23516.9 to 8.0.0-rtm.23519.3 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.NETCore.App.Runtime.win-x64: from 8.0.0-rtm.23516.15 to 8.0.0-rtm.23518.26 (parent: Microsoft.Private.Winforms) - Microsoft.Dotnet.WinForms.ProjectTemplates: from 8.0.0-rtm.23516.9 to 8.0.0-rtm.23519.3 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rtm.23516.9 to 8.0.0-rtm.23519.3 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Win32.Registry.AccessControl: from 8.0.0-rtm.23516.15 to 8.0.0-rtm.23518.26 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23516.9 to 8.0.0-rtm.23519.3 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Win32.SystemEvents: from 8.0.0-rtm.23516.15 to 8.0.0-rtm.23518.26 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23516.9 to 8.0.0-rtm.23519.3 (parent: Microsoft.DotNet.Wpf.GitHub) - System.CodeDom: from 8.0.0-rtm.23516.15 to 8.0.0-rtm.23518.26 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23516.9 to 8.0.0-rtm.23519.3 (parent: Microsoft.DotNet.Wpf.GitHub) - System.ComponentModel.Composition: from 8.0.0-rtm.23516.15 to 8.0.0-rtm.23518.26 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23516.9 to 8.0.0-rtm.23519.3 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Configuration.ConfigurationManager: from 8.0.0-rtm.23516.15 to 8.0.0-rtm.23518.26 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23516.9 to 8.0.0-rtm.23519.3 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Data.Odbc: from 8.0.0-rtm.23516.15 to 8.0.0-rtm.23518.26 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23516.9 to 8.0.0-rtm.23519.3 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Data.OleDb: from 8.0.0-rtm.23516.15 to 8.0.0-rtm.23518.26 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23516.9 to 8.0.0-rtm.23519.3 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Diagnostics.EventLog: from 8.0.0-rtm.23516.15 to 8.0.0-rtm.23518.26 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23516.9 to 8.0.0-rtm.23519.3 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Diagnostics.PerformanceCounter: from 8.0.0-rtm.23516.15 to 8.0.0-rtm.23518.26 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23516.9 to 8.0.0-rtm.23519.3 (parent: Microsoft.DotNet.Wpf.GitHub) - System.DirectoryServices.AccountManagement: from 8.0.0-rtm.23516.15 to 8.0.0-rtm.23518.26 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23516.9 to 8.0.0-rtm.23519.3 (parent: Microsoft.DotNet.Wpf.GitHub) - System.DirectoryServices.Protocols: from 8.0.0-rtm.23516.15 to 8.0.0-rtm.23518.26 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23516.9 to 8.0.0-rtm.23519.3 (parent: Microsoft.DotNet.Wpf.GitHub) - System.DirectoryServices: from 8.0.0-rtm.23516.15 to 8.0.0-rtm.23518.26 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23516.9 to 8.0.0-rtm.23519.3 (parent: Microsoft.DotNet.Wpf.GitHub) - System.IO.Packaging: from 8.0.0-rtm.23516.15 to 8.0.0-rtm.23518.26 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23516.9 to 8.0.0-rtm.23519.3 (parent: Microsoft.DotNet.Wpf.GitHub) - System.IO.Ports: from 8.0.0-rtm.23516.15 to 8.0.0-rtm.23518.26 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23516.9 to 8.0.0-rtm.23519.3 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Management: from 8.0.0-rtm.23516.15 to 8.0.0-rtm.23518.26 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23516.9 to 8.0.0-rtm.23519.3 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Reflection.Context: from 8.0.0-rtm.23516.15 to 8.0.0-rtm.23518.26 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23516.9 to 8.0.0-rtm.23519.3 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Runtime.Caching: from 8.0.0-rtm.23516.15 to 8.0.0-rtm.23518.26 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23516.9 to 8.0.0-rtm.23519.3 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Security.Cryptography.Pkcs: from 8.0.0-rtm.23516.15 to 8.0.0-rtm.23518.26 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23516.9 to 8.0.0-rtm.23519.3 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Security.Cryptography.ProtectedData: from 8.0.0-rtm.23516.15 to 8.0.0-rtm.23518.26 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23516.9 to 8.0.0-rtm.23519.3 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Security.Cryptography.Xml: from 8.0.0-rtm.23516.15 to 8.0.0-rtm.23518.26 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23516.9 to 8.0.0-rtm.23519.3 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Security.Permissions: from 8.0.0-rtm.23516.15 to 8.0.0-rtm.23518.26 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23516.9 to 8.0.0-rtm.23519.3 (parent: Microsoft.DotNet.Wpf.GitHub) - System.ServiceModel.Syndication: from 8.0.0-rtm.23516.15 to 8.0.0-rtm.23518.26 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23516.9 to 8.0.0-rtm.23519.3 (parent: Microsoft.DotNet.Wpf.GitHub) - System.ServiceProcess.ServiceController: from 8.0.0-rtm.23516.15 to 8.0.0-rtm.23518.26 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23516.9 to 8.0.0-rtm.23519.3 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Speech: from 8.0.0-rtm.23516.15 to 8.0.0-rtm.23518.26 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23516.9 to 8.0.0-rtm.23519.3 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Text.Encoding.CodePages: from 8.0.0-rtm.23516.15 to 8.0.0-rtm.23518.26 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23516.9 to 8.0.0-rtm.23519.3 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Threading.AccessControl: from 8.0.0-rtm.23516.15 to 8.0.0-rtm.23518.26 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23516.9 to 8.0.0-rtm.23519.3 (parent: Microsoft.DotNet.Wpf.GitHub) - System.ComponentModel.Composition.Registration: from 8.0.0-rtm.23516.15 to 8.0.0-rtm.23518.26 (parent: Microsoft.Private.Winforms) - System.Drawing.Common: from 8.0.0-rtm.23516.9 to 8.0.0-rtm.23519.3 (parent: Microsoft.DotNet.Wpf.GitHub) --- eng/Version.Details.xml | 148 ++++++++++++++++++++-------------------- eng/Versions.props | 72 +++++++++---------- 2 files changed, 110 insertions(+), 110 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 2f739e9f0..309be5694 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,153 +1,153 @@ - + https://github.com/dotnet/runtime - 567f81e719091bd1ba3c751d49bacee2c6a45e66 + c6e7ebdcb1b99c72990ae9f5ff95a75d5bb0f3ce - + https://github.com/dotnet/winforms - ecdff75cfde7dc49147be791da1ec15a4eee21a3 + 97d784816ef3218f7b861b95b0b43172a0b9a04b - + https://github.com/dotnet/wpf - 895d793b1177bcc3e99917e0047ec65d628e0dde + 9e462778b60af86aa1875973ec8bd8f1bb7cf375 - + https://github.com/dotnet/wpf - 895d793b1177bcc3e99917e0047ec65d628e0dde + 9e462778b60af86aa1875973ec8bd8f1bb7cf375 - + https://github.com/dotnet/runtime - 567f81e719091bd1ba3c751d49bacee2c6a45e66 + c6e7ebdcb1b99c72990ae9f5ff95a75d5bb0f3ce - + https://github.com/dotnet/runtime - 567f81e719091bd1ba3c751d49bacee2c6a45e66 + c6e7ebdcb1b99c72990ae9f5ff95a75d5bb0f3ce - + https://github.com/dotnet/runtime - 567f81e719091bd1ba3c751d49bacee2c6a45e66 + c6e7ebdcb1b99c72990ae9f5ff95a75d5bb0f3ce - + https://github.com/dotnet/winforms - ecdff75cfde7dc49147be791da1ec15a4eee21a3 + 97d784816ef3218f7b861b95b0b43172a0b9a04b - + https://github.com/dotnet/wpf - 895d793b1177bcc3e99917e0047ec65d628e0dde + 9e462778b60af86aa1875973ec8bd8f1bb7cf375 - + https://github.com/dotnet/runtime - 567f81e719091bd1ba3c751d49bacee2c6a45e66 + c6e7ebdcb1b99c72990ae9f5ff95a75d5bb0f3ce - + https://github.com/dotnet/runtime - 567f81e719091bd1ba3c751d49bacee2c6a45e66 + c6e7ebdcb1b99c72990ae9f5ff95a75d5bb0f3ce - + https://github.com/dotnet/runtime - 567f81e719091bd1ba3c751d49bacee2c6a45e66 + c6e7ebdcb1b99c72990ae9f5ff95a75d5bb0f3ce - + https://github.com/dotnet/runtime - 567f81e719091bd1ba3c751d49bacee2c6a45e66 + c6e7ebdcb1b99c72990ae9f5ff95a75d5bb0f3ce - + https://github.com/dotnet/runtime - 567f81e719091bd1ba3c751d49bacee2c6a45e66 + c6e7ebdcb1b99c72990ae9f5ff95a75d5bb0f3ce - + https://github.com/dotnet/runtime - 567f81e719091bd1ba3c751d49bacee2c6a45e66 + c6e7ebdcb1b99c72990ae9f5ff95a75d5bb0f3ce - + https://github.com/dotnet/runtime - 567f81e719091bd1ba3c751d49bacee2c6a45e66 + c6e7ebdcb1b99c72990ae9f5ff95a75d5bb0f3ce - + https://github.com/dotnet/runtime - 567f81e719091bd1ba3c751d49bacee2c6a45e66 + c6e7ebdcb1b99c72990ae9f5ff95a75d5bb0f3ce - + https://github.com/dotnet/runtime - 567f81e719091bd1ba3c751d49bacee2c6a45e66 + c6e7ebdcb1b99c72990ae9f5ff95a75d5bb0f3ce - + https://github.com/dotnet/runtime - 567f81e719091bd1ba3c751d49bacee2c6a45e66 + c6e7ebdcb1b99c72990ae9f5ff95a75d5bb0f3ce - + https://github.com/dotnet/runtime - 567f81e719091bd1ba3c751d49bacee2c6a45e66 + c6e7ebdcb1b99c72990ae9f5ff95a75d5bb0f3ce - + https://github.com/dotnet/runtime - 567f81e719091bd1ba3c751d49bacee2c6a45e66 + c6e7ebdcb1b99c72990ae9f5ff95a75d5bb0f3ce - + https://github.com/dotnet/runtime - 567f81e719091bd1ba3c751d49bacee2c6a45e66 + c6e7ebdcb1b99c72990ae9f5ff95a75d5bb0f3ce - + https://github.com/dotnet/runtime - 567f81e719091bd1ba3c751d49bacee2c6a45e66 + c6e7ebdcb1b99c72990ae9f5ff95a75d5bb0f3ce - + https://github.com/dotnet/runtime - 567f81e719091bd1ba3c751d49bacee2c6a45e66 + c6e7ebdcb1b99c72990ae9f5ff95a75d5bb0f3ce - + https://github.com/dotnet/runtime - 567f81e719091bd1ba3c751d49bacee2c6a45e66 + c6e7ebdcb1b99c72990ae9f5ff95a75d5bb0f3ce - + https://github.com/dotnet/runtime - 567f81e719091bd1ba3c751d49bacee2c6a45e66 + c6e7ebdcb1b99c72990ae9f5ff95a75d5bb0f3ce - + https://github.com/dotnet/runtime - 567f81e719091bd1ba3c751d49bacee2c6a45e66 + c6e7ebdcb1b99c72990ae9f5ff95a75d5bb0f3ce - + https://github.com/dotnet/runtime - 567f81e719091bd1ba3c751d49bacee2c6a45e66 + c6e7ebdcb1b99c72990ae9f5ff95a75d5bb0f3ce - + https://github.com/dotnet/runtime - 567f81e719091bd1ba3c751d49bacee2c6a45e66 + c6e7ebdcb1b99c72990ae9f5ff95a75d5bb0f3ce - + https://github.com/dotnet/runtime - 567f81e719091bd1ba3c751d49bacee2c6a45e66 + c6e7ebdcb1b99c72990ae9f5ff95a75d5bb0f3ce - + https://github.com/dotnet/runtime - 567f81e719091bd1ba3c751d49bacee2c6a45e66 + c6e7ebdcb1b99c72990ae9f5ff95a75d5bb0f3ce - + https://github.com/dotnet/runtime - 567f81e719091bd1ba3c751d49bacee2c6a45e66 + c6e7ebdcb1b99c72990ae9f5ff95a75d5bb0f3ce - + https://github.com/dotnet/runtime - 567f81e719091bd1ba3c751d49bacee2c6a45e66 + c6e7ebdcb1b99c72990ae9f5ff95a75d5bb0f3ce - + https://github.com/dotnet/runtime - 567f81e719091bd1ba3c751d49bacee2c6a45e66 + c6e7ebdcb1b99c72990ae9f5ff95a75d5bb0f3ce - + https://github.com/dotnet/runtime - 567f81e719091bd1ba3c751d49bacee2c6a45e66 + c6e7ebdcb1b99c72990ae9f5ff95a75d5bb0f3ce - + https://github.com/dotnet/runtime - 567f81e719091bd1ba3c751d49bacee2c6a45e66 + c6e7ebdcb1b99c72990ae9f5ff95a75d5bb0f3ce - + https://github.com/dotnet/winforms - ecdff75cfde7dc49147be791da1ec15a4eee21a3 + 97d784816ef3218f7b861b95b0b43172a0b9a04b diff --git a/eng/Versions.props b/eng/Versions.props index eede4048f..7073c07e7 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -25,51 +25,51 @@ 6.2.4 - 8.0.0-rtm.23516.15 - 8.0.0-rtm.23516.15 - 8.0.0-rtm.23516.15 - 8.0.0-rtm.23516.15 + 8.0.0-rtm.23518.26 + 8.0.0-rtm.23518.26 + 8.0.0-rtm.23518.26 + 8.0.0-rtm.23518.26 5.0.0 - 8.0.0-rtm.23516.15 - 8.0.0-rtm.23516.15 - 8.0.0-rtm.23516.15 - 8.0.0-rtm.23516.15 - 8.0.0-rtm.23516.15 - 8.0.0-rtm.23516.15 - 8.0.0-rtm.23516.15 - 8.0.0-rtm.23516.15 - 8.0.0-rtm.23516.15 - 8.0.0-rtm.23516.15 - 8.0.0-rtm.23516.15 - 8.0.0-rtm.23516.15 + 8.0.0-rtm.23518.26 + 8.0.0-rtm.23518.26 + 8.0.0-rtm.23518.26 + 8.0.0-rtm.23518.26 + 8.0.0-rtm.23518.26 + 8.0.0-rtm.23518.26 + 8.0.0-rtm.23518.26 + 8.0.0-rtm.23518.26 + 8.0.0-rtm.23518.26 + 8.0.0-rtm.23518.26 + 8.0.0-rtm.23518.26 + 8.0.0-rtm.23518.26 5.0.0 - 8.0.0-rtm.23516.15 + 8.0.0-rtm.23518.26 5.0.0 - 8.0.0-rtm.23516.15 - 8.0.0-rtm.23516.15 - 8.0.0-rtm.23516.15 - 8.0.0-rtm.23516.15 + 8.0.0-rtm.23518.26 + 8.0.0-rtm.23518.26 + 8.0.0-rtm.23518.26 + 8.0.0-rtm.23518.26 6.0.0 5.0.0 - 8.0.0-rtm.23516.15 - 8.0.0-rtm.23516.15 - 8.0.0-rtm.23516.15 - 8.0.0-rtm.23516.15 + 8.0.0-rtm.23518.26 + 8.0.0-rtm.23518.26 + 8.0.0-rtm.23518.26 + 8.0.0-rtm.23518.26 5.0.0 - 8.0.0-rtm.23516.15 - 8.0.0-rtm.23516.15 - 8.0.0-rtm.23516.15 - 8.0.0-rtm.23516.15 - 8.0.0-rtm.23516.15 - 8.0.0-rtm.23516.15 + 8.0.0-rtm.23518.26 + 8.0.0-rtm.23518.26 + 8.0.0-rtm.23518.26 + 8.0.0-rtm.23518.26 + 8.0.0-rtm.23518.26 + 8.0.0-rtm.23518.26 4.10.0 - 8.0.0-rtm.23516.9 - 8.0.0-rtm.23516.9 - 8.0.0-rtm.23516.9 + 8.0.0-rtm.23519.3 + 8.0.0-rtm.23519.3 + 8.0.0-rtm.23519.3 - 8.0.0-rtm.23519.3 - 8.0.0-rtm.23519.3 + 8.0.0-rtm.23519.10 + 8.0.0-rtm.23519.10 From a317223b1af875883b26baa92a3a7248a1fa6704 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Fri, 20 Oct 2023 01:10:24 +0000 Subject: [PATCH 077/222] [release/8.0] Update dependencies from dotnet/wpf (#3906) [release/8.0] Update dependencies from dotnet/wpf - Coherency Updates: - Microsoft.Private.Winforms: from 8.0.0-rtm.23519.3 to 8.0.0-rtm.23519.9 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rtm.23519.3 to 8.0.0-rtm.23519.9 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rtm.23519.3 to 8.0.0-rtm.23519.9 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rtm.23519.3 to 8.0.0-rtm.23519.9 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Dotnet.WinForms.ProjectTemplates: from 8.0.0-rtm.23519.3 to 8.0.0-rtm.23519.9 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rtm.23519.3 to 8.0.0-rtm.23519.9 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rtm.23519.3 to 8.0.0-rtm.23519.9 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rtm.23519.3 to 8.0.0-rtm.23519.9 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rtm.23519.3 to 8.0.0-rtm.23519.9 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rtm.23519.3 to 8.0.0-rtm.23519.9 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rtm.23519.3 to 8.0.0-rtm.23519.9 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rtm.23519.3 to 8.0.0-rtm.23519.9 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rtm.23519.3 to 8.0.0-rtm.23519.9 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rtm.23519.3 to 8.0.0-rtm.23519.9 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rtm.23519.3 to 8.0.0-rtm.23519.9 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rtm.23519.3 to 8.0.0-rtm.23519.9 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rtm.23519.3 to 8.0.0-rtm.23519.9 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rtm.23519.3 to 8.0.0-rtm.23519.9 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rtm.23519.3 to 8.0.0-rtm.23519.9 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rtm.23519.3 to 8.0.0-rtm.23519.9 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rtm.23519.3 to 8.0.0-rtm.23519.9 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rtm.23519.3 to 8.0.0-rtm.23519.9 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rtm.23519.3 to 8.0.0-rtm.23519.9 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rtm.23519.3 to 8.0.0-rtm.23519.9 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rtm.23519.3 to 8.0.0-rtm.23519.9 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rtm.23519.3 to 8.0.0-rtm.23519.9 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rtm.23519.3 to 8.0.0-rtm.23519.9 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rtm.23519.3 to 8.0.0-rtm.23519.9 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rtm.23519.3 to 8.0.0-rtm.23519.9 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rtm.23519.3 to 8.0.0-rtm.23519.9 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rtm.23519.3 to 8.0.0-rtm.23519.9 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rtm.23519.3 to 8.0.0-rtm.23519.9 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Drawing.Common: from 8.0.0-rtm.23519.3 to 8.0.0-rtm.23519.9 (parent: Microsoft.DotNet.Wpf.GitHub) --- eng/Version.Details.xml | 24 ++++++++++++------------ eng/Versions.props | 10 +++++----- 2 files changed, 17 insertions(+), 17 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 309be5694..284a8a1f6 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -5,17 +5,17 @@ https://github.com/dotnet/runtime c6e7ebdcb1b99c72990ae9f5ff95a75d5bb0f3ce - + https://github.com/dotnet/winforms - 97d784816ef3218f7b861b95b0b43172a0b9a04b + ef349ceeceae110cf8caf9d560835650e19acf6d - + https://github.com/dotnet/wpf - 9e462778b60af86aa1875973ec8bd8f1bb7cf375 + da674dc7850e0363e1056b7c0bab29e0ca7ed094 - + https://github.com/dotnet/wpf - 9e462778b60af86aa1875973ec8bd8f1bb7cf375 + da674dc7850e0363e1056b7c0bab29e0ca7ed094 https://github.com/dotnet/runtime @@ -29,13 +29,13 @@ https://github.com/dotnet/runtime c6e7ebdcb1b99c72990ae9f5ff95a75d5bb0f3ce - + https://github.com/dotnet/winforms - 97d784816ef3218f7b861b95b0b43172a0b9a04b + ef349ceeceae110cf8caf9d560835650e19acf6d - + https://github.com/dotnet/wpf - 9e462778b60af86aa1875973ec8bd8f1bb7cf375 + da674dc7850e0363e1056b7c0bab29e0ca7ed094 https://github.com/dotnet/runtime @@ -145,9 +145,9 @@ https://github.com/dotnet/runtime c6e7ebdcb1b99c72990ae9f5ff95a75d5bb0f3ce - + https://github.com/dotnet/winforms - 97d784816ef3218f7b861b95b0b43172a0b9a04b + ef349ceeceae110cf8caf9d560835650e19acf6d diff --git a/eng/Versions.props b/eng/Versions.props index 7073c07e7..5689bc11e 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -65,11 +65,11 @@ 4.10.0 - 8.0.0-rtm.23519.3 - 8.0.0-rtm.23519.3 - 8.0.0-rtm.23519.3 + 8.0.0-rtm.23519.9 + 8.0.0-rtm.23519.9 + 8.0.0-rtm.23519.9 - 8.0.0-rtm.23519.10 - 8.0.0-rtm.23519.10 + 8.0.0-rtm.23519.13 + 8.0.0-rtm.23519.13 From cc74cb0182a9438c605f58433c845b6e949b5ea2 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Sat, 21 Oct 2023 01:57:44 +0000 Subject: [PATCH 078/222] [release/8.0] Update dependencies from dotnet/wpf (#3909) [release/8.0] Update dependencies from dotnet/wpf - Coherency Updates: - Microsoft.Private.Winforms: from 8.0.0-rtm.23519.9 to 8.0.0-rtm.23520.10 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Internal.Runtime.WindowsDesktop.Transport: from 8.0.0-rtm.23518.26 to 8.0.0-rtm.23519.13 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23519.9 to 8.0.0-rtm.23520.10 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.NETCore.App.Ref: from 8.0.0-rtm.23518.26 to 8.0.0-rtm.23519.13 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23519.9 to 8.0.0-rtm.23520.10 (parent: Microsoft.DotNet.Wpf.GitHub) - VS.Redist.Common.NetCore.SharedFramework.x64.8.0: from 8.0.0-rtm.23518.26 to 8.0.0-rtm.23519.13 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23519.9 to 8.0.0-rtm.23520.10 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.NETCore.App.Runtime.win-x64: from 8.0.0-rtm.23518.26 to 8.0.0-rtm.23519.13 (parent: Microsoft.Private.Winforms) - Microsoft.Dotnet.WinForms.ProjectTemplates: from 8.0.0-rtm.23519.9 to 8.0.0-rtm.23520.10 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rtm.23519.9 to 8.0.0-rtm.23520.10 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Win32.Registry.AccessControl: from 8.0.0-rtm.23518.26 to 8.0.0-rtm.23519.13 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23519.9 to 8.0.0-rtm.23520.10 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Win32.SystemEvents: from 8.0.0-rtm.23518.26 to 8.0.0-rtm.23519.13 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23519.9 to 8.0.0-rtm.23520.10 (parent: Microsoft.DotNet.Wpf.GitHub) - System.CodeDom: from 8.0.0-rtm.23518.26 to 8.0.0-rtm.23519.13 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23519.9 to 8.0.0-rtm.23520.10 (parent: Microsoft.DotNet.Wpf.GitHub) - System.ComponentModel.Composition: from 8.0.0-rtm.23518.26 to 8.0.0-rtm.23519.13 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23519.9 to 8.0.0-rtm.23520.10 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Configuration.ConfigurationManager: from 8.0.0-rtm.23518.26 to 8.0.0-rtm.23519.13 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23519.9 to 8.0.0-rtm.23520.10 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Data.Odbc: from 8.0.0-rtm.23518.26 to 8.0.0-rtm.23519.13 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23519.9 to 8.0.0-rtm.23520.10 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Data.OleDb: from 8.0.0-rtm.23518.26 to 8.0.0-rtm.23519.13 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23519.9 to 8.0.0-rtm.23520.10 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Diagnostics.EventLog: from 8.0.0-rtm.23518.26 to 8.0.0-rtm.23519.13 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23519.9 to 8.0.0-rtm.23520.10 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Diagnostics.PerformanceCounter: from 8.0.0-rtm.23518.26 to 8.0.0-rtm.23519.13 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23519.9 to 8.0.0-rtm.23520.10 (parent: Microsoft.DotNet.Wpf.GitHub) - System.DirectoryServices.AccountManagement: from 8.0.0-rtm.23518.26 to 8.0.0-rtm.23519.13 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23519.9 to 8.0.0-rtm.23520.10 (parent: Microsoft.DotNet.Wpf.GitHub) - System.DirectoryServices.Protocols: from 8.0.0-rtm.23518.26 to 8.0.0-rtm.23519.13 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23519.9 to 8.0.0-rtm.23520.10 (parent: Microsoft.DotNet.Wpf.GitHub) - System.DirectoryServices: from 8.0.0-rtm.23518.26 to 8.0.0-rtm.23519.13 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23519.9 to 8.0.0-rtm.23520.10 (parent: Microsoft.DotNet.Wpf.GitHub) - System.IO.Packaging: from 8.0.0-rtm.23518.26 to 8.0.0-rtm.23519.13 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23519.9 to 8.0.0-rtm.23520.10 (parent: Microsoft.DotNet.Wpf.GitHub) - System.IO.Ports: from 8.0.0-rtm.23518.26 to 8.0.0-rtm.23519.13 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23519.9 to 8.0.0-rtm.23520.10 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Management: from 8.0.0-rtm.23518.26 to 8.0.0-rtm.23519.13 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23519.9 to 8.0.0-rtm.23520.10 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Reflection.Context: from 8.0.0-rtm.23518.26 to 8.0.0-rtm.23519.13 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23519.9 to 8.0.0-rtm.23520.10 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Runtime.Caching: from 8.0.0-rtm.23518.26 to 8.0.0-rtm.23519.13 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23519.9 to 8.0.0-rtm.23520.10 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Security.Cryptography.Pkcs: from 8.0.0-rtm.23518.26 to 8.0.0-rtm.23519.13 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23519.9 to 8.0.0-rtm.23520.10 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Security.Cryptography.ProtectedData: from 8.0.0-rtm.23518.26 to 8.0.0-rtm.23519.13 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23519.9 to 8.0.0-rtm.23520.10 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Security.Cryptography.Xml: from 8.0.0-rtm.23518.26 to 8.0.0-rtm.23519.13 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23519.9 to 8.0.0-rtm.23520.10 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Security.Permissions: from 8.0.0-rtm.23518.26 to 8.0.0-rtm.23519.13 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23519.9 to 8.0.0-rtm.23520.10 (parent: Microsoft.DotNet.Wpf.GitHub) - System.ServiceModel.Syndication: from 8.0.0-rtm.23518.26 to 8.0.0-rtm.23519.13 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23519.9 to 8.0.0-rtm.23520.10 (parent: Microsoft.DotNet.Wpf.GitHub) - System.ServiceProcess.ServiceController: from 8.0.0-rtm.23518.26 to 8.0.0-rtm.23519.13 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23519.9 to 8.0.0-rtm.23520.10 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Speech: from 8.0.0-rtm.23518.26 to 8.0.0-rtm.23519.13 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23519.9 to 8.0.0-rtm.23520.10 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Text.Encoding.CodePages: from 8.0.0-rtm.23518.26 to 8.0.0-rtm.23519.13 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23519.9 to 8.0.0-rtm.23520.10 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Threading.AccessControl: from 8.0.0-rtm.23518.26 to 8.0.0-rtm.23519.13 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23519.9 to 8.0.0-rtm.23520.10 (parent: Microsoft.DotNet.Wpf.GitHub) - System.ComponentModel.Composition.Registration: from 8.0.0-rtm.23518.26 to 8.0.0-rtm.23519.13 (parent: Microsoft.Private.Winforms) - System.Drawing.Common: from 8.0.0-rtm.23519.9 to 8.0.0-rtm.23520.10 (parent: Microsoft.DotNet.Wpf.GitHub) --- eng/Version.Details.xml | 148 ++++++++++++++++++++-------------------- eng/Versions.props | 72 +++++++++---------- 2 files changed, 110 insertions(+), 110 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 284a8a1f6..a9be686c6 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,153 +1,153 @@ - + https://github.com/dotnet/runtime - c6e7ebdcb1b99c72990ae9f5ff95a75d5bb0f3ce + 86c949374ed95989e7f1b81cb70b1e8b09bb3251 - + https://github.com/dotnet/winforms - ef349ceeceae110cf8caf9d560835650e19acf6d + 40fd54e4207776669c94ccb900e70860bd10a525 - + https://github.com/dotnet/wpf - da674dc7850e0363e1056b7c0bab29e0ca7ed094 + 45384152f5f63c130160b1d346c5b7db8ce10221 - + https://github.com/dotnet/wpf - da674dc7850e0363e1056b7c0bab29e0ca7ed094 + 45384152f5f63c130160b1d346c5b7db8ce10221 - + https://github.com/dotnet/runtime - c6e7ebdcb1b99c72990ae9f5ff95a75d5bb0f3ce + 86c949374ed95989e7f1b81cb70b1e8b09bb3251 - + https://github.com/dotnet/runtime - c6e7ebdcb1b99c72990ae9f5ff95a75d5bb0f3ce + 86c949374ed95989e7f1b81cb70b1e8b09bb3251 - + https://github.com/dotnet/runtime - c6e7ebdcb1b99c72990ae9f5ff95a75d5bb0f3ce + 86c949374ed95989e7f1b81cb70b1e8b09bb3251 - + https://github.com/dotnet/winforms - ef349ceeceae110cf8caf9d560835650e19acf6d + 40fd54e4207776669c94ccb900e70860bd10a525 - + https://github.com/dotnet/wpf - da674dc7850e0363e1056b7c0bab29e0ca7ed094 + 45384152f5f63c130160b1d346c5b7db8ce10221 - + https://github.com/dotnet/runtime - c6e7ebdcb1b99c72990ae9f5ff95a75d5bb0f3ce + 86c949374ed95989e7f1b81cb70b1e8b09bb3251 - + https://github.com/dotnet/runtime - c6e7ebdcb1b99c72990ae9f5ff95a75d5bb0f3ce + 86c949374ed95989e7f1b81cb70b1e8b09bb3251 - + https://github.com/dotnet/runtime - c6e7ebdcb1b99c72990ae9f5ff95a75d5bb0f3ce + 86c949374ed95989e7f1b81cb70b1e8b09bb3251 - + https://github.com/dotnet/runtime - c6e7ebdcb1b99c72990ae9f5ff95a75d5bb0f3ce + 86c949374ed95989e7f1b81cb70b1e8b09bb3251 - + https://github.com/dotnet/runtime - c6e7ebdcb1b99c72990ae9f5ff95a75d5bb0f3ce + 86c949374ed95989e7f1b81cb70b1e8b09bb3251 - + https://github.com/dotnet/runtime - c6e7ebdcb1b99c72990ae9f5ff95a75d5bb0f3ce + 86c949374ed95989e7f1b81cb70b1e8b09bb3251 - + https://github.com/dotnet/runtime - c6e7ebdcb1b99c72990ae9f5ff95a75d5bb0f3ce + 86c949374ed95989e7f1b81cb70b1e8b09bb3251 - + https://github.com/dotnet/runtime - c6e7ebdcb1b99c72990ae9f5ff95a75d5bb0f3ce + 86c949374ed95989e7f1b81cb70b1e8b09bb3251 - + https://github.com/dotnet/runtime - c6e7ebdcb1b99c72990ae9f5ff95a75d5bb0f3ce + 86c949374ed95989e7f1b81cb70b1e8b09bb3251 - + https://github.com/dotnet/runtime - c6e7ebdcb1b99c72990ae9f5ff95a75d5bb0f3ce + 86c949374ed95989e7f1b81cb70b1e8b09bb3251 - + https://github.com/dotnet/runtime - c6e7ebdcb1b99c72990ae9f5ff95a75d5bb0f3ce + 86c949374ed95989e7f1b81cb70b1e8b09bb3251 - + https://github.com/dotnet/runtime - c6e7ebdcb1b99c72990ae9f5ff95a75d5bb0f3ce + 86c949374ed95989e7f1b81cb70b1e8b09bb3251 - + https://github.com/dotnet/runtime - c6e7ebdcb1b99c72990ae9f5ff95a75d5bb0f3ce + 86c949374ed95989e7f1b81cb70b1e8b09bb3251 - + https://github.com/dotnet/runtime - c6e7ebdcb1b99c72990ae9f5ff95a75d5bb0f3ce + 86c949374ed95989e7f1b81cb70b1e8b09bb3251 - + https://github.com/dotnet/runtime - c6e7ebdcb1b99c72990ae9f5ff95a75d5bb0f3ce + 86c949374ed95989e7f1b81cb70b1e8b09bb3251 - + https://github.com/dotnet/runtime - c6e7ebdcb1b99c72990ae9f5ff95a75d5bb0f3ce + 86c949374ed95989e7f1b81cb70b1e8b09bb3251 - + https://github.com/dotnet/runtime - c6e7ebdcb1b99c72990ae9f5ff95a75d5bb0f3ce + 86c949374ed95989e7f1b81cb70b1e8b09bb3251 - + https://github.com/dotnet/runtime - c6e7ebdcb1b99c72990ae9f5ff95a75d5bb0f3ce + 86c949374ed95989e7f1b81cb70b1e8b09bb3251 - + https://github.com/dotnet/runtime - c6e7ebdcb1b99c72990ae9f5ff95a75d5bb0f3ce + 86c949374ed95989e7f1b81cb70b1e8b09bb3251 - + https://github.com/dotnet/runtime - c6e7ebdcb1b99c72990ae9f5ff95a75d5bb0f3ce + 86c949374ed95989e7f1b81cb70b1e8b09bb3251 - + https://github.com/dotnet/runtime - c6e7ebdcb1b99c72990ae9f5ff95a75d5bb0f3ce + 86c949374ed95989e7f1b81cb70b1e8b09bb3251 - + https://github.com/dotnet/runtime - c6e7ebdcb1b99c72990ae9f5ff95a75d5bb0f3ce + 86c949374ed95989e7f1b81cb70b1e8b09bb3251 - + https://github.com/dotnet/runtime - c6e7ebdcb1b99c72990ae9f5ff95a75d5bb0f3ce + 86c949374ed95989e7f1b81cb70b1e8b09bb3251 - + https://github.com/dotnet/runtime - c6e7ebdcb1b99c72990ae9f5ff95a75d5bb0f3ce + 86c949374ed95989e7f1b81cb70b1e8b09bb3251 - + https://github.com/dotnet/runtime - c6e7ebdcb1b99c72990ae9f5ff95a75d5bb0f3ce + 86c949374ed95989e7f1b81cb70b1e8b09bb3251 - + https://github.com/dotnet/runtime - c6e7ebdcb1b99c72990ae9f5ff95a75d5bb0f3ce + 86c949374ed95989e7f1b81cb70b1e8b09bb3251 - + https://github.com/dotnet/runtime - c6e7ebdcb1b99c72990ae9f5ff95a75d5bb0f3ce + 86c949374ed95989e7f1b81cb70b1e8b09bb3251 - + https://github.com/dotnet/winforms - ef349ceeceae110cf8caf9d560835650e19acf6d + 40fd54e4207776669c94ccb900e70860bd10a525 diff --git a/eng/Versions.props b/eng/Versions.props index 5689bc11e..200289803 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -25,51 +25,51 @@ 6.2.4 - 8.0.0-rtm.23518.26 - 8.0.0-rtm.23518.26 - 8.0.0-rtm.23518.26 - 8.0.0-rtm.23518.26 + 8.0.0-rtm.23519.13 + 8.0.0-rtm.23519.13 + 8.0.0-rtm.23519.13 + 8.0.0-rtm.23519.13 5.0.0 - 8.0.0-rtm.23518.26 - 8.0.0-rtm.23518.26 - 8.0.0-rtm.23518.26 - 8.0.0-rtm.23518.26 - 8.0.0-rtm.23518.26 - 8.0.0-rtm.23518.26 - 8.0.0-rtm.23518.26 - 8.0.0-rtm.23518.26 - 8.0.0-rtm.23518.26 - 8.0.0-rtm.23518.26 - 8.0.0-rtm.23518.26 - 8.0.0-rtm.23518.26 + 8.0.0-rtm.23519.13 + 8.0.0-rtm.23519.13 + 8.0.0-rtm.23519.13 + 8.0.0-rtm.23519.13 + 8.0.0-rtm.23519.13 + 8.0.0-rtm.23519.13 + 8.0.0-rtm.23519.13 + 8.0.0-rtm.23519.13 + 8.0.0-rtm.23519.13 + 8.0.0-rtm.23519.13 + 8.0.0-rtm.23519.13 + 8.0.0-rtm.23519.13 5.0.0 - 8.0.0-rtm.23518.26 + 8.0.0-rtm.23519.13 5.0.0 - 8.0.0-rtm.23518.26 - 8.0.0-rtm.23518.26 - 8.0.0-rtm.23518.26 - 8.0.0-rtm.23518.26 + 8.0.0-rtm.23519.13 + 8.0.0-rtm.23519.13 + 8.0.0-rtm.23519.13 + 8.0.0-rtm.23519.13 6.0.0 5.0.0 - 8.0.0-rtm.23518.26 - 8.0.0-rtm.23518.26 - 8.0.0-rtm.23518.26 - 8.0.0-rtm.23518.26 + 8.0.0-rtm.23519.13 + 8.0.0-rtm.23519.13 + 8.0.0-rtm.23519.13 + 8.0.0-rtm.23519.13 5.0.0 - 8.0.0-rtm.23518.26 - 8.0.0-rtm.23518.26 - 8.0.0-rtm.23518.26 - 8.0.0-rtm.23518.26 - 8.0.0-rtm.23518.26 - 8.0.0-rtm.23518.26 + 8.0.0-rtm.23519.13 + 8.0.0-rtm.23519.13 + 8.0.0-rtm.23519.13 + 8.0.0-rtm.23519.13 + 8.0.0-rtm.23519.13 + 8.0.0-rtm.23519.13 4.10.0 - 8.0.0-rtm.23519.9 - 8.0.0-rtm.23519.9 - 8.0.0-rtm.23519.9 + 8.0.0-rtm.23520.10 + 8.0.0-rtm.23520.10 + 8.0.0-rtm.23520.10 - 8.0.0-rtm.23519.13 - 8.0.0-rtm.23519.13 + 8.0.0-rtm.23520.3 + 8.0.0-rtm.23520.3 From 26892d59bec36dccd2d0cf35e97bf6105d915088 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Sat, 21 Oct 2023 04:01:21 +0000 Subject: [PATCH 079/222] [release/8.0] Update dependencies from dotnet/wpf (#3910) [release/8.0] Update dependencies from dotnet/wpf - Coherency Updates: - Microsoft.Private.Winforms: from 8.0.0-rtm.23520.10 to 8.0.0-rtm.23520.12 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Internal.Runtime.WindowsDesktop.Transport: from 8.0.0-rtm.23519.13 to 8.0.0-rtm.23520.9 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23520.10 to 8.0.0-rtm.23520.12 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.NETCore.App.Ref: from 8.0.0-rtm.23519.13 to 8.0.0-rtm.23520.9 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23520.10 to 8.0.0-rtm.23520.12 (parent: Microsoft.DotNet.Wpf.GitHub) - VS.Redist.Common.NetCore.SharedFramework.x64.8.0: from 8.0.0-rtm.23519.13 to 8.0.0-rtm.23520.9 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23520.10 to 8.0.0-rtm.23520.12 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.NETCore.App.Runtime.win-x64: from 8.0.0-rtm.23519.13 to 8.0.0-rtm.23520.9 (parent: Microsoft.Private.Winforms) - Microsoft.Dotnet.WinForms.ProjectTemplates: from 8.0.0-rtm.23520.10 to 8.0.0-rtm.23520.12 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rtm.23520.10 to 8.0.0-rtm.23520.12 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Win32.Registry.AccessControl: from 8.0.0-rtm.23519.13 to 8.0.0-rtm.23520.9 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23520.10 to 8.0.0-rtm.23520.12 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Win32.SystemEvents: from 8.0.0-rtm.23519.13 to 8.0.0-rtm.23520.9 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23520.10 to 8.0.0-rtm.23520.12 (parent: Microsoft.DotNet.Wpf.GitHub) - System.CodeDom: from 8.0.0-rtm.23519.13 to 8.0.0-rtm.23520.9 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23520.10 to 8.0.0-rtm.23520.12 (parent: Microsoft.DotNet.Wpf.GitHub) - System.ComponentModel.Composition: from 8.0.0-rtm.23519.13 to 8.0.0-rtm.23520.9 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23520.10 to 8.0.0-rtm.23520.12 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Configuration.ConfigurationManager: from 8.0.0-rtm.23519.13 to 8.0.0-rtm.23520.9 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23520.10 to 8.0.0-rtm.23520.12 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Data.Odbc: from 8.0.0-rtm.23519.13 to 8.0.0-rtm.23520.9 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23520.10 to 8.0.0-rtm.23520.12 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Data.OleDb: from 8.0.0-rtm.23519.13 to 8.0.0-rtm.23520.9 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23520.10 to 8.0.0-rtm.23520.12 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Diagnostics.EventLog: from 8.0.0-rtm.23519.13 to 8.0.0-rtm.23520.9 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23520.10 to 8.0.0-rtm.23520.12 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Diagnostics.PerformanceCounter: from 8.0.0-rtm.23519.13 to 8.0.0-rtm.23520.9 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23520.10 to 8.0.0-rtm.23520.12 (parent: Microsoft.DotNet.Wpf.GitHub) - System.DirectoryServices.AccountManagement: from 8.0.0-rtm.23519.13 to 8.0.0-rtm.23520.9 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23520.10 to 8.0.0-rtm.23520.12 (parent: Microsoft.DotNet.Wpf.GitHub) - System.DirectoryServices.Protocols: from 8.0.0-rtm.23519.13 to 8.0.0-rtm.23520.9 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23520.10 to 8.0.0-rtm.23520.12 (parent: Microsoft.DotNet.Wpf.GitHub) - System.DirectoryServices: from 8.0.0-rtm.23519.13 to 8.0.0-rtm.23520.9 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23520.10 to 8.0.0-rtm.23520.12 (parent: Microsoft.DotNet.Wpf.GitHub) - System.IO.Packaging: from 8.0.0-rtm.23519.13 to 8.0.0-rtm.23520.9 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23520.10 to 8.0.0-rtm.23520.12 (parent: Microsoft.DotNet.Wpf.GitHub) - System.IO.Ports: from 8.0.0-rtm.23519.13 to 8.0.0-rtm.23520.9 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23520.10 to 8.0.0-rtm.23520.12 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Management: from 8.0.0-rtm.23519.13 to 8.0.0-rtm.23520.9 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23520.10 to 8.0.0-rtm.23520.12 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Reflection.Context: from 8.0.0-rtm.23519.13 to 8.0.0-rtm.23520.9 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23520.10 to 8.0.0-rtm.23520.12 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Runtime.Caching: from 8.0.0-rtm.23519.13 to 8.0.0-rtm.23520.9 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23520.10 to 8.0.0-rtm.23520.12 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Security.Cryptography.Pkcs: from 8.0.0-rtm.23519.13 to 8.0.0-rtm.23520.9 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23520.10 to 8.0.0-rtm.23520.12 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Security.Cryptography.ProtectedData: from 8.0.0-rtm.23519.13 to 8.0.0-rtm.23520.9 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23520.10 to 8.0.0-rtm.23520.12 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Security.Cryptography.Xml: from 8.0.0-rtm.23519.13 to 8.0.0-rtm.23520.9 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23520.10 to 8.0.0-rtm.23520.12 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Security.Permissions: from 8.0.0-rtm.23519.13 to 8.0.0-rtm.23520.9 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23520.10 to 8.0.0-rtm.23520.12 (parent: Microsoft.DotNet.Wpf.GitHub) - System.ServiceModel.Syndication: from 8.0.0-rtm.23519.13 to 8.0.0-rtm.23520.9 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23520.10 to 8.0.0-rtm.23520.12 (parent: Microsoft.DotNet.Wpf.GitHub) - System.ServiceProcess.ServiceController: from 8.0.0-rtm.23519.13 to 8.0.0-rtm.23520.9 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23520.10 to 8.0.0-rtm.23520.12 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Speech: from 8.0.0-rtm.23519.13 to 8.0.0-rtm.23520.9 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23520.10 to 8.0.0-rtm.23520.12 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Text.Encoding.CodePages: from 8.0.0-rtm.23519.13 to 8.0.0-rtm.23520.9 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23520.10 to 8.0.0-rtm.23520.12 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Threading.AccessControl: from 8.0.0-rtm.23519.13 to 8.0.0-rtm.23520.9 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23520.10 to 8.0.0-rtm.23520.12 (parent: Microsoft.DotNet.Wpf.GitHub) - System.ComponentModel.Composition.Registration: from 8.0.0-rtm.23519.13 to 8.0.0-rtm.23520.9 (parent: Microsoft.Private.Winforms) - System.Drawing.Common: from 8.0.0-rtm.23520.10 to 8.0.0-rtm.23520.12 (parent: Microsoft.DotNet.Wpf.GitHub) --- eng/Version.Details.xml | 148 ++++++++++++++++++++-------------------- eng/Versions.props | 72 +++++++++---------- 2 files changed, 110 insertions(+), 110 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index a9be686c6..042be1617 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,153 +1,153 @@ - + https://github.com/dotnet/runtime - 86c949374ed95989e7f1b81cb70b1e8b09bb3251 + 07f535a74924b41ea4137ccb67cac73f1fbc1133 - + https://github.com/dotnet/winforms - 40fd54e4207776669c94ccb900e70860bd10a525 + 43db5dc85dc52cf3d0d3a7164ab930c591a353e7 - + https://github.com/dotnet/wpf - 45384152f5f63c130160b1d346c5b7db8ce10221 + f58d6d3fa3362cd33b29172bd7d6212f3e0020b7 - + https://github.com/dotnet/wpf - 45384152f5f63c130160b1d346c5b7db8ce10221 + f58d6d3fa3362cd33b29172bd7d6212f3e0020b7 - + https://github.com/dotnet/runtime - 86c949374ed95989e7f1b81cb70b1e8b09bb3251 + 07f535a74924b41ea4137ccb67cac73f1fbc1133 - + https://github.com/dotnet/runtime - 86c949374ed95989e7f1b81cb70b1e8b09bb3251 + 07f535a74924b41ea4137ccb67cac73f1fbc1133 - + https://github.com/dotnet/runtime - 86c949374ed95989e7f1b81cb70b1e8b09bb3251 + 07f535a74924b41ea4137ccb67cac73f1fbc1133 - + https://github.com/dotnet/winforms - 40fd54e4207776669c94ccb900e70860bd10a525 + 43db5dc85dc52cf3d0d3a7164ab930c591a353e7 - + https://github.com/dotnet/wpf - 45384152f5f63c130160b1d346c5b7db8ce10221 + f58d6d3fa3362cd33b29172bd7d6212f3e0020b7 - + https://github.com/dotnet/runtime - 86c949374ed95989e7f1b81cb70b1e8b09bb3251 + 07f535a74924b41ea4137ccb67cac73f1fbc1133 - + https://github.com/dotnet/runtime - 86c949374ed95989e7f1b81cb70b1e8b09bb3251 + 07f535a74924b41ea4137ccb67cac73f1fbc1133 - + https://github.com/dotnet/runtime - 86c949374ed95989e7f1b81cb70b1e8b09bb3251 + 07f535a74924b41ea4137ccb67cac73f1fbc1133 - + https://github.com/dotnet/runtime - 86c949374ed95989e7f1b81cb70b1e8b09bb3251 + 07f535a74924b41ea4137ccb67cac73f1fbc1133 - + https://github.com/dotnet/runtime - 86c949374ed95989e7f1b81cb70b1e8b09bb3251 + 07f535a74924b41ea4137ccb67cac73f1fbc1133 - + https://github.com/dotnet/runtime - 86c949374ed95989e7f1b81cb70b1e8b09bb3251 + 07f535a74924b41ea4137ccb67cac73f1fbc1133 - + https://github.com/dotnet/runtime - 86c949374ed95989e7f1b81cb70b1e8b09bb3251 + 07f535a74924b41ea4137ccb67cac73f1fbc1133 - + https://github.com/dotnet/runtime - 86c949374ed95989e7f1b81cb70b1e8b09bb3251 + 07f535a74924b41ea4137ccb67cac73f1fbc1133 - + https://github.com/dotnet/runtime - 86c949374ed95989e7f1b81cb70b1e8b09bb3251 + 07f535a74924b41ea4137ccb67cac73f1fbc1133 - + https://github.com/dotnet/runtime - 86c949374ed95989e7f1b81cb70b1e8b09bb3251 + 07f535a74924b41ea4137ccb67cac73f1fbc1133 - + https://github.com/dotnet/runtime - 86c949374ed95989e7f1b81cb70b1e8b09bb3251 + 07f535a74924b41ea4137ccb67cac73f1fbc1133 - + https://github.com/dotnet/runtime - 86c949374ed95989e7f1b81cb70b1e8b09bb3251 + 07f535a74924b41ea4137ccb67cac73f1fbc1133 - + https://github.com/dotnet/runtime - 86c949374ed95989e7f1b81cb70b1e8b09bb3251 + 07f535a74924b41ea4137ccb67cac73f1fbc1133 - + https://github.com/dotnet/runtime - 86c949374ed95989e7f1b81cb70b1e8b09bb3251 + 07f535a74924b41ea4137ccb67cac73f1fbc1133 - + https://github.com/dotnet/runtime - 86c949374ed95989e7f1b81cb70b1e8b09bb3251 + 07f535a74924b41ea4137ccb67cac73f1fbc1133 - + https://github.com/dotnet/runtime - 86c949374ed95989e7f1b81cb70b1e8b09bb3251 + 07f535a74924b41ea4137ccb67cac73f1fbc1133 - + https://github.com/dotnet/runtime - 86c949374ed95989e7f1b81cb70b1e8b09bb3251 + 07f535a74924b41ea4137ccb67cac73f1fbc1133 - + https://github.com/dotnet/runtime - 86c949374ed95989e7f1b81cb70b1e8b09bb3251 + 07f535a74924b41ea4137ccb67cac73f1fbc1133 - + https://github.com/dotnet/runtime - 86c949374ed95989e7f1b81cb70b1e8b09bb3251 + 07f535a74924b41ea4137ccb67cac73f1fbc1133 - + https://github.com/dotnet/runtime - 86c949374ed95989e7f1b81cb70b1e8b09bb3251 + 07f535a74924b41ea4137ccb67cac73f1fbc1133 - + https://github.com/dotnet/runtime - 86c949374ed95989e7f1b81cb70b1e8b09bb3251 + 07f535a74924b41ea4137ccb67cac73f1fbc1133 - + https://github.com/dotnet/runtime - 86c949374ed95989e7f1b81cb70b1e8b09bb3251 + 07f535a74924b41ea4137ccb67cac73f1fbc1133 - + https://github.com/dotnet/runtime - 86c949374ed95989e7f1b81cb70b1e8b09bb3251 + 07f535a74924b41ea4137ccb67cac73f1fbc1133 - + https://github.com/dotnet/runtime - 86c949374ed95989e7f1b81cb70b1e8b09bb3251 + 07f535a74924b41ea4137ccb67cac73f1fbc1133 - + https://github.com/dotnet/runtime - 86c949374ed95989e7f1b81cb70b1e8b09bb3251 + 07f535a74924b41ea4137ccb67cac73f1fbc1133 - + https://github.com/dotnet/runtime - 86c949374ed95989e7f1b81cb70b1e8b09bb3251 + 07f535a74924b41ea4137ccb67cac73f1fbc1133 - + https://github.com/dotnet/runtime - 86c949374ed95989e7f1b81cb70b1e8b09bb3251 + 07f535a74924b41ea4137ccb67cac73f1fbc1133 - + https://github.com/dotnet/winforms - 40fd54e4207776669c94ccb900e70860bd10a525 + 43db5dc85dc52cf3d0d3a7164ab930c591a353e7 diff --git a/eng/Versions.props b/eng/Versions.props index 200289803..9ce204a65 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -25,51 +25,51 @@ 6.2.4 - 8.0.0-rtm.23519.13 - 8.0.0-rtm.23519.13 - 8.0.0-rtm.23519.13 - 8.0.0-rtm.23519.13 + 8.0.0-rtm.23520.9 + 8.0.0-rtm.23520.9 + 8.0.0-rtm.23520.9 + 8.0.0-rtm.23520.9 5.0.0 - 8.0.0-rtm.23519.13 - 8.0.0-rtm.23519.13 - 8.0.0-rtm.23519.13 - 8.0.0-rtm.23519.13 - 8.0.0-rtm.23519.13 - 8.0.0-rtm.23519.13 - 8.0.0-rtm.23519.13 - 8.0.0-rtm.23519.13 - 8.0.0-rtm.23519.13 - 8.0.0-rtm.23519.13 - 8.0.0-rtm.23519.13 - 8.0.0-rtm.23519.13 + 8.0.0-rtm.23520.9 + 8.0.0-rtm.23520.9 + 8.0.0-rtm.23520.9 + 8.0.0-rtm.23520.9 + 8.0.0-rtm.23520.9 + 8.0.0-rtm.23520.9 + 8.0.0-rtm.23520.9 + 8.0.0-rtm.23520.9 + 8.0.0-rtm.23520.9 + 8.0.0-rtm.23520.9 + 8.0.0-rtm.23520.9 + 8.0.0-rtm.23520.9 5.0.0 - 8.0.0-rtm.23519.13 + 8.0.0-rtm.23520.9 5.0.0 - 8.0.0-rtm.23519.13 - 8.0.0-rtm.23519.13 - 8.0.0-rtm.23519.13 - 8.0.0-rtm.23519.13 + 8.0.0-rtm.23520.9 + 8.0.0-rtm.23520.9 + 8.0.0-rtm.23520.9 + 8.0.0-rtm.23520.9 6.0.0 5.0.0 - 8.0.0-rtm.23519.13 - 8.0.0-rtm.23519.13 - 8.0.0-rtm.23519.13 - 8.0.0-rtm.23519.13 + 8.0.0-rtm.23520.9 + 8.0.0-rtm.23520.9 + 8.0.0-rtm.23520.9 + 8.0.0-rtm.23520.9 5.0.0 - 8.0.0-rtm.23519.13 - 8.0.0-rtm.23519.13 - 8.0.0-rtm.23519.13 - 8.0.0-rtm.23519.13 - 8.0.0-rtm.23519.13 - 8.0.0-rtm.23519.13 + 8.0.0-rtm.23520.9 + 8.0.0-rtm.23520.9 + 8.0.0-rtm.23520.9 + 8.0.0-rtm.23520.9 + 8.0.0-rtm.23520.9 + 8.0.0-rtm.23520.9 4.10.0 - 8.0.0-rtm.23520.10 - 8.0.0-rtm.23520.10 - 8.0.0-rtm.23520.10 + 8.0.0-rtm.23520.12 + 8.0.0-rtm.23520.12 + 8.0.0-rtm.23520.12 - 8.0.0-rtm.23520.3 - 8.0.0-rtm.23520.3 + 8.0.0-rtm.23520.5 + 8.0.0-rtm.23520.5 From 5c87dea47f898cbfcc7b0cad77d66a62e998963d Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Sat, 21 Oct 2023 08:43:49 +0000 Subject: [PATCH 080/222] [release/8.0] Update dependencies from dotnet/wpf (#3911) [release/8.0] Update dependencies from dotnet/wpf - Coherency Updates: - Microsoft.Private.Winforms: from 8.0.0-rtm.23520.12 to 8.0.0-rtm.23520.14 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Internal.Runtime.WindowsDesktop.Transport: from 8.0.0-rtm.23520.9 to 8.0.0-rtm.23520.16 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23520.12 to 8.0.0-rtm.23520.14 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.NETCore.App.Ref: from 8.0.0-rtm.23520.9 to 8.0.0-rtm.23520.16 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23520.12 to 8.0.0-rtm.23520.14 (parent: Microsoft.DotNet.Wpf.GitHub) - VS.Redist.Common.NetCore.SharedFramework.x64.8.0: from 8.0.0-rtm.23520.9 to 8.0.0-rtm.23520.16 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23520.12 to 8.0.0-rtm.23520.14 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.NETCore.App.Runtime.win-x64: from 8.0.0-rtm.23520.9 to 8.0.0-rtm.23520.16 (parent: Microsoft.Private.Winforms) - Microsoft.Dotnet.WinForms.ProjectTemplates: from 8.0.0-rtm.23520.12 to 8.0.0-rtm.23520.14 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rtm.23520.12 to 8.0.0-rtm.23520.14 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Win32.Registry.AccessControl: from 8.0.0-rtm.23520.9 to 8.0.0-rtm.23520.16 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23520.12 to 8.0.0-rtm.23520.14 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Win32.SystemEvents: from 8.0.0-rtm.23520.9 to 8.0.0-rtm.23520.16 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23520.12 to 8.0.0-rtm.23520.14 (parent: Microsoft.DotNet.Wpf.GitHub) - System.CodeDom: from 8.0.0-rtm.23520.9 to 8.0.0-rtm.23520.16 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23520.12 to 8.0.0-rtm.23520.14 (parent: Microsoft.DotNet.Wpf.GitHub) - System.ComponentModel.Composition: from 8.0.0-rtm.23520.9 to 8.0.0-rtm.23520.16 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23520.12 to 8.0.0-rtm.23520.14 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Configuration.ConfigurationManager: from 8.0.0-rtm.23520.9 to 8.0.0-rtm.23520.16 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23520.12 to 8.0.0-rtm.23520.14 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Data.Odbc: from 8.0.0-rtm.23520.9 to 8.0.0-rtm.23520.16 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23520.12 to 8.0.0-rtm.23520.14 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Data.OleDb: from 8.0.0-rtm.23520.9 to 8.0.0-rtm.23520.16 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23520.12 to 8.0.0-rtm.23520.14 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Diagnostics.EventLog: from 8.0.0-rtm.23520.9 to 8.0.0-rtm.23520.16 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23520.12 to 8.0.0-rtm.23520.14 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Diagnostics.PerformanceCounter: from 8.0.0-rtm.23520.9 to 8.0.0-rtm.23520.16 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23520.12 to 8.0.0-rtm.23520.14 (parent: Microsoft.DotNet.Wpf.GitHub) - System.DirectoryServices.AccountManagement: from 8.0.0-rtm.23520.9 to 8.0.0-rtm.23520.16 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23520.12 to 8.0.0-rtm.23520.14 (parent: Microsoft.DotNet.Wpf.GitHub) - System.DirectoryServices.Protocols: from 8.0.0-rtm.23520.9 to 8.0.0-rtm.23520.16 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23520.12 to 8.0.0-rtm.23520.14 (parent: Microsoft.DotNet.Wpf.GitHub) - System.DirectoryServices: from 8.0.0-rtm.23520.9 to 8.0.0-rtm.23520.16 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23520.12 to 8.0.0-rtm.23520.14 (parent: Microsoft.DotNet.Wpf.GitHub) - System.IO.Packaging: from 8.0.0-rtm.23520.9 to 8.0.0-rtm.23520.16 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23520.12 to 8.0.0-rtm.23520.14 (parent: Microsoft.DotNet.Wpf.GitHub) - System.IO.Ports: from 8.0.0-rtm.23520.9 to 8.0.0-rtm.23520.16 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23520.12 to 8.0.0-rtm.23520.14 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Management: from 8.0.0-rtm.23520.9 to 8.0.0-rtm.23520.16 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23520.12 to 8.0.0-rtm.23520.14 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Reflection.Context: from 8.0.0-rtm.23520.9 to 8.0.0-rtm.23520.16 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23520.12 to 8.0.0-rtm.23520.14 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Runtime.Caching: from 8.0.0-rtm.23520.9 to 8.0.0-rtm.23520.16 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23520.12 to 8.0.0-rtm.23520.14 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Security.Cryptography.Pkcs: from 8.0.0-rtm.23520.9 to 8.0.0-rtm.23520.16 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23520.12 to 8.0.0-rtm.23520.14 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Security.Cryptography.ProtectedData: from 8.0.0-rtm.23520.9 to 8.0.0-rtm.23520.16 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23520.12 to 8.0.0-rtm.23520.14 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Security.Cryptography.Xml: from 8.0.0-rtm.23520.9 to 8.0.0-rtm.23520.16 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23520.12 to 8.0.0-rtm.23520.14 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Security.Permissions: from 8.0.0-rtm.23520.9 to 8.0.0-rtm.23520.16 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23520.12 to 8.0.0-rtm.23520.14 (parent: Microsoft.DotNet.Wpf.GitHub) - System.ServiceModel.Syndication: from 8.0.0-rtm.23520.9 to 8.0.0-rtm.23520.16 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23520.12 to 8.0.0-rtm.23520.14 (parent: Microsoft.DotNet.Wpf.GitHub) - System.ServiceProcess.ServiceController: from 8.0.0-rtm.23520.9 to 8.0.0-rtm.23520.16 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23520.12 to 8.0.0-rtm.23520.14 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Speech: from 8.0.0-rtm.23520.9 to 8.0.0-rtm.23520.16 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23520.12 to 8.0.0-rtm.23520.14 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Text.Encoding.CodePages: from 8.0.0-rtm.23520.9 to 8.0.0-rtm.23520.16 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23520.12 to 8.0.0-rtm.23520.14 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Threading.AccessControl: from 8.0.0-rtm.23520.9 to 8.0.0-rtm.23520.16 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23520.12 to 8.0.0-rtm.23520.14 (parent: Microsoft.DotNet.Wpf.GitHub) - System.ComponentModel.Composition.Registration: from 8.0.0-rtm.23520.9 to 8.0.0-rtm.23520.16 (parent: Microsoft.Private.Winforms) - System.Drawing.Common: from 8.0.0-rtm.23520.12 to 8.0.0-rtm.23520.14 (parent: Microsoft.DotNet.Wpf.GitHub) --- eng/Version.Details.xml | 148 ++++++++++++++++++++-------------------- eng/Versions.props | 72 +++++++++---------- 2 files changed, 110 insertions(+), 110 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 042be1617..e845e61d2 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,153 +1,153 @@ - + https://github.com/dotnet/runtime - 07f535a74924b41ea4137ccb67cac73f1fbc1133 + 11ad607efb2b31c5e1b906303fcd70341e9d5206 - + https://github.com/dotnet/winforms - 43db5dc85dc52cf3d0d3a7164ab930c591a353e7 + abda8e3bfa78319363526b5a5f86863ec979940e - + https://github.com/dotnet/wpf - f58d6d3fa3362cd33b29172bd7d6212f3e0020b7 + 0d629281c49061636a8a161bae6fceedd37acff7 - + https://github.com/dotnet/wpf - f58d6d3fa3362cd33b29172bd7d6212f3e0020b7 + 0d629281c49061636a8a161bae6fceedd37acff7 - + https://github.com/dotnet/runtime - 07f535a74924b41ea4137ccb67cac73f1fbc1133 + 11ad607efb2b31c5e1b906303fcd70341e9d5206 - + https://github.com/dotnet/runtime - 07f535a74924b41ea4137ccb67cac73f1fbc1133 + 11ad607efb2b31c5e1b906303fcd70341e9d5206 - + https://github.com/dotnet/runtime - 07f535a74924b41ea4137ccb67cac73f1fbc1133 + 11ad607efb2b31c5e1b906303fcd70341e9d5206 - + https://github.com/dotnet/winforms - 43db5dc85dc52cf3d0d3a7164ab930c591a353e7 + abda8e3bfa78319363526b5a5f86863ec979940e - + https://github.com/dotnet/wpf - f58d6d3fa3362cd33b29172bd7d6212f3e0020b7 + 0d629281c49061636a8a161bae6fceedd37acff7 - + https://github.com/dotnet/runtime - 07f535a74924b41ea4137ccb67cac73f1fbc1133 + 11ad607efb2b31c5e1b906303fcd70341e9d5206 - + https://github.com/dotnet/runtime - 07f535a74924b41ea4137ccb67cac73f1fbc1133 + 11ad607efb2b31c5e1b906303fcd70341e9d5206 - + https://github.com/dotnet/runtime - 07f535a74924b41ea4137ccb67cac73f1fbc1133 + 11ad607efb2b31c5e1b906303fcd70341e9d5206 - + https://github.com/dotnet/runtime - 07f535a74924b41ea4137ccb67cac73f1fbc1133 + 11ad607efb2b31c5e1b906303fcd70341e9d5206 - + https://github.com/dotnet/runtime - 07f535a74924b41ea4137ccb67cac73f1fbc1133 + 11ad607efb2b31c5e1b906303fcd70341e9d5206 - + https://github.com/dotnet/runtime - 07f535a74924b41ea4137ccb67cac73f1fbc1133 + 11ad607efb2b31c5e1b906303fcd70341e9d5206 - + https://github.com/dotnet/runtime - 07f535a74924b41ea4137ccb67cac73f1fbc1133 + 11ad607efb2b31c5e1b906303fcd70341e9d5206 - + https://github.com/dotnet/runtime - 07f535a74924b41ea4137ccb67cac73f1fbc1133 + 11ad607efb2b31c5e1b906303fcd70341e9d5206 - + https://github.com/dotnet/runtime - 07f535a74924b41ea4137ccb67cac73f1fbc1133 + 11ad607efb2b31c5e1b906303fcd70341e9d5206 - + https://github.com/dotnet/runtime - 07f535a74924b41ea4137ccb67cac73f1fbc1133 + 11ad607efb2b31c5e1b906303fcd70341e9d5206 - + https://github.com/dotnet/runtime - 07f535a74924b41ea4137ccb67cac73f1fbc1133 + 11ad607efb2b31c5e1b906303fcd70341e9d5206 - + https://github.com/dotnet/runtime - 07f535a74924b41ea4137ccb67cac73f1fbc1133 + 11ad607efb2b31c5e1b906303fcd70341e9d5206 - + https://github.com/dotnet/runtime - 07f535a74924b41ea4137ccb67cac73f1fbc1133 + 11ad607efb2b31c5e1b906303fcd70341e9d5206 - + https://github.com/dotnet/runtime - 07f535a74924b41ea4137ccb67cac73f1fbc1133 + 11ad607efb2b31c5e1b906303fcd70341e9d5206 - + https://github.com/dotnet/runtime - 07f535a74924b41ea4137ccb67cac73f1fbc1133 + 11ad607efb2b31c5e1b906303fcd70341e9d5206 - + https://github.com/dotnet/runtime - 07f535a74924b41ea4137ccb67cac73f1fbc1133 + 11ad607efb2b31c5e1b906303fcd70341e9d5206 - + https://github.com/dotnet/runtime - 07f535a74924b41ea4137ccb67cac73f1fbc1133 + 11ad607efb2b31c5e1b906303fcd70341e9d5206 - + https://github.com/dotnet/runtime - 07f535a74924b41ea4137ccb67cac73f1fbc1133 + 11ad607efb2b31c5e1b906303fcd70341e9d5206 - + https://github.com/dotnet/runtime - 07f535a74924b41ea4137ccb67cac73f1fbc1133 + 11ad607efb2b31c5e1b906303fcd70341e9d5206 - + https://github.com/dotnet/runtime - 07f535a74924b41ea4137ccb67cac73f1fbc1133 + 11ad607efb2b31c5e1b906303fcd70341e9d5206 - + https://github.com/dotnet/runtime - 07f535a74924b41ea4137ccb67cac73f1fbc1133 + 11ad607efb2b31c5e1b906303fcd70341e9d5206 - + https://github.com/dotnet/runtime - 07f535a74924b41ea4137ccb67cac73f1fbc1133 + 11ad607efb2b31c5e1b906303fcd70341e9d5206 - + https://github.com/dotnet/runtime - 07f535a74924b41ea4137ccb67cac73f1fbc1133 + 11ad607efb2b31c5e1b906303fcd70341e9d5206 - + https://github.com/dotnet/runtime - 07f535a74924b41ea4137ccb67cac73f1fbc1133 + 11ad607efb2b31c5e1b906303fcd70341e9d5206 - + https://github.com/dotnet/runtime - 07f535a74924b41ea4137ccb67cac73f1fbc1133 + 11ad607efb2b31c5e1b906303fcd70341e9d5206 - + https://github.com/dotnet/runtime - 07f535a74924b41ea4137ccb67cac73f1fbc1133 + 11ad607efb2b31c5e1b906303fcd70341e9d5206 - + https://github.com/dotnet/runtime - 07f535a74924b41ea4137ccb67cac73f1fbc1133 + 11ad607efb2b31c5e1b906303fcd70341e9d5206 - + https://github.com/dotnet/winforms - 43db5dc85dc52cf3d0d3a7164ab930c591a353e7 + abda8e3bfa78319363526b5a5f86863ec979940e diff --git a/eng/Versions.props b/eng/Versions.props index 9ce204a65..8864632ca 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -25,51 +25,51 @@ 6.2.4 - 8.0.0-rtm.23520.9 - 8.0.0-rtm.23520.9 - 8.0.0-rtm.23520.9 - 8.0.0-rtm.23520.9 + 8.0.0-rtm.23520.16 + 8.0.0-rtm.23520.16 + 8.0.0-rtm.23520.16 + 8.0.0-rtm.23520.16 5.0.0 - 8.0.0-rtm.23520.9 - 8.0.0-rtm.23520.9 - 8.0.0-rtm.23520.9 - 8.0.0-rtm.23520.9 - 8.0.0-rtm.23520.9 - 8.0.0-rtm.23520.9 - 8.0.0-rtm.23520.9 - 8.0.0-rtm.23520.9 - 8.0.0-rtm.23520.9 - 8.0.0-rtm.23520.9 - 8.0.0-rtm.23520.9 - 8.0.0-rtm.23520.9 + 8.0.0-rtm.23520.16 + 8.0.0-rtm.23520.16 + 8.0.0-rtm.23520.16 + 8.0.0-rtm.23520.16 + 8.0.0-rtm.23520.16 + 8.0.0-rtm.23520.16 + 8.0.0-rtm.23520.16 + 8.0.0-rtm.23520.16 + 8.0.0-rtm.23520.16 + 8.0.0-rtm.23520.16 + 8.0.0-rtm.23520.16 + 8.0.0-rtm.23520.16 5.0.0 - 8.0.0-rtm.23520.9 + 8.0.0-rtm.23520.16 5.0.0 - 8.0.0-rtm.23520.9 - 8.0.0-rtm.23520.9 - 8.0.0-rtm.23520.9 - 8.0.0-rtm.23520.9 + 8.0.0-rtm.23520.16 + 8.0.0-rtm.23520.16 + 8.0.0-rtm.23520.16 + 8.0.0-rtm.23520.16 6.0.0 5.0.0 - 8.0.0-rtm.23520.9 - 8.0.0-rtm.23520.9 - 8.0.0-rtm.23520.9 - 8.0.0-rtm.23520.9 + 8.0.0-rtm.23520.16 + 8.0.0-rtm.23520.16 + 8.0.0-rtm.23520.16 + 8.0.0-rtm.23520.16 5.0.0 - 8.0.0-rtm.23520.9 - 8.0.0-rtm.23520.9 - 8.0.0-rtm.23520.9 - 8.0.0-rtm.23520.9 - 8.0.0-rtm.23520.9 - 8.0.0-rtm.23520.9 + 8.0.0-rtm.23520.16 + 8.0.0-rtm.23520.16 + 8.0.0-rtm.23520.16 + 8.0.0-rtm.23520.16 + 8.0.0-rtm.23520.16 + 8.0.0-rtm.23520.16 4.10.0 - 8.0.0-rtm.23520.12 - 8.0.0-rtm.23520.12 - 8.0.0-rtm.23520.12 + 8.0.0-rtm.23520.14 + 8.0.0-rtm.23520.14 + 8.0.0-rtm.23520.14 - 8.0.0-rtm.23520.5 - 8.0.0-rtm.23520.5 + 8.0.0-rtm.23521.1 + 8.0.0-rtm.23521.1 From 8c496a2259bb91785f8f61bb98a9b7f0997ba982 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Mon, 23 Oct 2023 18:49:46 +0000 Subject: [PATCH 081/222] [release/8.0] Update dependencies from dotnet/wpf (#3913) [release/8.0] Update dependencies from dotnet/wpf - Coherency Updates: - Microsoft.Private.Winforms: from 8.0.0-rtm.23520.14 to 8.0.0-rtm.23523.2 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Internal.Runtime.WindowsDesktop.Transport: from 8.0.0-rtm.23520.16 to 8.0.0-rtm.23523.3 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23520.14 to 8.0.0-rtm.23523.2 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.NETCore.App.Ref: from 8.0.0-rtm.23520.16 to 8.0.0-rtm.23523.3 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23520.14 to 8.0.0-rtm.23523.2 (parent: Microsoft.DotNet.Wpf.GitHub) - VS.Redist.Common.NetCore.SharedFramework.x64.8.0: from 8.0.0-rtm.23520.16 to 8.0.0-rtm.23523.3 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23520.14 to 8.0.0-rtm.23523.2 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.NETCore.App.Runtime.win-x64: from 8.0.0-rtm.23520.16 to 8.0.0-rtm.23523.3 (parent: Microsoft.Private.Winforms) - Microsoft.Dotnet.WinForms.ProjectTemplates: from 8.0.0-rtm.23520.14 to 8.0.0-rtm.23523.2 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rtm.23520.14 to 8.0.0-rtm.23523.2 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Win32.Registry.AccessControl: from 8.0.0-rtm.23520.16 to 8.0.0-rtm.23523.3 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23520.14 to 8.0.0-rtm.23523.2 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Win32.SystemEvents: from 8.0.0-rtm.23520.16 to 8.0.0-rtm.23523.3 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23520.14 to 8.0.0-rtm.23523.2 (parent: Microsoft.DotNet.Wpf.GitHub) - System.CodeDom: from 8.0.0-rtm.23520.16 to 8.0.0-rtm.23523.3 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23520.14 to 8.0.0-rtm.23523.2 (parent: Microsoft.DotNet.Wpf.GitHub) - System.ComponentModel.Composition: from 8.0.0-rtm.23520.16 to 8.0.0-rtm.23523.3 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23520.14 to 8.0.0-rtm.23523.2 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Configuration.ConfigurationManager: from 8.0.0-rtm.23520.16 to 8.0.0-rtm.23523.3 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23520.14 to 8.0.0-rtm.23523.2 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Data.Odbc: from 8.0.0-rtm.23520.16 to 8.0.0-rtm.23523.3 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23520.14 to 8.0.0-rtm.23523.2 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Data.OleDb: from 8.0.0-rtm.23520.16 to 8.0.0-rtm.23523.3 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23520.14 to 8.0.0-rtm.23523.2 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Diagnostics.EventLog: from 8.0.0-rtm.23520.16 to 8.0.0-rtm.23523.3 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23520.14 to 8.0.0-rtm.23523.2 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Diagnostics.PerformanceCounter: from 8.0.0-rtm.23520.16 to 8.0.0-rtm.23523.3 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23520.14 to 8.0.0-rtm.23523.2 (parent: Microsoft.DotNet.Wpf.GitHub) - System.DirectoryServices.AccountManagement: from 8.0.0-rtm.23520.16 to 8.0.0-rtm.23523.3 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23520.14 to 8.0.0-rtm.23523.2 (parent: Microsoft.DotNet.Wpf.GitHub) - System.DirectoryServices.Protocols: from 8.0.0-rtm.23520.16 to 8.0.0-rtm.23523.3 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23520.14 to 8.0.0-rtm.23523.2 (parent: Microsoft.DotNet.Wpf.GitHub) - System.DirectoryServices: from 8.0.0-rtm.23520.16 to 8.0.0-rtm.23523.3 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23520.14 to 8.0.0-rtm.23523.2 (parent: Microsoft.DotNet.Wpf.GitHub) - System.IO.Packaging: from 8.0.0-rtm.23520.16 to 8.0.0-rtm.23523.3 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23520.14 to 8.0.0-rtm.23523.2 (parent: Microsoft.DotNet.Wpf.GitHub) - System.IO.Ports: from 8.0.0-rtm.23520.16 to 8.0.0-rtm.23523.3 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23520.14 to 8.0.0-rtm.23523.2 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Management: from 8.0.0-rtm.23520.16 to 8.0.0-rtm.23523.3 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23520.14 to 8.0.0-rtm.23523.2 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Reflection.Context: from 8.0.0-rtm.23520.16 to 8.0.0-rtm.23523.3 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23520.14 to 8.0.0-rtm.23523.2 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Runtime.Caching: from 8.0.0-rtm.23520.16 to 8.0.0-rtm.23523.3 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23520.14 to 8.0.0-rtm.23523.2 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Security.Cryptography.Pkcs: from 8.0.0-rtm.23520.16 to 8.0.0-rtm.23523.3 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23520.14 to 8.0.0-rtm.23523.2 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Security.Cryptography.ProtectedData: from 8.0.0-rtm.23520.16 to 8.0.0-rtm.23523.3 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23520.14 to 8.0.0-rtm.23523.2 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Security.Cryptography.Xml: from 8.0.0-rtm.23520.16 to 8.0.0-rtm.23523.3 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23520.14 to 8.0.0-rtm.23523.2 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Security.Permissions: from 8.0.0-rtm.23520.16 to 8.0.0-rtm.23523.3 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23520.14 to 8.0.0-rtm.23523.2 (parent: Microsoft.DotNet.Wpf.GitHub) - System.ServiceModel.Syndication: from 8.0.0-rtm.23520.16 to 8.0.0-rtm.23523.3 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23520.14 to 8.0.0-rtm.23523.2 (parent: Microsoft.DotNet.Wpf.GitHub) - System.ServiceProcess.ServiceController: from 8.0.0-rtm.23520.16 to 8.0.0-rtm.23523.3 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23520.14 to 8.0.0-rtm.23523.2 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Speech: from 8.0.0-rtm.23520.16 to 8.0.0-rtm.23523.3 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23520.14 to 8.0.0-rtm.23523.2 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Text.Encoding.CodePages: from 8.0.0-rtm.23520.16 to 8.0.0-rtm.23523.3 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23520.14 to 8.0.0-rtm.23523.2 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Threading.AccessControl: from 8.0.0-rtm.23520.16 to 8.0.0-rtm.23523.3 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23520.14 to 8.0.0-rtm.23523.2 (parent: Microsoft.DotNet.Wpf.GitHub) - System.ComponentModel.Composition.Registration: from 8.0.0-rtm.23520.16 to 8.0.0-rtm.23523.3 (parent: Microsoft.Private.Winforms) - System.Drawing.Common: from 8.0.0-rtm.23520.14 to 8.0.0-rtm.23523.2 (parent: Microsoft.DotNet.Wpf.GitHub) --- eng/Version.Details.xml | 148 ++++++++++++++++++++-------------------- eng/Versions.props | 72 +++++++++---------- 2 files changed, 110 insertions(+), 110 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index e845e61d2..e0c83ae90 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,153 +1,153 @@ - + https://github.com/dotnet/runtime - 11ad607efb2b31c5e1b906303fcd70341e9d5206 + 14a0bbcdedf2440fbeb67c670e9c30d1e22cccef - + https://github.com/dotnet/winforms - abda8e3bfa78319363526b5a5f86863ec979940e + bc34f1ebd6e5dc4757cf06e31cecb1d254d92baa - + https://github.com/dotnet/wpf - 0d629281c49061636a8a161bae6fceedd37acff7 + 4707c1a6802c88d77f62f178bfd31eab50a009c7 - + https://github.com/dotnet/wpf - 0d629281c49061636a8a161bae6fceedd37acff7 + 4707c1a6802c88d77f62f178bfd31eab50a009c7 - + https://github.com/dotnet/runtime - 11ad607efb2b31c5e1b906303fcd70341e9d5206 + 14a0bbcdedf2440fbeb67c670e9c30d1e22cccef - + https://github.com/dotnet/runtime - 11ad607efb2b31c5e1b906303fcd70341e9d5206 + 14a0bbcdedf2440fbeb67c670e9c30d1e22cccef - + https://github.com/dotnet/runtime - 11ad607efb2b31c5e1b906303fcd70341e9d5206 + 14a0bbcdedf2440fbeb67c670e9c30d1e22cccef - + https://github.com/dotnet/winforms - abda8e3bfa78319363526b5a5f86863ec979940e + bc34f1ebd6e5dc4757cf06e31cecb1d254d92baa - + https://github.com/dotnet/wpf - 0d629281c49061636a8a161bae6fceedd37acff7 + 4707c1a6802c88d77f62f178bfd31eab50a009c7 - + https://github.com/dotnet/runtime - 11ad607efb2b31c5e1b906303fcd70341e9d5206 + 14a0bbcdedf2440fbeb67c670e9c30d1e22cccef - + https://github.com/dotnet/runtime - 11ad607efb2b31c5e1b906303fcd70341e9d5206 + 14a0bbcdedf2440fbeb67c670e9c30d1e22cccef - + https://github.com/dotnet/runtime - 11ad607efb2b31c5e1b906303fcd70341e9d5206 + 14a0bbcdedf2440fbeb67c670e9c30d1e22cccef - + https://github.com/dotnet/runtime - 11ad607efb2b31c5e1b906303fcd70341e9d5206 + 14a0bbcdedf2440fbeb67c670e9c30d1e22cccef - + https://github.com/dotnet/runtime - 11ad607efb2b31c5e1b906303fcd70341e9d5206 + 14a0bbcdedf2440fbeb67c670e9c30d1e22cccef - + https://github.com/dotnet/runtime - 11ad607efb2b31c5e1b906303fcd70341e9d5206 + 14a0bbcdedf2440fbeb67c670e9c30d1e22cccef - + https://github.com/dotnet/runtime - 11ad607efb2b31c5e1b906303fcd70341e9d5206 + 14a0bbcdedf2440fbeb67c670e9c30d1e22cccef - + https://github.com/dotnet/runtime - 11ad607efb2b31c5e1b906303fcd70341e9d5206 + 14a0bbcdedf2440fbeb67c670e9c30d1e22cccef - + https://github.com/dotnet/runtime - 11ad607efb2b31c5e1b906303fcd70341e9d5206 + 14a0bbcdedf2440fbeb67c670e9c30d1e22cccef - + https://github.com/dotnet/runtime - 11ad607efb2b31c5e1b906303fcd70341e9d5206 + 14a0bbcdedf2440fbeb67c670e9c30d1e22cccef - + https://github.com/dotnet/runtime - 11ad607efb2b31c5e1b906303fcd70341e9d5206 + 14a0bbcdedf2440fbeb67c670e9c30d1e22cccef - + https://github.com/dotnet/runtime - 11ad607efb2b31c5e1b906303fcd70341e9d5206 + 14a0bbcdedf2440fbeb67c670e9c30d1e22cccef - + https://github.com/dotnet/runtime - 11ad607efb2b31c5e1b906303fcd70341e9d5206 + 14a0bbcdedf2440fbeb67c670e9c30d1e22cccef - + https://github.com/dotnet/runtime - 11ad607efb2b31c5e1b906303fcd70341e9d5206 + 14a0bbcdedf2440fbeb67c670e9c30d1e22cccef - + https://github.com/dotnet/runtime - 11ad607efb2b31c5e1b906303fcd70341e9d5206 + 14a0bbcdedf2440fbeb67c670e9c30d1e22cccef - + https://github.com/dotnet/runtime - 11ad607efb2b31c5e1b906303fcd70341e9d5206 + 14a0bbcdedf2440fbeb67c670e9c30d1e22cccef - + https://github.com/dotnet/runtime - 11ad607efb2b31c5e1b906303fcd70341e9d5206 + 14a0bbcdedf2440fbeb67c670e9c30d1e22cccef - + https://github.com/dotnet/runtime - 11ad607efb2b31c5e1b906303fcd70341e9d5206 + 14a0bbcdedf2440fbeb67c670e9c30d1e22cccef - + https://github.com/dotnet/runtime - 11ad607efb2b31c5e1b906303fcd70341e9d5206 + 14a0bbcdedf2440fbeb67c670e9c30d1e22cccef - + https://github.com/dotnet/runtime - 11ad607efb2b31c5e1b906303fcd70341e9d5206 + 14a0bbcdedf2440fbeb67c670e9c30d1e22cccef - + https://github.com/dotnet/runtime - 11ad607efb2b31c5e1b906303fcd70341e9d5206 + 14a0bbcdedf2440fbeb67c670e9c30d1e22cccef - + https://github.com/dotnet/runtime - 11ad607efb2b31c5e1b906303fcd70341e9d5206 + 14a0bbcdedf2440fbeb67c670e9c30d1e22cccef - + https://github.com/dotnet/runtime - 11ad607efb2b31c5e1b906303fcd70341e9d5206 + 14a0bbcdedf2440fbeb67c670e9c30d1e22cccef - + https://github.com/dotnet/runtime - 11ad607efb2b31c5e1b906303fcd70341e9d5206 + 14a0bbcdedf2440fbeb67c670e9c30d1e22cccef - + https://github.com/dotnet/runtime - 11ad607efb2b31c5e1b906303fcd70341e9d5206 + 14a0bbcdedf2440fbeb67c670e9c30d1e22cccef - + https://github.com/dotnet/runtime - 11ad607efb2b31c5e1b906303fcd70341e9d5206 + 14a0bbcdedf2440fbeb67c670e9c30d1e22cccef - + https://github.com/dotnet/runtime - 11ad607efb2b31c5e1b906303fcd70341e9d5206 + 14a0bbcdedf2440fbeb67c670e9c30d1e22cccef - + https://github.com/dotnet/winforms - abda8e3bfa78319363526b5a5f86863ec979940e + bc34f1ebd6e5dc4757cf06e31cecb1d254d92baa diff --git a/eng/Versions.props b/eng/Versions.props index 8864632ca..58fce79fc 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -25,51 +25,51 @@ 6.2.4 - 8.0.0-rtm.23520.16 - 8.0.0-rtm.23520.16 - 8.0.0-rtm.23520.16 - 8.0.0-rtm.23520.16 + 8.0.0-rtm.23523.3 + 8.0.0-rtm.23523.3 + 8.0.0-rtm.23523.3 + 8.0.0-rtm.23523.3 5.0.0 - 8.0.0-rtm.23520.16 - 8.0.0-rtm.23520.16 - 8.0.0-rtm.23520.16 - 8.0.0-rtm.23520.16 - 8.0.0-rtm.23520.16 - 8.0.0-rtm.23520.16 - 8.0.0-rtm.23520.16 - 8.0.0-rtm.23520.16 - 8.0.0-rtm.23520.16 - 8.0.0-rtm.23520.16 - 8.0.0-rtm.23520.16 - 8.0.0-rtm.23520.16 + 8.0.0-rtm.23523.3 + 8.0.0-rtm.23523.3 + 8.0.0-rtm.23523.3 + 8.0.0-rtm.23523.3 + 8.0.0-rtm.23523.3 + 8.0.0-rtm.23523.3 + 8.0.0-rtm.23523.3 + 8.0.0-rtm.23523.3 + 8.0.0-rtm.23523.3 + 8.0.0-rtm.23523.3 + 8.0.0-rtm.23523.3 + 8.0.0-rtm.23523.3 5.0.0 - 8.0.0-rtm.23520.16 + 8.0.0-rtm.23523.3 5.0.0 - 8.0.0-rtm.23520.16 - 8.0.0-rtm.23520.16 - 8.0.0-rtm.23520.16 - 8.0.0-rtm.23520.16 + 8.0.0-rtm.23523.3 + 8.0.0-rtm.23523.3 + 8.0.0-rtm.23523.3 + 8.0.0-rtm.23523.3 6.0.0 5.0.0 - 8.0.0-rtm.23520.16 - 8.0.0-rtm.23520.16 - 8.0.0-rtm.23520.16 - 8.0.0-rtm.23520.16 + 8.0.0-rtm.23523.3 + 8.0.0-rtm.23523.3 + 8.0.0-rtm.23523.3 + 8.0.0-rtm.23523.3 5.0.0 - 8.0.0-rtm.23520.16 - 8.0.0-rtm.23520.16 - 8.0.0-rtm.23520.16 - 8.0.0-rtm.23520.16 - 8.0.0-rtm.23520.16 - 8.0.0-rtm.23520.16 + 8.0.0-rtm.23523.3 + 8.0.0-rtm.23523.3 + 8.0.0-rtm.23523.3 + 8.0.0-rtm.23523.3 + 8.0.0-rtm.23523.3 + 8.0.0-rtm.23523.3 4.10.0 - 8.0.0-rtm.23520.14 - 8.0.0-rtm.23520.14 - 8.0.0-rtm.23520.14 + 8.0.0-rtm.23523.2 + 8.0.0-rtm.23523.2 + 8.0.0-rtm.23523.2 - 8.0.0-rtm.23521.1 - 8.0.0-rtm.23521.1 + 8.0.0-rtm.23523.1 + 8.0.0-rtm.23523.1 From a6b92c93897366abeadf7fc999a3fd2e98cbbb8e Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Tue, 24 Oct 2023 05:20:41 +0000 Subject: [PATCH 082/222] [release/8.0] Update dependencies from dotnet/wpf (#3914) [release/8.0] Update dependencies from dotnet/wpf - Coherency Updates: - Microsoft.Private.Winforms: from 8.0.0-rtm.23523.2 to 8.0.0-rtm.23523.12 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Internal.Runtime.WindowsDesktop.Transport: from 8.0.0-rtm.23523.3 to 8.0.0-rtm.23523.10 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23523.2 to 8.0.0-rtm.23523.12 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.NETCore.App.Ref: from 8.0.0-rtm.23523.3 to 8.0.0 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23523.2 to 8.0.0-rtm.23523.12 (parent: Microsoft.DotNet.Wpf.GitHub) - VS.Redist.Common.NetCore.SharedFramework.x64.8.0: from 8.0.0-rtm.23523.3 to 8.0.0-rtm.23523.10 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23523.2 to 8.0.0-rtm.23523.12 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.NETCore.App.Runtime.win-x64: from 8.0.0-rtm.23523.3 to 8.0.0 (parent: Microsoft.Private.Winforms) - Microsoft.Dotnet.WinForms.ProjectTemplates: from 8.0.0-rtm.23523.2 to 8.0.0-rtm.23523.12 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rtm.23523.2 to 8.0.0-rtm.23523.12 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Win32.Registry.AccessControl: from 8.0.0-rtm.23523.3 to 8.0.0 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23523.2 to 8.0.0-rtm.23523.12 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Win32.SystemEvents: from 8.0.0-rtm.23523.3 to 8.0.0 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23523.2 to 8.0.0-rtm.23523.12 (parent: Microsoft.DotNet.Wpf.GitHub) - System.CodeDom: from 8.0.0-rtm.23523.3 to 8.0.0 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23523.2 to 8.0.0-rtm.23523.12 (parent: Microsoft.DotNet.Wpf.GitHub) - System.ComponentModel.Composition: from 8.0.0-rtm.23523.3 to 8.0.0 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23523.2 to 8.0.0-rtm.23523.12 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Configuration.ConfigurationManager: from 8.0.0-rtm.23523.3 to 8.0.0 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23523.2 to 8.0.0-rtm.23523.12 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Data.Odbc: from 8.0.0-rtm.23523.3 to 8.0.0 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23523.2 to 8.0.0-rtm.23523.12 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Data.OleDb: from 8.0.0-rtm.23523.3 to 8.0.0 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23523.2 to 8.0.0-rtm.23523.12 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Diagnostics.EventLog: from 8.0.0-rtm.23523.3 to 8.0.0 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23523.2 to 8.0.0-rtm.23523.12 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Diagnostics.PerformanceCounter: from 8.0.0-rtm.23523.3 to 8.0.0 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23523.2 to 8.0.0-rtm.23523.12 (parent: Microsoft.DotNet.Wpf.GitHub) - System.DirectoryServices.AccountManagement: from 8.0.0-rtm.23523.3 to 8.0.0 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23523.2 to 8.0.0-rtm.23523.12 (parent: Microsoft.DotNet.Wpf.GitHub) - System.DirectoryServices.Protocols: from 8.0.0-rtm.23523.3 to 8.0.0 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23523.2 to 8.0.0-rtm.23523.12 (parent: Microsoft.DotNet.Wpf.GitHub) - System.DirectoryServices: from 8.0.0-rtm.23523.3 to 8.0.0 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23523.2 to 8.0.0-rtm.23523.12 (parent: Microsoft.DotNet.Wpf.GitHub) - System.IO.Packaging: from 8.0.0-rtm.23523.3 to 8.0.0 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23523.2 to 8.0.0-rtm.23523.12 (parent: Microsoft.DotNet.Wpf.GitHub) - System.IO.Ports: from 8.0.0-rtm.23523.3 to 8.0.0 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23523.2 to 8.0.0-rtm.23523.12 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Management: from 8.0.0-rtm.23523.3 to 8.0.0 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23523.2 to 8.0.0-rtm.23523.12 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Reflection.Context: from 8.0.0-rtm.23523.3 to 8.0.0 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23523.2 to 8.0.0-rtm.23523.12 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Runtime.Caching: from 8.0.0-rtm.23523.3 to 8.0.0 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23523.2 to 8.0.0-rtm.23523.12 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Security.Cryptography.Pkcs: from 8.0.0-rtm.23523.3 to 8.0.0 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23523.2 to 8.0.0-rtm.23523.12 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Security.Cryptography.ProtectedData: from 8.0.0-rtm.23523.3 to 8.0.0 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23523.2 to 8.0.0-rtm.23523.12 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Security.Cryptography.Xml: from 8.0.0-rtm.23523.3 to 8.0.0 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23523.2 to 8.0.0-rtm.23523.12 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Security.Permissions: from 8.0.0-rtm.23523.3 to 8.0.0 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23523.2 to 8.0.0-rtm.23523.12 (parent: Microsoft.DotNet.Wpf.GitHub) - System.ServiceModel.Syndication: from 8.0.0-rtm.23523.3 to 8.0.0 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23523.2 to 8.0.0-rtm.23523.12 (parent: Microsoft.DotNet.Wpf.GitHub) - System.ServiceProcess.ServiceController: from 8.0.0-rtm.23523.3 to 8.0.0 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23523.2 to 8.0.0-rtm.23523.12 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Speech: from 8.0.0-rtm.23523.3 to 8.0.0 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23523.2 to 8.0.0-rtm.23523.12 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Text.Encoding.CodePages: from 8.0.0-rtm.23523.3 to 8.0.0 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23523.2 to 8.0.0-rtm.23523.12 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Threading.AccessControl: from 8.0.0-rtm.23523.3 to 8.0.0 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23523.2 to 8.0.0-rtm.23523.12 (parent: Microsoft.DotNet.Wpf.GitHub) - System.ComponentModel.Composition.Registration: from 8.0.0-rtm.23523.3 to 8.0.0 (parent: Microsoft.Private.Winforms) - System.Drawing.Common: from 8.0.0-rtm.23523.2 to 8.0.0-rtm.23523.12 (parent: Microsoft.DotNet.Wpf.GitHub) --- NuGet.config | 5 ++ eng/Version.Details.xml | 148 ++++++++++++++++++++-------------------- eng/Versions.props | 72 +++++++++---------- 3 files changed, 115 insertions(+), 110 deletions(-) diff --git a/NuGet.config b/NuGet.config index 0c326b799..acdd25e1f 100644 --- a/NuGet.config +++ b/NuGet.config @@ -7,6 +7,11 @@ + + + + + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index e0c83ae90..5a77f902e 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,153 +1,153 @@ - + https://github.com/dotnet/runtime - 14a0bbcdedf2440fbeb67c670e9c30d1e22cccef + 140a8ea7b41c635b188fccaeac9bc57605370944 - + https://github.com/dotnet/winforms - bc34f1ebd6e5dc4757cf06e31cecb1d254d92baa + 1140c99b30b68d1057f02095ff1882daa71a7470 - + https://github.com/dotnet/wpf - 4707c1a6802c88d77f62f178bfd31eab50a009c7 + b4875779d3526495dec87e90f01e8b60aecb8890 - + https://github.com/dotnet/wpf - 4707c1a6802c88d77f62f178bfd31eab50a009c7 + b4875779d3526495dec87e90f01e8b60aecb8890 - + https://github.com/dotnet/runtime - 14a0bbcdedf2440fbeb67c670e9c30d1e22cccef + 140a8ea7b41c635b188fccaeac9bc57605370944 - + https://github.com/dotnet/runtime - 14a0bbcdedf2440fbeb67c670e9c30d1e22cccef + 140a8ea7b41c635b188fccaeac9bc57605370944 - + https://github.com/dotnet/runtime - 14a0bbcdedf2440fbeb67c670e9c30d1e22cccef + 140a8ea7b41c635b188fccaeac9bc57605370944 - + https://github.com/dotnet/winforms - bc34f1ebd6e5dc4757cf06e31cecb1d254d92baa + 1140c99b30b68d1057f02095ff1882daa71a7470 - + https://github.com/dotnet/wpf - 4707c1a6802c88d77f62f178bfd31eab50a009c7 + b4875779d3526495dec87e90f01e8b60aecb8890 - + https://github.com/dotnet/runtime - 14a0bbcdedf2440fbeb67c670e9c30d1e22cccef + 140a8ea7b41c635b188fccaeac9bc57605370944 - + https://github.com/dotnet/runtime - 14a0bbcdedf2440fbeb67c670e9c30d1e22cccef + 140a8ea7b41c635b188fccaeac9bc57605370944 - + https://github.com/dotnet/runtime - 14a0bbcdedf2440fbeb67c670e9c30d1e22cccef + 140a8ea7b41c635b188fccaeac9bc57605370944 - + https://github.com/dotnet/runtime - 14a0bbcdedf2440fbeb67c670e9c30d1e22cccef + 140a8ea7b41c635b188fccaeac9bc57605370944 - + https://github.com/dotnet/runtime - 14a0bbcdedf2440fbeb67c670e9c30d1e22cccef + 140a8ea7b41c635b188fccaeac9bc57605370944 - + https://github.com/dotnet/runtime - 14a0bbcdedf2440fbeb67c670e9c30d1e22cccef + 140a8ea7b41c635b188fccaeac9bc57605370944 - + https://github.com/dotnet/runtime - 14a0bbcdedf2440fbeb67c670e9c30d1e22cccef + 140a8ea7b41c635b188fccaeac9bc57605370944 - + https://github.com/dotnet/runtime - 14a0bbcdedf2440fbeb67c670e9c30d1e22cccef + 140a8ea7b41c635b188fccaeac9bc57605370944 - + https://github.com/dotnet/runtime - 14a0bbcdedf2440fbeb67c670e9c30d1e22cccef + 140a8ea7b41c635b188fccaeac9bc57605370944 - + https://github.com/dotnet/runtime - 14a0bbcdedf2440fbeb67c670e9c30d1e22cccef + 140a8ea7b41c635b188fccaeac9bc57605370944 - + https://github.com/dotnet/runtime - 14a0bbcdedf2440fbeb67c670e9c30d1e22cccef + 140a8ea7b41c635b188fccaeac9bc57605370944 - + https://github.com/dotnet/runtime - 14a0bbcdedf2440fbeb67c670e9c30d1e22cccef + 140a8ea7b41c635b188fccaeac9bc57605370944 - + https://github.com/dotnet/runtime - 14a0bbcdedf2440fbeb67c670e9c30d1e22cccef + 140a8ea7b41c635b188fccaeac9bc57605370944 - + https://github.com/dotnet/runtime - 14a0bbcdedf2440fbeb67c670e9c30d1e22cccef + 140a8ea7b41c635b188fccaeac9bc57605370944 - + https://github.com/dotnet/runtime - 14a0bbcdedf2440fbeb67c670e9c30d1e22cccef + 140a8ea7b41c635b188fccaeac9bc57605370944 - + https://github.com/dotnet/runtime - 14a0bbcdedf2440fbeb67c670e9c30d1e22cccef + 140a8ea7b41c635b188fccaeac9bc57605370944 - + https://github.com/dotnet/runtime - 14a0bbcdedf2440fbeb67c670e9c30d1e22cccef + 140a8ea7b41c635b188fccaeac9bc57605370944 - + https://github.com/dotnet/runtime - 14a0bbcdedf2440fbeb67c670e9c30d1e22cccef + 140a8ea7b41c635b188fccaeac9bc57605370944 - + https://github.com/dotnet/runtime - 14a0bbcdedf2440fbeb67c670e9c30d1e22cccef + 140a8ea7b41c635b188fccaeac9bc57605370944 - + https://github.com/dotnet/runtime - 14a0bbcdedf2440fbeb67c670e9c30d1e22cccef + 140a8ea7b41c635b188fccaeac9bc57605370944 - + https://github.com/dotnet/runtime - 14a0bbcdedf2440fbeb67c670e9c30d1e22cccef + 140a8ea7b41c635b188fccaeac9bc57605370944 - + https://github.com/dotnet/runtime - 14a0bbcdedf2440fbeb67c670e9c30d1e22cccef + 140a8ea7b41c635b188fccaeac9bc57605370944 - + https://github.com/dotnet/runtime - 14a0bbcdedf2440fbeb67c670e9c30d1e22cccef + 140a8ea7b41c635b188fccaeac9bc57605370944 - + https://github.com/dotnet/runtime - 14a0bbcdedf2440fbeb67c670e9c30d1e22cccef + 140a8ea7b41c635b188fccaeac9bc57605370944 - + https://github.com/dotnet/runtime - 14a0bbcdedf2440fbeb67c670e9c30d1e22cccef + 140a8ea7b41c635b188fccaeac9bc57605370944 - + https://github.com/dotnet/runtime - 14a0bbcdedf2440fbeb67c670e9c30d1e22cccef + 140a8ea7b41c635b188fccaeac9bc57605370944 - + https://github.com/dotnet/runtime - 14a0bbcdedf2440fbeb67c670e9c30d1e22cccef + 140a8ea7b41c635b188fccaeac9bc57605370944 - + https://github.com/dotnet/winforms - bc34f1ebd6e5dc4757cf06e31cecb1d254d92baa + 1140c99b30b68d1057f02095ff1882daa71a7470 diff --git a/eng/Versions.props b/eng/Versions.props index 58fce79fc..e4a237c54 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -25,51 +25,51 @@ 6.2.4 - 8.0.0-rtm.23523.3 - 8.0.0-rtm.23523.3 - 8.0.0-rtm.23523.3 - 8.0.0-rtm.23523.3 + 8.0.0-rtm.23523.10 + 8.0.0 + 8.0.0 + 8.0.0 5.0.0 - 8.0.0-rtm.23523.3 - 8.0.0-rtm.23523.3 - 8.0.0-rtm.23523.3 - 8.0.0-rtm.23523.3 - 8.0.0-rtm.23523.3 - 8.0.0-rtm.23523.3 - 8.0.0-rtm.23523.3 - 8.0.0-rtm.23523.3 - 8.0.0-rtm.23523.3 - 8.0.0-rtm.23523.3 - 8.0.0-rtm.23523.3 - 8.0.0-rtm.23523.3 + 8.0.0 + 8.0.0 + 8.0.0 + 8.0.0 + 8.0.0 + 8.0.0 + 8.0.0 + 8.0.0 + 8.0.0 + 8.0.0 + 8.0.0 + 8.0.0 5.0.0 - 8.0.0-rtm.23523.3 + 8.0.0 5.0.0 - 8.0.0-rtm.23523.3 - 8.0.0-rtm.23523.3 - 8.0.0-rtm.23523.3 - 8.0.0-rtm.23523.3 + 8.0.0 + 8.0.0 + 8.0.0 + 8.0.0 6.0.0 5.0.0 - 8.0.0-rtm.23523.3 - 8.0.0-rtm.23523.3 - 8.0.0-rtm.23523.3 - 8.0.0-rtm.23523.3 + 8.0.0 + 8.0.0 + 8.0.0 + 8.0.0 5.0.0 - 8.0.0-rtm.23523.3 - 8.0.0-rtm.23523.3 - 8.0.0-rtm.23523.3 - 8.0.0-rtm.23523.3 - 8.0.0-rtm.23523.3 - 8.0.0-rtm.23523.3 + 8.0.0 + 8.0.0 + 8.0.0 + 8.0.0 + 8.0.0 + 8.0.0-rtm.23523.10 4.10.0 - 8.0.0-rtm.23523.2 - 8.0.0-rtm.23523.2 - 8.0.0-rtm.23523.2 + 8.0.0-rtm.23523.12 + 8.0.0-rtm.23523.12 + 8.0.0-rtm.23523.12 - 8.0.0-rtm.23523.1 - 8.0.0-rtm.23523.1 + 8.0.0-rtm.23523.3 + 8.0.0-rtm.23523.3 From 544c2e622c03eef94355718e7e671b193b0102d9 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Tue, 24 Oct 2023 09:33:29 +0000 Subject: [PATCH 083/222] [release/8.0] Update dependencies from dotnet/wpf (#3915) [release/8.0] Update dependencies from dotnet/wpf - Coherency Updates: - Microsoft.Private.Winforms: from 8.0.0-rtm.23523.12 to 8.0.0-rtm.23524.1 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Internal.Runtime.WindowsDesktop.Transport: from 8.0.0-rtm.23523.10 to 8.0.0-rtm.23523.12 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23523.12 to 8.0.0-rtm.23524.1 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.NETCore.App.Ref: from 8.0.0 to 8.0.0 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23523.12 to 8.0.0-rtm.23524.1 (parent: Microsoft.DotNet.Wpf.GitHub) - VS.Redist.Common.NetCore.SharedFramework.x64.8.0: from 8.0.0-rtm.23523.10 to 8.0.0-rtm.23523.12 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23523.12 to 8.0.0-rtm.23524.1 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.NETCore.App.Runtime.win-x64: from 8.0.0 to 8.0.0 (parent: Microsoft.Private.Winforms) - Microsoft.Dotnet.WinForms.ProjectTemplates: from 8.0.0-rtm.23523.12 to 8.0.0-rtm.23524.1 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rtm.23523.12 to 8.0.0-rtm.23524.1 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Win32.Registry.AccessControl: from 8.0.0 to 8.0.0 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23523.12 to 8.0.0-rtm.23524.1 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Win32.SystemEvents: from 8.0.0 to 8.0.0 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23523.12 to 8.0.0-rtm.23524.1 (parent: Microsoft.DotNet.Wpf.GitHub) - System.CodeDom: from 8.0.0 to 8.0.0 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23523.12 to 8.0.0-rtm.23524.1 (parent: Microsoft.DotNet.Wpf.GitHub) - System.ComponentModel.Composition: from 8.0.0 to 8.0.0 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23523.12 to 8.0.0-rtm.23524.1 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Configuration.ConfigurationManager: from 8.0.0 to 8.0.0 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23523.12 to 8.0.0-rtm.23524.1 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Data.Odbc: from 8.0.0 to 8.0.0 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23523.12 to 8.0.0-rtm.23524.1 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Data.OleDb: from 8.0.0 to 8.0.0 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23523.12 to 8.0.0-rtm.23524.1 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Diagnostics.EventLog: from 8.0.0 to 8.0.0 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23523.12 to 8.0.0-rtm.23524.1 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Diagnostics.PerformanceCounter: from 8.0.0 to 8.0.0 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23523.12 to 8.0.0-rtm.23524.1 (parent: Microsoft.DotNet.Wpf.GitHub) - System.DirectoryServices.AccountManagement: from 8.0.0 to 8.0.0 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23523.12 to 8.0.0-rtm.23524.1 (parent: Microsoft.DotNet.Wpf.GitHub) - System.DirectoryServices.Protocols: from 8.0.0 to 8.0.0 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23523.12 to 8.0.0-rtm.23524.1 (parent: Microsoft.DotNet.Wpf.GitHub) - System.DirectoryServices: from 8.0.0 to 8.0.0 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23523.12 to 8.0.0-rtm.23524.1 (parent: Microsoft.DotNet.Wpf.GitHub) - System.IO.Packaging: from 8.0.0 to 8.0.0 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23523.12 to 8.0.0-rtm.23524.1 (parent: Microsoft.DotNet.Wpf.GitHub) - System.IO.Ports: from 8.0.0 to 8.0.0 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23523.12 to 8.0.0-rtm.23524.1 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Management: from 8.0.0 to 8.0.0 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23523.12 to 8.0.0-rtm.23524.1 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Reflection.Context: from 8.0.0 to 8.0.0 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23523.12 to 8.0.0-rtm.23524.1 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Runtime.Caching: from 8.0.0 to 8.0.0 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23523.12 to 8.0.0-rtm.23524.1 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Security.Cryptography.Pkcs: from 8.0.0 to 8.0.0 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23523.12 to 8.0.0-rtm.23524.1 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Security.Cryptography.ProtectedData: from 8.0.0 to 8.0.0 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23523.12 to 8.0.0-rtm.23524.1 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Security.Cryptography.Xml: from 8.0.0 to 8.0.0 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23523.12 to 8.0.0-rtm.23524.1 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Security.Permissions: from 8.0.0 to 8.0.0 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23523.12 to 8.0.0-rtm.23524.1 (parent: Microsoft.DotNet.Wpf.GitHub) - System.ServiceModel.Syndication: from 8.0.0 to 8.0.0 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23523.12 to 8.0.0-rtm.23524.1 (parent: Microsoft.DotNet.Wpf.GitHub) - System.ServiceProcess.ServiceController: from 8.0.0 to 8.0.0 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23523.12 to 8.0.0-rtm.23524.1 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Speech: from 8.0.0 to 8.0.0 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23523.12 to 8.0.0-rtm.23524.1 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Text.Encoding.CodePages: from 8.0.0 to 8.0.0 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23523.12 to 8.0.0-rtm.23524.1 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Threading.AccessControl: from 8.0.0 to 8.0.0 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23523.12 to 8.0.0-rtm.23524.1 (parent: Microsoft.DotNet.Wpf.GitHub) - System.ComponentModel.Composition.Registration: from 8.0.0 to 8.0.0 (parent: Microsoft.Private.Winforms) - System.Drawing.Common: from 8.0.0-rtm.23523.12 to 8.0.0-rtm.23524.1 (parent: Microsoft.DotNet.Wpf.GitHub) --- NuGet.config | 2 +- eng/Version.Details.xml | 90 ++++++++++++++++++++--------------------- eng/Versions.props | 14 +++---- 3 files changed, 53 insertions(+), 53 deletions(-) diff --git a/NuGet.config b/NuGet.config index acdd25e1f..7256cfaf2 100644 --- a/NuGet.config +++ b/NuGet.config @@ -9,7 +9,7 @@ - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 5a77f902e..b4ff172c7 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,153 +1,153 @@ - + https://github.com/dotnet/runtime - 140a8ea7b41c635b188fccaeac9bc57605370944 + 488a8a3521610422e8fbe22d5cc66127f3dce3dc - + https://github.com/dotnet/winforms - 1140c99b30b68d1057f02095ff1882daa71a7470 + d77ef3b1a253a99d0be23cec35e84d2fb3317ac5 - + https://github.com/dotnet/wpf - b4875779d3526495dec87e90f01e8b60aecb8890 + eb2c28846bd06cc11a0cd432d55639a850a829a3 - + https://github.com/dotnet/wpf - b4875779d3526495dec87e90f01e8b60aecb8890 + eb2c28846bd06cc11a0cd432d55639a850a829a3 https://github.com/dotnet/runtime - 140a8ea7b41c635b188fccaeac9bc57605370944 + 488a8a3521610422e8fbe22d5cc66127f3dce3dc - + https://github.com/dotnet/runtime - 140a8ea7b41c635b188fccaeac9bc57605370944 + 488a8a3521610422e8fbe22d5cc66127f3dce3dc https://github.com/dotnet/runtime - 140a8ea7b41c635b188fccaeac9bc57605370944 + 488a8a3521610422e8fbe22d5cc66127f3dce3dc - + https://github.com/dotnet/winforms - 1140c99b30b68d1057f02095ff1882daa71a7470 + d77ef3b1a253a99d0be23cec35e84d2fb3317ac5 - + https://github.com/dotnet/wpf - b4875779d3526495dec87e90f01e8b60aecb8890 + eb2c28846bd06cc11a0cd432d55639a850a829a3 https://github.com/dotnet/runtime - 140a8ea7b41c635b188fccaeac9bc57605370944 + 488a8a3521610422e8fbe22d5cc66127f3dce3dc https://github.com/dotnet/runtime - 140a8ea7b41c635b188fccaeac9bc57605370944 + 488a8a3521610422e8fbe22d5cc66127f3dce3dc https://github.com/dotnet/runtime - 140a8ea7b41c635b188fccaeac9bc57605370944 + 488a8a3521610422e8fbe22d5cc66127f3dce3dc https://github.com/dotnet/runtime - 140a8ea7b41c635b188fccaeac9bc57605370944 + 488a8a3521610422e8fbe22d5cc66127f3dce3dc https://github.com/dotnet/runtime - 140a8ea7b41c635b188fccaeac9bc57605370944 + 488a8a3521610422e8fbe22d5cc66127f3dce3dc https://github.com/dotnet/runtime - 140a8ea7b41c635b188fccaeac9bc57605370944 + 488a8a3521610422e8fbe22d5cc66127f3dce3dc https://github.com/dotnet/runtime - 140a8ea7b41c635b188fccaeac9bc57605370944 + 488a8a3521610422e8fbe22d5cc66127f3dce3dc https://github.com/dotnet/runtime - 140a8ea7b41c635b188fccaeac9bc57605370944 + 488a8a3521610422e8fbe22d5cc66127f3dce3dc https://github.com/dotnet/runtime - 140a8ea7b41c635b188fccaeac9bc57605370944 + 488a8a3521610422e8fbe22d5cc66127f3dce3dc https://github.com/dotnet/runtime - 140a8ea7b41c635b188fccaeac9bc57605370944 + 488a8a3521610422e8fbe22d5cc66127f3dce3dc https://github.com/dotnet/runtime - 140a8ea7b41c635b188fccaeac9bc57605370944 + 488a8a3521610422e8fbe22d5cc66127f3dce3dc https://github.com/dotnet/runtime - 140a8ea7b41c635b188fccaeac9bc57605370944 + 488a8a3521610422e8fbe22d5cc66127f3dce3dc https://github.com/dotnet/runtime - 140a8ea7b41c635b188fccaeac9bc57605370944 + 488a8a3521610422e8fbe22d5cc66127f3dce3dc https://github.com/dotnet/runtime - 140a8ea7b41c635b188fccaeac9bc57605370944 + 488a8a3521610422e8fbe22d5cc66127f3dce3dc https://github.com/dotnet/runtime - 140a8ea7b41c635b188fccaeac9bc57605370944 + 488a8a3521610422e8fbe22d5cc66127f3dce3dc https://github.com/dotnet/runtime - 140a8ea7b41c635b188fccaeac9bc57605370944 + 488a8a3521610422e8fbe22d5cc66127f3dce3dc https://github.com/dotnet/runtime - 140a8ea7b41c635b188fccaeac9bc57605370944 + 488a8a3521610422e8fbe22d5cc66127f3dce3dc https://github.com/dotnet/runtime - 140a8ea7b41c635b188fccaeac9bc57605370944 + 488a8a3521610422e8fbe22d5cc66127f3dce3dc https://github.com/dotnet/runtime - 140a8ea7b41c635b188fccaeac9bc57605370944 + 488a8a3521610422e8fbe22d5cc66127f3dce3dc https://github.com/dotnet/runtime - 140a8ea7b41c635b188fccaeac9bc57605370944 + 488a8a3521610422e8fbe22d5cc66127f3dce3dc https://github.com/dotnet/runtime - 140a8ea7b41c635b188fccaeac9bc57605370944 + 488a8a3521610422e8fbe22d5cc66127f3dce3dc https://github.com/dotnet/runtime - 140a8ea7b41c635b188fccaeac9bc57605370944 + 488a8a3521610422e8fbe22d5cc66127f3dce3dc https://github.com/dotnet/runtime - 140a8ea7b41c635b188fccaeac9bc57605370944 + 488a8a3521610422e8fbe22d5cc66127f3dce3dc https://github.com/dotnet/runtime - 140a8ea7b41c635b188fccaeac9bc57605370944 + 488a8a3521610422e8fbe22d5cc66127f3dce3dc https://github.com/dotnet/runtime - 140a8ea7b41c635b188fccaeac9bc57605370944 + 488a8a3521610422e8fbe22d5cc66127f3dce3dc https://github.com/dotnet/runtime - 140a8ea7b41c635b188fccaeac9bc57605370944 + 488a8a3521610422e8fbe22d5cc66127f3dce3dc https://github.com/dotnet/runtime - 140a8ea7b41c635b188fccaeac9bc57605370944 + 488a8a3521610422e8fbe22d5cc66127f3dce3dc - + https://github.com/dotnet/winforms - 1140c99b30b68d1057f02095ff1882daa71a7470 + d77ef3b1a253a99d0be23cec35e84d2fb3317ac5 diff --git a/eng/Versions.props b/eng/Versions.props index e4a237c54..2b8533c4a 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -25,7 +25,7 @@ 6.2.4 - 8.0.0-rtm.23523.10 + 8.0.0-rtm.23523.12 8.0.0 8.0.0 8.0.0 @@ -61,15 +61,15 @@ 8.0.0 8.0.0 8.0.0 - 8.0.0-rtm.23523.10 + 8.0.0-rtm.23523.12 4.10.0 - 8.0.0-rtm.23523.12 - 8.0.0-rtm.23523.12 - 8.0.0-rtm.23523.12 + 8.0.0-rtm.23524.1 + 8.0.0-rtm.23524.1 + 8.0.0-rtm.23524.1 - 8.0.0-rtm.23523.3 - 8.0.0-rtm.23523.3 + 8.0.0-rtm.23524.1 + 8.0.0-rtm.23524.1 From d541edaeb2ed7a9f821f84055336d0539a1a80b5 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Tue, 24 Oct 2023 17:50:58 +0000 Subject: [PATCH 084/222] [release/8.0] Update dependencies from dotnet/wpf (#3917) [release/8.0] Update dependencies from dotnet/wpf - Coherency Updates: - Microsoft.Private.Winforms: from 8.0.0-rtm.23524.1 to 8.0.0-rtm.23524.4 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rtm.23524.1 to 8.0.0-rtm.23524.4 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rtm.23524.1 to 8.0.0-rtm.23524.4 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rtm.23524.1 to 8.0.0-rtm.23524.4 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Dotnet.WinForms.ProjectTemplates: from 8.0.0-rtm.23524.1 to 8.0.0-rtm.23524.4 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rtm.23524.1 to 8.0.0-rtm.23524.4 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rtm.23524.1 to 8.0.0-rtm.23524.4 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rtm.23524.1 to 8.0.0-rtm.23524.4 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rtm.23524.1 to 8.0.0-rtm.23524.4 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rtm.23524.1 to 8.0.0-rtm.23524.4 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rtm.23524.1 to 8.0.0-rtm.23524.4 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rtm.23524.1 to 8.0.0-rtm.23524.4 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rtm.23524.1 to 8.0.0-rtm.23524.4 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rtm.23524.1 to 8.0.0-rtm.23524.4 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rtm.23524.1 to 8.0.0-rtm.23524.4 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rtm.23524.1 to 8.0.0-rtm.23524.4 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rtm.23524.1 to 8.0.0-rtm.23524.4 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rtm.23524.1 to 8.0.0-rtm.23524.4 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rtm.23524.1 to 8.0.0-rtm.23524.4 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rtm.23524.1 to 8.0.0-rtm.23524.4 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rtm.23524.1 to 8.0.0-rtm.23524.4 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rtm.23524.1 to 8.0.0-rtm.23524.4 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rtm.23524.1 to 8.0.0-rtm.23524.4 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rtm.23524.1 to 8.0.0-rtm.23524.4 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rtm.23524.1 to 8.0.0-rtm.23524.4 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rtm.23524.1 to 8.0.0-rtm.23524.4 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rtm.23524.1 to 8.0.0-rtm.23524.4 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rtm.23524.1 to 8.0.0-rtm.23524.4 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rtm.23524.1 to 8.0.0-rtm.23524.4 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rtm.23524.1 to 8.0.0-rtm.23524.4 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rtm.23524.1 to 8.0.0-rtm.23524.4 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rtm.23524.1 to 8.0.0-rtm.23524.4 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Drawing.Common: from 8.0.0-rtm.23524.1 to 8.0.0 (parent: Microsoft.DotNet.Wpf.GitHub) --- NuGet.config | 3 +++ eng/Version.Details.xml | 24 ++++++++++++------------ eng/Versions.props | 10 +++++----- 3 files changed, 20 insertions(+), 17 deletions(-) diff --git a/NuGet.config b/NuGet.config index 7256cfaf2..7f47a74d9 100644 --- a/NuGet.config +++ b/NuGet.config @@ -11,6 +11,9 @@ + + + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index b4ff172c7..96e233369 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -5,17 +5,17 @@ https://github.com/dotnet/runtime 488a8a3521610422e8fbe22d5cc66127f3dce3dc - + https://github.com/dotnet/winforms - d77ef3b1a253a99d0be23cec35e84d2fb3317ac5 + b506aef57160b27d2ca66f75a80f3237a91c8fec - + https://github.com/dotnet/wpf - eb2c28846bd06cc11a0cd432d55639a850a829a3 + 68fcff1c1995a3fbd596ca4c1df4bdbadede66a2 - + https://github.com/dotnet/wpf - eb2c28846bd06cc11a0cd432d55639a850a829a3 + 68fcff1c1995a3fbd596ca4c1df4bdbadede66a2 https://github.com/dotnet/runtime @@ -29,13 +29,13 @@ https://github.com/dotnet/runtime 488a8a3521610422e8fbe22d5cc66127f3dce3dc - + https://github.com/dotnet/winforms - d77ef3b1a253a99d0be23cec35e84d2fb3317ac5 + b506aef57160b27d2ca66f75a80f3237a91c8fec - + https://github.com/dotnet/wpf - eb2c28846bd06cc11a0cd432d55639a850a829a3 + 68fcff1c1995a3fbd596ca4c1df4bdbadede66a2 https://github.com/dotnet/runtime @@ -145,9 +145,9 @@ https://github.com/dotnet/runtime 488a8a3521610422e8fbe22d5cc66127f3dce3dc - + https://github.com/dotnet/winforms - d77ef3b1a253a99d0be23cec35e84d2fb3317ac5 + b506aef57160b27d2ca66f75a80f3237a91c8fec diff --git a/eng/Versions.props b/eng/Versions.props index 2b8533c4a..7851b8e46 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -65,11 +65,11 @@ 4.10.0 - 8.0.0-rtm.23524.1 - 8.0.0-rtm.23524.1 - 8.0.0-rtm.23524.1 + 8.0.0-rtm.23524.4 + 8.0.0-rtm.23524.4 + 8.0.0 - 8.0.0-rtm.23524.1 - 8.0.0-rtm.23524.1 + 8.0.0-rtm.23524.3 + 8.0.0-rtm.23524.3 From 715d0fcfe567a96dad2c06736df8648633e6266e Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Tue, 24 Oct 2023 18:44:43 +0000 Subject: [PATCH 085/222] [release/8.0] Update dependencies from dotnet/wpf (#3918) [release/8.0] Update dependencies from dotnet/wpf - Coherency Updates: - Microsoft.Private.Winforms: from 8.0.0-rtm.23524.4 to 8.0.0-rtm.23524.5 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rtm.23524.4 to 8.0.0-rtm.23524.5 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rtm.23524.4 to 8.0.0-rtm.23524.5 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rtm.23524.4 to 8.0.0-rtm.23524.5 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Dotnet.WinForms.ProjectTemplates: from 8.0.0-rtm.23524.4 to 8.0.0-rtm.23524.5 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rtm.23524.4 to 8.0.0-rtm.23524.5 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rtm.23524.4 to 8.0.0-rtm.23524.5 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rtm.23524.4 to 8.0.0-rtm.23524.5 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rtm.23524.4 to 8.0.0-rtm.23524.5 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rtm.23524.4 to 8.0.0-rtm.23524.5 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rtm.23524.4 to 8.0.0-rtm.23524.5 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rtm.23524.4 to 8.0.0-rtm.23524.5 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rtm.23524.4 to 8.0.0-rtm.23524.5 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rtm.23524.4 to 8.0.0-rtm.23524.5 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rtm.23524.4 to 8.0.0-rtm.23524.5 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rtm.23524.4 to 8.0.0-rtm.23524.5 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rtm.23524.4 to 8.0.0-rtm.23524.5 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rtm.23524.4 to 8.0.0-rtm.23524.5 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rtm.23524.4 to 8.0.0-rtm.23524.5 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rtm.23524.4 to 8.0.0-rtm.23524.5 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rtm.23524.4 to 8.0.0-rtm.23524.5 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rtm.23524.4 to 8.0.0-rtm.23524.5 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rtm.23524.4 to 8.0.0-rtm.23524.5 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rtm.23524.4 to 8.0.0-rtm.23524.5 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rtm.23524.4 to 8.0.0-rtm.23524.5 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rtm.23524.4 to 8.0.0-rtm.23524.5 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rtm.23524.4 to 8.0.0-rtm.23524.5 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rtm.23524.4 to 8.0.0-rtm.23524.5 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rtm.23524.4 to 8.0.0-rtm.23524.5 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rtm.23524.4 to 8.0.0-rtm.23524.5 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rtm.23524.4 to 8.0.0-rtm.23524.5 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rtm.23524.4 to 8.0.0-rtm.23524.5 (parent: Microsoft.DotNet.Wpf.GitHub) --- eng/Version.Details.xml | 16 ++++++++-------- eng/Versions.props | 8 ++++---- 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 96e233369..8afd1b8e0 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -5,17 +5,17 @@ https://github.com/dotnet/runtime 488a8a3521610422e8fbe22d5cc66127f3dce3dc - + https://github.com/dotnet/winforms b506aef57160b27d2ca66f75a80f3237a91c8fec - + https://github.com/dotnet/wpf - 68fcff1c1995a3fbd596ca4c1df4bdbadede66a2 + daef397783c969da29b77e4b4021d38faafbd575 - + https://github.com/dotnet/wpf - 68fcff1c1995a3fbd596ca4c1df4bdbadede66a2 + daef397783c969da29b77e4b4021d38faafbd575 https://github.com/dotnet/runtime @@ -29,13 +29,13 @@ https://github.com/dotnet/runtime 488a8a3521610422e8fbe22d5cc66127f3dce3dc - + https://github.com/dotnet/winforms b506aef57160b27d2ca66f75a80f3237a91c8fec - + https://github.com/dotnet/wpf - 68fcff1c1995a3fbd596ca4c1df4bdbadede66a2 + daef397783c969da29b77e4b4021d38faafbd575 https://github.com/dotnet/runtime diff --git a/eng/Versions.props b/eng/Versions.props index 7851b8e46..4f34418e0 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -65,11 +65,11 @@ 4.10.0 - 8.0.0-rtm.23524.4 - 8.0.0-rtm.23524.4 + 8.0.0-rtm.23524.5 + 8.0.0-rtm.23524.5 8.0.0 - 8.0.0-rtm.23524.3 - 8.0.0-rtm.23524.3 + 8.0.0-rtm.23524.4 + 8.0.0-rtm.23524.4 From 4fa7338ac4da08dd24c06a0fb4217e6b68f261f9 Mon Sep 17 00:00:00 2001 From: Loni Tra Date: Tue, 24 Oct 2023 12:36:15 -0700 Subject: [PATCH 086/222] Enable Stable Branding .NET 8 RTM (#3905) Enable stable branding --- eng/Versions.props | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eng/Versions.props b/eng/Versions.props index 4f34418e0..5e69db8a1 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -7,7 +7,7 @@ - false + true release From 29f4d22f72948f6e8efcb22415629c1b635717ce Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Wed, 25 Oct 2023 11:52:46 +0000 Subject: [PATCH 087/222] [release/8.0] Update dependencies from dotnet/wpf (#3920) [release/8.0] Update dependencies from dotnet/wpf - Coherency Updates: - Microsoft.Private.Winforms: from 8.0.0-rtm.23524.5 to 8.0.0-rtm.23524.9 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Internal.Runtime.WindowsDesktop.Transport: from 8.0.0-rtm.23523.12 to 8.0.0-rtm.23524.7 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23524.5 to 8.0.0-rtm.23524.9 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.NETCore.App.Ref: from 8.0.0 to 8.0.0 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23524.5 to 8.0.0-rtm.23524.9 (parent: Microsoft.DotNet.Wpf.GitHub) - VS.Redist.Common.NetCore.SharedFramework.x64.8.0: from 8.0.0-rtm.23523.12 to 8.0.0-rtm.23524.7 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23524.5 to 8.0.0-rtm.23524.9 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.NETCore.App.Runtime.win-x64: from 8.0.0 to 8.0.0 (parent: Microsoft.Private.Winforms) - Microsoft.Dotnet.WinForms.ProjectTemplates: from 8.0.0-rtm.23524.5 to 8.0.0-rtm.23524.9 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Private.Winforms: from 8.0.0-rtm.23524.5 to 8.0.0-rtm.23524.9 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Win32.Registry.AccessControl: from 8.0.0 to 8.0.0 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23524.5 to 8.0.0-rtm.23524.9 (parent: Microsoft.DotNet.Wpf.GitHub) - Microsoft.Win32.SystemEvents: from 8.0.0 to 8.0.0 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23524.5 to 8.0.0-rtm.23524.9 (parent: Microsoft.DotNet.Wpf.GitHub) - System.CodeDom: from 8.0.0 to 8.0.0 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23524.5 to 8.0.0-rtm.23524.9 (parent: Microsoft.DotNet.Wpf.GitHub) - System.ComponentModel.Composition: from 8.0.0 to 8.0.0 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23524.5 to 8.0.0-rtm.23524.9 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Configuration.ConfigurationManager: from 8.0.0 to 8.0.0 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23524.5 to 8.0.0-rtm.23524.9 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Data.Odbc: from 8.0.0 to 8.0.0 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23524.5 to 8.0.0-rtm.23524.9 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Data.OleDb: from 8.0.0 to 8.0.0 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23524.5 to 8.0.0-rtm.23524.9 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Diagnostics.EventLog: from 8.0.0 to 8.0.0 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23524.5 to 8.0.0-rtm.23524.9 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Diagnostics.PerformanceCounter: from 8.0.0 to 8.0.0 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23524.5 to 8.0.0-rtm.23524.9 (parent: Microsoft.DotNet.Wpf.GitHub) - System.DirectoryServices.AccountManagement: from 8.0.0 to 8.0.0 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23524.5 to 8.0.0-rtm.23524.9 (parent: Microsoft.DotNet.Wpf.GitHub) - System.DirectoryServices.Protocols: from 8.0.0 to 8.0.0 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23524.5 to 8.0.0-rtm.23524.9 (parent: Microsoft.DotNet.Wpf.GitHub) - System.DirectoryServices: from 8.0.0 to 8.0.0 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23524.5 to 8.0.0-rtm.23524.9 (parent: Microsoft.DotNet.Wpf.GitHub) - System.IO.Packaging: from 8.0.0 to 8.0.0 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23524.5 to 8.0.0-rtm.23524.9 (parent: Microsoft.DotNet.Wpf.GitHub) - System.IO.Ports: from 8.0.0 to 8.0.0 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23524.5 to 8.0.0-rtm.23524.9 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Management: from 8.0.0 to 8.0.0 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23524.5 to 8.0.0-rtm.23524.9 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Reflection.Context: from 8.0.0 to 8.0.0 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23524.5 to 8.0.0-rtm.23524.9 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Runtime.Caching: from 8.0.0 to 8.0.0 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23524.5 to 8.0.0-rtm.23524.9 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Security.Cryptography.Pkcs: from 8.0.0 to 8.0.0 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23524.5 to 8.0.0-rtm.23524.9 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Security.Cryptography.ProtectedData: from 8.0.0 to 8.0.0 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23524.5 to 8.0.0-rtm.23524.9 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Security.Cryptography.Xml: from 8.0.0 to 8.0.0 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23524.5 to 8.0.0-rtm.23524.9 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Security.Permissions: from 8.0.0 to 8.0.0 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23524.5 to 8.0.0-rtm.23524.9 (parent: Microsoft.DotNet.Wpf.GitHub) - System.ServiceModel.Syndication: from 8.0.0 to 8.0.0 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23524.5 to 8.0.0-rtm.23524.9 (parent: Microsoft.DotNet.Wpf.GitHub) - System.ServiceProcess.ServiceController: from 8.0.0 to 8.0.0 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23524.5 to 8.0.0-rtm.23524.9 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Speech: from 8.0.0 to 8.0.0 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23524.5 to 8.0.0-rtm.23524.9 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Text.Encoding.CodePages: from 8.0.0 to 8.0.0 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23524.5 to 8.0.0-rtm.23524.9 (parent: Microsoft.DotNet.Wpf.GitHub) - System.Threading.AccessControl: from 8.0.0 to 8.0.0 (parent: Microsoft.Private.Winforms) - Microsoft.Private.Winforms: from 8.0.0-rtm.23524.5 to 8.0.0-rtm.23524.9 (parent: Microsoft.DotNet.Wpf.GitHub) - System.ComponentModel.Composition.Registration: from 8.0.0 to 8.0.0 (parent: Microsoft.Private.Winforms) - System.Drawing.Common: from 8.0.0 to 8.0.0 (parent: Microsoft.DotNet.Wpf.GitHub) - add missing winforms feed --- NuGet.config | 4 +- eng/Version.Details.xml | 88 ++++++++++++++++++++--------------------- eng/Versions.props | 12 +++--- 3 files changed, 52 insertions(+), 52 deletions(-) diff --git a/NuGet.config b/NuGet.config index 7f47a74d9..63d870fda 100644 --- a/NuGet.config +++ b/NuGet.config @@ -9,10 +9,10 @@ - + - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 8afd1b8e0..3ce4af472 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,153 +1,153 @@ - + https://github.com/dotnet/runtime - 488a8a3521610422e8fbe22d5cc66127f3dce3dc + 59edaad404d1b8e47080015ae8d0787f94c970df - + https://github.com/dotnet/winforms - b506aef57160b27d2ca66f75a80f3237a91c8fec + f8fb0c5ce770d42e59c462f8d14d0bfc2ec6207b - + https://github.com/dotnet/wpf - daef397783c969da29b77e4b4021d38faafbd575 + 4f2ac034a3895346f78c0ce866b792dad3f1ee94 - + https://github.com/dotnet/wpf - daef397783c969da29b77e4b4021d38faafbd575 + 4f2ac034a3895346f78c0ce866b792dad3f1ee94 https://github.com/dotnet/runtime - 488a8a3521610422e8fbe22d5cc66127f3dce3dc + 59edaad404d1b8e47080015ae8d0787f94c970df - + https://github.com/dotnet/runtime - 488a8a3521610422e8fbe22d5cc66127f3dce3dc + 59edaad404d1b8e47080015ae8d0787f94c970df https://github.com/dotnet/runtime - 488a8a3521610422e8fbe22d5cc66127f3dce3dc + 59edaad404d1b8e47080015ae8d0787f94c970df - + https://github.com/dotnet/winforms - b506aef57160b27d2ca66f75a80f3237a91c8fec + f8fb0c5ce770d42e59c462f8d14d0bfc2ec6207b - + https://github.com/dotnet/wpf - daef397783c969da29b77e4b4021d38faafbd575 + 4f2ac034a3895346f78c0ce866b792dad3f1ee94 https://github.com/dotnet/runtime - 488a8a3521610422e8fbe22d5cc66127f3dce3dc + 59edaad404d1b8e47080015ae8d0787f94c970df https://github.com/dotnet/runtime - 488a8a3521610422e8fbe22d5cc66127f3dce3dc + 59edaad404d1b8e47080015ae8d0787f94c970df https://github.com/dotnet/runtime - 488a8a3521610422e8fbe22d5cc66127f3dce3dc + 59edaad404d1b8e47080015ae8d0787f94c970df https://github.com/dotnet/runtime - 488a8a3521610422e8fbe22d5cc66127f3dce3dc + 59edaad404d1b8e47080015ae8d0787f94c970df https://github.com/dotnet/runtime - 488a8a3521610422e8fbe22d5cc66127f3dce3dc + 59edaad404d1b8e47080015ae8d0787f94c970df https://github.com/dotnet/runtime - 488a8a3521610422e8fbe22d5cc66127f3dce3dc + 59edaad404d1b8e47080015ae8d0787f94c970df https://github.com/dotnet/runtime - 488a8a3521610422e8fbe22d5cc66127f3dce3dc + 59edaad404d1b8e47080015ae8d0787f94c970df https://github.com/dotnet/runtime - 488a8a3521610422e8fbe22d5cc66127f3dce3dc + 59edaad404d1b8e47080015ae8d0787f94c970df https://github.com/dotnet/runtime - 488a8a3521610422e8fbe22d5cc66127f3dce3dc + 59edaad404d1b8e47080015ae8d0787f94c970df https://github.com/dotnet/runtime - 488a8a3521610422e8fbe22d5cc66127f3dce3dc + 59edaad404d1b8e47080015ae8d0787f94c970df https://github.com/dotnet/runtime - 488a8a3521610422e8fbe22d5cc66127f3dce3dc + 59edaad404d1b8e47080015ae8d0787f94c970df https://github.com/dotnet/runtime - 488a8a3521610422e8fbe22d5cc66127f3dce3dc + 59edaad404d1b8e47080015ae8d0787f94c970df https://github.com/dotnet/runtime - 488a8a3521610422e8fbe22d5cc66127f3dce3dc + 59edaad404d1b8e47080015ae8d0787f94c970df https://github.com/dotnet/runtime - 488a8a3521610422e8fbe22d5cc66127f3dce3dc + 59edaad404d1b8e47080015ae8d0787f94c970df https://github.com/dotnet/runtime - 488a8a3521610422e8fbe22d5cc66127f3dce3dc + 59edaad404d1b8e47080015ae8d0787f94c970df https://github.com/dotnet/runtime - 488a8a3521610422e8fbe22d5cc66127f3dce3dc + 59edaad404d1b8e47080015ae8d0787f94c970df https://github.com/dotnet/runtime - 488a8a3521610422e8fbe22d5cc66127f3dce3dc + 59edaad404d1b8e47080015ae8d0787f94c970df https://github.com/dotnet/runtime - 488a8a3521610422e8fbe22d5cc66127f3dce3dc + 59edaad404d1b8e47080015ae8d0787f94c970df https://github.com/dotnet/runtime - 488a8a3521610422e8fbe22d5cc66127f3dce3dc + 59edaad404d1b8e47080015ae8d0787f94c970df https://github.com/dotnet/runtime - 488a8a3521610422e8fbe22d5cc66127f3dce3dc + 59edaad404d1b8e47080015ae8d0787f94c970df https://github.com/dotnet/runtime - 488a8a3521610422e8fbe22d5cc66127f3dce3dc + 59edaad404d1b8e47080015ae8d0787f94c970df https://github.com/dotnet/runtime - 488a8a3521610422e8fbe22d5cc66127f3dce3dc + 59edaad404d1b8e47080015ae8d0787f94c970df https://github.com/dotnet/runtime - 488a8a3521610422e8fbe22d5cc66127f3dce3dc + 59edaad404d1b8e47080015ae8d0787f94c970df https://github.com/dotnet/runtime - 488a8a3521610422e8fbe22d5cc66127f3dce3dc + 59edaad404d1b8e47080015ae8d0787f94c970df https://github.com/dotnet/runtime - 488a8a3521610422e8fbe22d5cc66127f3dce3dc + 59edaad404d1b8e47080015ae8d0787f94c970df https://github.com/dotnet/runtime - 488a8a3521610422e8fbe22d5cc66127f3dce3dc + 59edaad404d1b8e47080015ae8d0787f94c970df https://github.com/dotnet/runtime - 488a8a3521610422e8fbe22d5cc66127f3dce3dc + 59edaad404d1b8e47080015ae8d0787f94c970df https://github.com/dotnet/winforms - b506aef57160b27d2ca66f75a80f3237a91c8fec + f8fb0c5ce770d42e59c462f8d14d0bfc2ec6207b diff --git a/eng/Versions.props b/eng/Versions.props index 5e69db8a1..7a53c4e7c 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -25,7 +25,7 @@ 6.2.4 - 8.0.0-rtm.23523.12 + 8.0.0-rtm.23524.7 8.0.0 8.0.0 8.0.0 @@ -61,15 +61,15 @@ 8.0.0 8.0.0 8.0.0 - 8.0.0-rtm.23523.12 + 8.0.0-rtm.23524.7 4.10.0 - 8.0.0-rtm.23524.5 - 8.0.0-rtm.23524.5 + 8.0.0-rtm.23524.9 + 8.0.0-rtm.23524.9 8.0.0 - 8.0.0-rtm.23524.4 - 8.0.0-rtm.23524.4 + 8.0.0-rtm.23524.6 + 8.0.0-rtm.23524.6 From edccb53b0dec7b034b2252d4f5ed87181751fc5f Mon Sep 17 00:00:00 2001 From: DotNet Bot Date: Thu, 26 Oct 2023 13:51:54 +0000 Subject: [PATCH 088/222] Merged PR 34823: [internal/release/8.0] Update dependencies from dnceng/internal/dotnet-wpf This pull request updates the following dependencies [marker]: <> (Begin:Coherency Updates) ## Coherency Updates The following updates ensure that dependencies with a *CoherentParentDependency* attribute were produced in a build used as input to the parent dependency's build. See [Dependency Description Format](https://github.com/dotnet/arcade/blob/master/Documentation/DependencyDescriptionFormat.md#dependency-description-overview) [DependencyUpdate]: <> (Begin) - **Coherency Updates**: - **Microsoft.Private.Winforms**: from 8.0.0-rtm.23524.9 to 8.0.0-rtm.23525.7 (parent: Microsoft.DotNet.Wpf.GitHub) - **Microsoft.Internal.Runtime.WindowsDesktop.Transport**: from 8.0.0-rtm.23524.7 to 8.0.0-rtm.23525.7 (parent: Microsoft.Private.Winforms) - **Microsoft.Private.Winforms**: from 8.0.0-rtm.23524.9 to 8.0.0-rtm.23525.7 (parent: Microsoft.DotNet.Wpf.GitHub) - **Microsoft.NETCore.App.Ref**: from 8.0.0 to 8.0.0 (parent: Microsoft.Private.Winforms) - **Microsoft.Private.Winforms**: from 8.0.0-rtm.23524.9 to 8.0.0-rtm.23525.7 (parent: Microsoft.DotNet.Wpf.GitHub) - **VS.Redist.Common.NetCore.SharedFramework.x64.8.0**: from 8.0.0-rtm.23524.7 to 8.0.0-rtm.23525.7 (parent: Microsoft.Private.Winforms) - **Microsoft.Private.Winforms**: from 8.0.0-rtm.23524.9 to 8.0.0-rtm.23525.7 (parent: Microsoft.DotNet.Wpf.GitHub) - **Microsoft.NETCore.App.Runtime.win-x64**: from 8.0.0 to 8.0.0 (parent: Microsoft.Private.Winforms) - **Microsoft.Dotnet.WinForms.ProjectTemplates**: from 8.0.0-rtm.23524.9 to 8.0.0-rtm.23525.7 (parent: Microsoft.DotNet.Wpf.GitHub) - **Microsoft.Private.Winforms**: from 8.0.0-rtm.23524.9 to 8.0.0-rtm.23525.7 (parent: Microsoft.DotNet.Wpf.GitHub) - **Microsoft.Win32.Registry.AccessControl**: from 8.0.0 to 8.0.0 (parent: Microsoft.Private.Winforms) - **Microsoft.Private.Winforms**: from 8.0.0-rtm.23524.9 to 8.0.0-rtm.23525.7 (parent: Microsoft.DotNet.Wpf.GitHub) - **Microsoft.Win32.SystemEvents**: from 8.0.0 to 8.0.0 (parent: Microsoft.Private.Winforms) - **Microsoft.Private.Winforms**: from 8.0.0-rtm.23524.9 to 8.0.0-rtm.23525.7 (parent: Microsoft.DotNet.Wpf.GitHub) - **System.CodeDom**: from 8.0.0 to 8.0.0 (parent: Microsoft.Private.Winforms) - **Microsoft.Private.Winforms**: from 8.0.0-rtm.23524.9 to 8.0.0-rtm.23525.7 (parent: Microsoft.DotNet.Wpf.GitHub) - **System.ComponentModel.Composition**: from 8.0.0 to 8.0.0 (parent: Microsoft.Private.Winforms) - **Microsoft.Private.Winforms**: from 8.0.0-rtm.23524.9 to 8.0.0-rtm.23525.7 (parent: Microsoft.DotNet.Wpf.GitHub) - **System.Configuration.ConfigurationManager**: from 8.0.0 to 8.0.0 (parent: Microsoft.Private.Winforms) - **Microsoft.Private.Winforms**: from 8.0.0-rtm.23524.9 to 8.0.0-rtm.23525.7 (parent: Microsoft.DotNet.Wpf.GitHub) - **System.Data.Odbc**: from 8.0.0 to 8.0.0 (parent: Microsoft.Private.Winforms) - **Microsoft.Private.Winforms**: from 8.0.0-rtm.23524.9 to 8.0.0-rtm.23525.7 (parent: Microsoft.DotNet.Wp... --- NuGet.config | 12 ++- eng/Version.Details.xml | 162 ++++++++++++++++++++-------------------- eng/Versions.props | 12 +-- 3 files changed, 97 insertions(+), 89 deletions(-) diff --git a/NuGet.config b/NuGet.config index 63d870fda..600c37f6c 100644 --- a/NuGet.config +++ b/NuGet.config @@ -9,10 +9,10 @@ - + - + @@ -23,5 +23,13 @@ + + + + + + + + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 3ce4af472..8a71623d4 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,153 +1,153 @@ - - https://github.com/dotnet/runtime - 59edaad404d1b8e47080015ae8d0787f94c970df + + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime + 17ea9ab3f662320d4ac62d3a2b783b5054ad80bf - - https://github.com/dotnet/winforms - f8fb0c5ce770d42e59c462f8d14d0bfc2ec6207b + + https://dev.azure.com/dnceng/internal/_git/dotnet-winforms + 44849e81b34d51fe9d6d2163bd4b1ab7a0ada387 - - https://github.com/dotnet/wpf - 4f2ac034a3895346f78c0ce866b792dad3f1ee94 + + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf + 7d1347568b78bfc41c92855aecb9a301e08590fb - - https://github.com/dotnet/wpf - 4f2ac034a3895346f78c0ce866b792dad3f1ee94 + + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf + 7d1347568b78bfc41c92855aecb9a301e08590fb - https://github.com/dotnet/runtime - 59edaad404d1b8e47080015ae8d0787f94c970df + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime + 17ea9ab3f662320d4ac62d3a2b783b5054ad80bf - - https://github.com/dotnet/runtime - 59edaad404d1b8e47080015ae8d0787f94c970df + + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime + 17ea9ab3f662320d4ac62d3a2b783b5054ad80bf - https://github.com/dotnet/runtime - 59edaad404d1b8e47080015ae8d0787f94c970df + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime + 17ea9ab3f662320d4ac62d3a2b783b5054ad80bf - - https://github.com/dotnet/winforms - f8fb0c5ce770d42e59c462f8d14d0bfc2ec6207b + + https://dev.azure.com/dnceng/internal/_git/dotnet-winforms + 44849e81b34d51fe9d6d2163bd4b1ab7a0ada387 - - https://github.com/dotnet/wpf - 4f2ac034a3895346f78c0ce866b792dad3f1ee94 + + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf + 7d1347568b78bfc41c92855aecb9a301e08590fb - https://github.com/dotnet/runtime - 59edaad404d1b8e47080015ae8d0787f94c970df + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime + 17ea9ab3f662320d4ac62d3a2b783b5054ad80bf - https://github.com/dotnet/runtime - 59edaad404d1b8e47080015ae8d0787f94c970df + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime + 17ea9ab3f662320d4ac62d3a2b783b5054ad80bf - https://github.com/dotnet/runtime - 59edaad404d1b8e47080015ae8d0787f94c970df + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime + 17ea9ab3f662320d4ac62d3a2b783b5054ad80bf - https://github.com/dotnet/runtime - 59edaad404d1b8e47080015ae8d0787f94c970df + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime + 17ea9ab3f662320d4ac62d3a2b783b5054ad80bf - https://github.com/dotnet/runtime - 59edaad404d1b8e47080015ae8d0787f94c970df + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime + 17ea9ab3f662320d4ac62d3a2b783b5054ad80bf - https://github.com/dotnet/runtime - 59edaad404d1b8e47080015ae8d0787f94c970df + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime + 17ea9ab3f662320d4ac62d3a2b783b5054ad80bf - https://github.com/dotnet/runtime - 59edaad404d1b8e47080015ae8d0787f94c970df + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime + 17ea9ab3f662320d4ac62d3a2b783b5054ad80bf - https://github.com/dotnet/runtime - 59edaad404d1b8e47080015ae8d0787f94c970df + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime + 17ea9ab3f662320d4ac62d3a2b783b5054ad80bf - https://github.com/dotnet/runtime - 59edaad404d1b8e47080015ae8d0787f94c970df + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime + 17ea9ab3f662320d4ac62d3a2b783b5054ad80bf - https://github.com/dotnet/runtime - 59edaad404d1b8e47080015ae8d0787f94c970df + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime + 17ea9ab3f662320d4ac62d3a2b783b5054ad80bf - https://github.com/dotnet/runtime - 59edaad404d1b8e47080015ae8d0787f94c970df + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime + 17ea9ab3f662320d4ac62d3a2b783b5054ad80bf - https://github.com/dotnet/runtime - 59edaad404d1b8e47080015ae8d0787f94c970df + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime + 17ea9ab3f662320d4ac62d3a2b783b5054ad80bf - https://github.com/dotnet/runtime - 59edaad404d1b8e47080015ae8d0787f94c970df + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime + 17ea9ab3f662320d4ac62d3a2b783b5054ad80bf - https://github.com/dotnet/runtime - 59edaad404d1b8e47080015ae8d0787f94c970df + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime + 17ea9ab3f662320d4ac62d3a2b783b5054ad80bf - https://github.com/dotnet/runtime - 59edaad404d1b8e47080015ae8d0787f94c970df + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime + 17ea9ab3f662320d4ac62d3a2b783b5054ad80bf - https://github.com/dotnet/runtime - 59edaad404d1b8e47080015ae8d0787f94c970df + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime + 17ea9ab3f662320d4ac62d3a2b783b5054ad80bf - https://github.com/dotnet/runtime - 59edaad404d1b8e47080015ae8d0787f94c970df + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime + 17ea9ab3f662320d4ac62d3a2b783b5054ad80bf - https://github.com/dotnet/runtime - 59edaad404d1b8e47080015ae8d0787f94c970df + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime + 17ea9ab3f662320d4ac62d3a2b783b5054ad80bf - https://github.com/dotnet/runtime - 59edaad404d1b8e47080015ae8d0787f94c970df + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime + 17ea9ab3f662320d4ac62d3a2b783b5054ad80bf - https://github.com/dotnet/runtime - 59edaad404d1b8e47080015ae8d0787f94c970df + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime + 17ea9ab3f662320d4ac62d3a2b783b5054ad80bf - https://github.com/dotnet/runtime - 59edaad404d1b8e47080015ae8d0787f94c970df + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime + 17ea9ab3f662320d4ac62d3a2b783b5054ad80bf - https://github.com/dotnet/runtime - 59edaad404d1b8e47080015ae8d0787f94c970df + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime + 17ea9ab3f662320d4ac62d3a2b783b5054ad80bf - https://github.com/dotnet/runtime - 59edaad404d1b8e47080015ae8d0787f94c970df + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime + 17ea9ab3f662320d4ac62d3a2b783b5054ad80bf - https://github.com/dotnet/runtime - 59edaad404d1b8e47080015ae8d0787f94c970df + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime + 17ea9ab3f662320d4ac62d3a2b783b5054ad80bf - https://github.com/dotnet/runtime - 59edaad404d1b8e47080015ae8d0787f94c970df + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime + 17ea9ab3f662320d4ac62d3a2b783b5054ad80bf - https://github.com/dotnet/runtime - 59edaad404d1b8e47080015ae8d0787f94c970df + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime + 17ea9ab3f662320d4ac62d3a2b783b5054ad80bf - https://github.com/dotnet/runtime - 59edaad404d1b8e47080015ae8d0787f94c970df + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime + 17ea9ab3f662320d4ac62d3a2b783b5054ad80bf - https://github.com/dotnet/winforms - f8fb0c5ce770d42e59c462f8d14d0bfc2ec6207b + https://dev.azure.com/dnceng/internal/_git/dotnet-winforms + 44849e81b34d51fe9d6d2163bd4b1ab7a0ada387 diff --git a/eng/Versions.props b/eng/Versions.props index 7a53c4e7c..59247567d 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -25,7 +25,7 @@ 6.2.4 - 8.0.0-rtm.23524.7 + 8.0.0-rtm.23525.7 8.0.0 8.0.0 8.0.0 @@ -61,15 +61,15 @@ 8.0.0 8.0.0 8.0.0 - 8.0.0-rtm.23524.7 + 8.0.0-rtm.23525.7 4.10.0 - 8.0.0-rtm.23524.9 - 8.0.0-rtm.23524.9 + 8.0.0-rtm.23525.7 + 8.0.0-rtm.23525.7 8.0.0 - 8.0.0-rtm.23524.6 - 8.0.0-rtm.23524.6 + 8.0.0-rtm.23526.1 + 8.0.0-rtm.23526.1 From 4031260c723039152662ae5c8e70151f57794ae6 Mon Sep 17 00:00:00 2001 From: DotNet Bot Date: Thu, 26 Oct 2023 20:06:57 +0000 Subject: [PATCH 089/222] Merged PR 34851: [internal/release/8.0] Update dependencies from dnceng/internal/dotnet-wpf This pull request updates the following dependencies [marker]: <> (Begin:Coherency Updates) ## Coherency Updates The following updates ensure that dependencies with a *CoherentParentDependency* attribute were produced in a build used as input to the parent dependency's build. See [Dependency Description Format](https://github.com/dotnet/arcade/blob/master/Documentation/DependencyDescriptionFormat.md#dependency-description-overview) [DependencyUpdate]: <> (Begin) - **Coherency Updates**: - **Microsoft.Private.Winforms**: from 8.0.0-rtm.23525.7 to 8.0.0-rtm.23526.3 (parent: Microsoft.DotNet.Wpf.GitHub) - **Microsoft.Private.Winforms**: from 8.0.0-rtm.23525.7 to 8.0.0-rtm.23526.3 (parent: Microsoft.DotNet.Wpf.GitHub) - **Microsoft.Private.Winforms**: from 8.0.0-rtm.23525.7 to 8.0.0-rtm.23526.3 (parent: Microsoft.DotNet.Wpf.GitHub) - **Microsoft.Private.Winforms**: from 8.0.0-rtm.23525.7 to 8.0.0-rtm.23526.3 (parent: Microsoft.DotNet.Wpf.GitHub) - **Microsoft.Dotnet.WinForms.ProjectTemplates**: from 8.0.0-rtm.23525.7 to 8.0.0-rtm.23526.3 (parent: Microsoft.DotNet.Wpf.GitHub) - **Microsoft.Private.Winforms**: from 8.0.0-rtm.23525.7 to 8.0.0-rtm.23526.3 (parent: Microsoft.DotNet.Wpf.GitHub) - **Microsoft.Private.Winforms**: from 8.0.0-rtm.23525.7 to 8.0.0-rtm.23526.3 (parent: Microsoft.DotNet.Wpf.GitHub) - **Microsoft.Private.Winforms**: from 8.0.0-rtm.23525.7 to 8.0.0-rtm.23526.3 (parent: Microsoft.DotNet.Wpf.GitHub) - **Microsoft.Private.Winforms**: from 8.0.0-rtm.23525.7 to 8.0.0-rtm.23526.3 (parent: Microsoft.DotNet.Wpf.GitHub) - **Microsoft.Private.Winforms**: from 8.0.0-rtm.23525.7 to 8.0.0-rtm.23526.3 (parent: Microsoft.DotNet.Wpf.GitHub) - **Microsoft.Private.Winforms**: from 8.0.0-rtm.23525.7 to 8.0.0-rtm.23526.3 (parent: Microsoft.DotNet.Wpf.GitHub) - **Microsoft.Private.Winforms**: from 8.0.0-rtm.23525.7 to 8.0.0-rtm.23526.3 (parent: Microsoft.DotNet.Wpf.GitHub) - **Microsoft.Private.Winforms**: from 8.0.0-rtm.23525.7 to 8.0.0-rtm.23526.3 (parent: Microsoft.DotNet.Wpf.GitHub) - **Microsoft.Private.Winforms**: from 8.0.0-rtm.23525.7 to 8.0.0-rtm.23526.3 (parent: Microsoft.DotNet.Wpf.GitHub) - **Microsoft.Private.Winforms**: from 8.0.0-rtm.23525.7 to 8.0.0-rtm.23526.3 (parent: Microsoft.DotNet.Wpf.GitHub) - **Microsoft.Private.Winforms**: from 8.0.0-rtm.23525.7 to 8.0.0-rtm.23526.3 (parent: Microsoft.DotNet.Wpf.GitHub) - **Microsoft.Private.Winforms**: from 8.0.0-rtm.23525.7 to 8.0.0-rtm.23526.3 (parent: Microsoft.DotNet.Wpf.GitHub) - **Microsoft.Private.Winforms**: from 8.0.0-rtm.23525.7 to 8.0.0-rtm.23526.3 (parent: Microsoft.DotNet.Wpf.GitHub) - **Microsoft.Private.Winforms**: from 8.0.0-rtm.23525.7 to 8.0.0-rtm.23526.3 (parent: Microsoft.DotNet.Wpf.GitHub) - **Microsoft.Private.Winforms**: from 8.0.0-rtm.23525.7 to 8.0.0-rtm.23526.3 (parent: Microsoft.DotNet.Wpf.GitHub) - **Microsoft.Private.Winforms**: from 8.0.0-rtm.23525.7 to 8.0.0-rtm.23526.3 (parent: Microso... --- NuGet.config | 4 ++-- eng/Version.Details.xml | 22 +++++++++++----------- eng/Versions.props | 8 ++++---- 3 files changed, 17 insertions(+), 17 deletions(-) diff --git a/NuGet.config b/NuGet.config index 600c37f6c..3bc5117da 100644 --- a/NuGet.config +++ b/NuGet.config @@ -12,7 +12,7 @@ - + @@ -28,7 +28,7 @@ - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 8a71623d4..4ed808906 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -5,17 +5,17 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime 17ea9ab3f662320d4ac62d3a2b783b5054ad80bf - + https://dev.azure.com/dnceng/internal/_git/dotnet-winforms - 44849e81b34d51fe9d6d2163bd4b1ab7a0ada387 + 718c6eea1a6aaef771fd2ab88168ec0de6c26929 - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - 7d1347568b78bfc41c92855aecb9a301e08590fb + 7dc2766592abf35c9ff0ae407fe1af20ab4be76b - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - 7d1347568b78bfc41c92855aecb9a301e08590fb + 7dc2766592abf35c9ff0ae407fe1af20ab4be76b https://dev.azure.com/dnceng/internal/_git/dotnet-runtime @@ -29,13 +29,13 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime 17ea9ab3f662320d4ac62d3a2b783b5054ad80bf - + https://dev.azure.com/dnceng/internal/_git/dotnet-winforms - 44849e81b34d51fe9d6d2163bd4b1ab7a0ada387 + 718c6eea1a6aaef771fd2ab88168ec0de6c26929 - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - 7d1347568b78bfc41c92855aecb9a301e08590fb + 7dc2766592abf35c9ff0ae407fe1af20ab4be76b https://dev.azure.com/dnceng/internal/_git/dotnet-runtime @@ -147,7 +147,7 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-winforms - 44849e81b34d51fe9d6d2163bd4b1ab7a0ada387 + 718c6eea1a6aaef771fd2ab88168ec0de6c26929 diff --git a/eng/Versions.props b/eng/Versions.props index 59247567d..3c07405c2 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -65,11 +65,11 @@ 4.10.0 - 8.0.0-rtm.23525.7 - 8.0.0-rtm.23525.7 + 8.0.0-rtm.23526.3 + 8.0.0-rtm.23526.3 8.0.0 - 8.0.0-rtm.23526.1 - 8.0.0-rtm.23526.1 + 8.0.0-rtm.23526.7 + 8.0.0-rtm.23526.7 From 51d1c88a7000d82db1b6ae53389ffed2130b755e Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Tue, 31 Oct 2023 12:13:54 +0000 Subject: [PATCH 090/222] Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-wpf build 20231031.2 Microsoft.DotNet.Wpf.GitHub , Microsoft.DotNet.Wpf.ProjectTemplates , Microsoft.NET.Sdk.WindowsDesktop From Version 8.0.0-rtm.23526.7 -> To Version 8.0.0-rtm.23531.2 Dependency coherency updates Microsoft.Private.Winforms,Microsoft.Internal.Runtime.WindowsDesktop.Transport,Microsoft.Private.Winforms,Microsoft.NETCore.App.Ref,Microsoft.Private.Winforms,VS.Redist.Common.NetCore.SharedFramework.x64.8.0,Microsoft.Private.Winforms,Microsoft.NETCore.App.Runtime.win-x64,Microsoft.Dotnet.WinForms.ProjectTemplates,Microsoft.Private.Winforms,Microsoft.Win32.Registry.AccessControl,Microsoft.Private.Winforms,Microsoft.Win32.SystemEvents,Microsoft.Private.Winforms,System.CodeDom,Microsoft.Private.Winforms,System.ComponentModel.Composition,Microsoft.Private.Winforms,System.Configuration.ConfigurationManager,Microsoft.Private.Winforms,System.Data.Odbc,Microsoft.Private.Winforms,System.Data.OleDb,Microsoft.Private.Winforms,System.Diagnostics.EventLog,Microsoft.Private.Winforms,System.Diagnostics.PerformanceCounter,Microsoft.Private.Winforms,System.DirectoryServices.AccountManagement,Microsoft.Private.Winforms,System.DirectoryServices.Protocols,Microsoft.Private.Winforms,System.DirectoryServices,Microsoft.Private.Winforms,System.IO.Packaging,Microsoft.Private.Winforms,System.IO.Ports,Microsoft.Private.Winforms,System.Management,Microsoft.Private.Winforms,System.Reflection.Context,Microsoft.Private.Winforms,System.Runtime.Caching,Microsoft.Private.Winforms,System.Security.Cryptography.Pkcs,Microsoft.Private.Winforms,System.Security.Cryptography.ProtectedData,Microsoft.Private.Winforms,System.Security.Cryptography.Xml,Microsoft.Private.Winforms,System.Security.Permissions,Microsoft.Private.Winforms,System.ServiceModel.Syndication,Microsoft.Private.Winforms,System.ServiceProcess.ServiceController,Microsoft.Private.Winforms,System.Speech,Microsoft.Private.Winforms,System.Text.Encoding.CodePages,Microsoft.Private.Winforms,System.Threading.AccessControl,Microsoft.Private.Winforms,System.ComponentModel.Composition.Registration,System.Drawing.Common From Version 8.0.0-rtm.23526.3 -> To Version 8.0.0-rtm.23531.1 (parent: Microsoft.DotNet.Wpf.GitHub --- NuGet.config | 8 ++-- eng/Version.Details.xml | 88 ++++++++++++++++++++--------------------- eng/Versions.props | 12 +++--- 3 files changed, 54 insertions(+), 54 deletions(-) diff --git a/NuGet.config b/NuGet.config index 3bc5117da..f304123e2 100644 --- a/NuGet.config +++ b/NuGet.config @@ -9,10 +9,10 @@ - + - + @@ -25,10 +25,10 @@ - + - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 4ed808906..32fedb3e5 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,153 +1,153 @@ - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 17ea9ab3f662320d4ac62d3a2b783b5054ad80bf + 0395649aa16820be8a669203b265b0a578e82843 - + https://dev.azure.com/dnceng/internal/_git/dotnet-winforms - 718c6eea1a6aaef771fd2ab88168ec0de6c26929 + 88d8522de318730859437bb17c116bb0ed015f5e - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - 7dc2766592abf35c9ff0ae407fe1af20ab4be76b + a713d39da10c1a548c70e9024c180f0c1785f881 - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - 7dc2766592abf35c9ff0ae407fe1af20ab4be76b + a713d39da10c1a548c70e9024c180f0c1785f881 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 17ea9ab3f662320d4ac62d3a2b783b5054ad80bf + 0395649aa16820be8a669203b265b0a578e82843 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 17ea9ab3f662320d4ac62d3a2b783b5054ad80bf + 0395649aa16820be8a669203b265b0a578e82843 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 17ea9ab3f662320d4ac62d3a2b783b5054ad80bf + 0395649aa16820be8a669203b265b0a578e82843 - + https://dev.azure.com/dnceng/internal/_git/dotnet-winforms - 718c6eea1a6aaef771fd2ab88168ec0de6c26929 + 88d8522de318730859437bb17c116bb0ed015f5e - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - 7dc2766592abf35c9ff0ae407fe1af20ab4be76b + a713d39da10c1a548c70e9024c180f0c1785f881 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 17ea9ab3f662320d4ac62d3a2b783b5054ad80bf + 0395649aa16820be8a669203b265b0a578e82843 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 17ea9ab3f662320d4ac62d3a2b783b5054ad80bf + 0395649aa16820be8a669203b265b0a578e82843 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 17ea9ab3f662320d4ac62d3a2b783b5054ad80bf + 0395649aa16820be8a669203b265b0a578e82843 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 17ea9ab3f662320d4ac62d3a2b783b5054ad80bf + 0395649aa16820be8a669203b265b0a578e82843 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 17ea9ab3f662320d4ac62d3a2b783b5054ad80bf + 0395649aa16820be8a669203b265b0a578e82843 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 17ea9ab3f662320d4ac62d3a2b783b5054ad80bf + 0395649aa16820be8a669203b265b0a578e82843 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 17ea9ab3f662320d4ac62d3a2b783b5054ad80bf + 0395649aa16820be8a669203b265b0a578e82843 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 17ea9ab3f662320d4ac62d3a2b783b5054ad80bf + 0395649aa16820be8a669203b265b0a578e82843 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 17ea9ab3f662320d4ac62d3a2b783b5054ad80bf + 0395649aa16820be8a669203b265b0a578e82843 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 17ea9ab3f662320d4ac62d3a2b783b5054ad80bf + 0395649aa16820be8a669203b265b0a578e82843 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 17ea9ab3f662320d4ac62d3a2b783b5054ad80bf + 0395649aa16820be8a669203b265b0a578e82843 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 17ea9ab3f662320d4ac62d3a2b783b5054ad80bf + 0395649aa16820be8a669203b265b0a578e82843 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 17ea9ab3f662320d4ac62d3a2b783b5054ad80bf + 0395649aa16820be8a669203b265b0a578e82843 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 17ea9ab3f662320d4ac62d3a2b783b5054ad80bf + 0395649aa16820be8a669203b265b0a578e82843 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 17ea9ab3f662320d4ac62d3a2b783b5054ad80bf + 0395649aa16820be8a669203b265b0a578e82843 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 17ea9ab3f662320d4ac62d3a2b783b5054ad80bf + 0395649aa16820be8a669203b265b0a578e82843 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 17ea9ab3f662320d4ac62d3a2b783b5054ad80bf + 0395649aa16820be8a669203b265b0a578e82843 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 17ea9ab3f662320d4ac62d3a2b783b5054ad80bf + 0395649aa16820be8a669203b265b0a578e82843 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 17ea9ab3f662320d4ac62d3a2b783b5054ad80bf + 0395649aa16820be8a669203b265b0a578e82843 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 17ea9ab3f662320d4ac62d3a2b783b5054ad80bf + 0395649aa16820be8a669203b265b0a578e82843 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 17ea9ab3f662320d4ac62d3a2b783b5054ad80bf + 0395649aa16820be8a669203b265b0a578e82843 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 17ea9ab3f662320d4ac62d3a2b783b5054ad80bf + 0395649aa16820be8a669203b265b0a578e82843 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 17ea9ab3f662320d4ac62d3a2b783b5054ad80bf + 0395649aa16820be8a669203b265b0a578e82843 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 17ea9ab3f662320d4ac62d3a2b783b5054ad80bf + 0395649aa16820be8a669203b265b0a578e82843 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 17ea9ab3f662320d4ac62d3a2b783b5054ad80bf + 0395649aa16820be8a669203b265b0a578e82843 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 17ea9ab3f662320d4ac62d3a2b783b5054ad80bf + 0395649aa16820be8a669203b265b0a578e82843 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 17ea9ab3f662320d4ac62d3a2b783b5054ad80bf + 0395649aa16820be8a669203b265b0a578e82843 https://dev.azure.com/dnceng/internal/_git/dotnet-winforms - 718c6eea1a6aaef771fd2ab88168ec0de6c26929 + 88d8522de318730859437bb17c116bb0ed015f5e diff --git a/eng/Versions.props b/eng/Versions.props index 3c07405c2..ecd4df948 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -25,7 +25,7 @@ 6.2.4 - 8.0.0-rtm.23525.7 + 8.0.0-rtm.23530.12 8.0.0 8.0.0 8.0.0 @@ -61,15 +61,15 @@ 8.0.0 8.0.0 8.0.0 - 8.0.0-rtm.23525.7 + 8.0.0-rtm.23530.12 4.10.0 - 8.0.0-rtm.23526.3 - 8.0.0-rtm.23526.3 + 8.0.0-rtm.23531.1 + 8.0.0-rtm.23531.1 8.0.0 - 8.0.0-rtm.23526.7 - 8.0.0-rtm.23526.7 + 8.0.0-rtm.23531.2 + 8.0.0-rtm.23531.2 From c0170915ed6c164a594cd9d558d44aaf98fc6961 Mon Sep 17 00:00:00 2001 From: DotNet Bot Date: Wed, 1 Nov 2023 09:16:24 +0000 Subject: [PATCH 091/222] Merged PR 34981: [internal/release/8.0] Update dependencies from dnceng/internal/dotnet-wpf This pull request updates the following dependencies [marker]: <> (Begin:Coherency Updates) ## Coherency Updates The following updates ensure that dependencies with a *CoherentParentDependency* attribute were produced in a build used as input to the parent dependency's build. See [Dependency Description Format](https://github.com/dotnet/arcade/blob/master/Documentation/DependencyDescriptionFormat.md#dependency-description-overview) [DependencyUpdate]: <> (Begin) - **Coherency Updates**: - **Microsoft.Private.Winforms**: from 8.0.0-rtm.23531.1 to 8.0.0-rtm.23531.5 (parent: Microsoft.DotNet.Wpf.GitHub) - **Microsoft.Internal.Runtime.WindowsDesktop.Transport**: from 8.0.0-rtm.23530.12 to 8.0.0-rtm.23531.3 (parent: Microsoft.Private.Winforms) - **Microsoft.Private.Winforms**: from 8.0.0-rtm.23531.1 to 8.0.0-rtm.23531.5 (parent: Microsoft.DotNet.Wpf.GitHub) - **Microsoft.NETCore.App.Ref**: from 8.0.0 to 8.0.0 (parent: Microsoft.Private.Winforms) - **Microsoft.Private.Winforms**: from 8.0.0-rtm.23531.1 to 8.0.0-rtm.23531.5 (parent: Microsoft.DotNet.Wpf.GitHub) - **VS.Redist.Common.NetCore.SharedFramework.x64.8.0**: from 8.0.0-rtm.23530.12 to 8.0.0-rtm.23531.3 (parent: Microsoft.Private.Winforms) - **Microsoft.Private.Winforms**: from 8.0.0-rtm.23531.1 to 8.0.0-rtm.23531.5 (parent: Microsoft.DotNet.Wpf.GitHub) - **Microsoft.NETCore.App.Runtime.win-x64**: from 8.0.0 to 8.0.0 (parent: Microsoft.Private.Winforms) - **Microsoft.Dotnet.WinForms.ProjectTemplates**: from 8.0.0-rtm.23531.1 to 8.0.0-rtm.23531.5 (parent: Microsoft.DotNet.Wpf.GitHub) - **Microsoft.Private.Winforms**: from 8.0.0-rtm.23531.1 to 8.0.0-rtm.23531.5 (parent: Microsoft.DotNet.Wpf.GitHub) - **Microsoft.Win32.Registry.AccessControl**: from 8.0.0 to 8.0.0 (parent: Microsoft.Private.Winforms) - **Microsoft.Private.Winforms**: from 8.0.0-rtm.23531.1 to 8.0.0-rtm.23531.5 (parent: Microsoft.DotNet.Wpf.GitHub) - **Microsoft.Win32.SystemEvents**: from 8.0.0 to 8.0.0 (parent: Microsoft.Private.Winforms) - **Microsoft.Private.Winforms**: from 8.0.0-rtm.23531.1 to 8.0.0-rtm.23531.5 (parent: Microsoft.DotNet.Wpf.GitHub) - **System.CodeDom**: from 8.0.0 to 8.0.0 (parent: Microsoft.Private.Winforms) - **Microsoft.Private.Winforms**: from 8.0.0-rtm.23531.1 to 8.0.0-rtm.23531.5 (parent: Microsoft.DotNet.Wpf.GitHub) - **System.ComponentModel.Composition**: from 8.0.0 to 8.0.0 (parent: Microsoft.Private.Winforms) - **Microsoft.Private.Winforms**: from 8.0.0-rtm.23531.1 to 8.0.0-rtm.23531.5 (parent: Microsoft.DotNet.Wpf.GitHub) - **System.Configuration.ConfigurationManager**: from 8.0.0 to 8.0.0 (parent: Microsoft.Private.Winforms) - **Microsoft.Private.Winforms**: from 8.0.0-rtm.23531.1 to 8.0.0-rtm.23531.5 (parent: Microsoft.DotNet.Wpf.GitHub) - **System.Data.Odbc**: from 8.0.0 to 8.0.0 (parent: Microsoft.Private.Winforms) - **Microsoft.Private.Winforms**: from 8.0.0-rtm.23531.1 to 8.0.0-rtm.23531.5 (parent: Microsoft.DotNet.... --- NuGet.config | 8 ++-- eng/Version.Details.xml | 88 ++++++++++++++++++++--------------------- eng/Versions.props | 12 +++--- 3 files changed, 54 insertions(+), 54 deletions(-) diff --git a/NuGet.config b/NuGet.config index f304123e2..bc90c371c 100644 --- a/NuGet.config +++ b/NuGet.config @@ -9,10 +9,10 @@ - + - + @@ -25,10 +25,10 @@ - + - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 32fedb3e5..11d0c253c 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,153 +1,153 @@ - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 0395649aa16820be8a669203b265b0a578e82843 + 5535e31a712343a63f5d7d796cd874e563e5ac14 - + https://dev.azure.com/dnceng/internal/_git/dotnet-winforms - 88d8522de318730859437bb17c116bb0ed015f5e + e4ede9b8979b9d2b1b1d4383f30a791414f0625b - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - a713d39da10c1a548c70e9024c180f0c1785f881 + 239f8da8fbf8cf2a6cd0c793f0d02679bf4ccf6a - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - a713d39da10c1a548c70e9024c180f0c1785f881 + 239f8da8fbf8cf2a6cd0c793f0d02679bf4ccf6a https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 0395649aa16820be8a669203b265b0a578e82843 + 5535e31a712343a63f5d7d796cd874e563e5ac14 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 0395649aa16820be8a669203b265b0a578e82843 + 5535e31a712343a63f5d7d796cd874e563e5ac14 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 0395649aa16820be8a669203b265b0a578e82843 + 5535e31a712343a63f5d7d796cd874e563e5ac14 - + https://dev.azure.com/dnceng/internal/_git/dotnet-winforms - 88d8522de318730859437bb17c116bb0ed015f5e + e4ede9b8979b9d2b1b1d4383f30a791414f0625b - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - a713d39da10c1a548c70e9024c180f0c1785f881 + 239f8da8fbf8cf2a6cd0c793f0d02679bf4ccf6a https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 0395649aa16820be8a669203b265b0a578e82843 + 5535e31a712343a63f5d7d796cd874e563e5ac14 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 0395649aa16820be8a669203b265b0a578e82843 + 5535e31a712343a63f5d7d796cd874e563e5ac14 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 0395649aa16820be8a669203b265b0a578e82843 + 5535e31a712343a63f5d7d796cd874e563e5ac14 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 0395649aa16820be8a669203b265b0a578e82843 + 5535e31a712343a63f5d7d796cd874e563e5ac14 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 0395649aa16820be8a669203b265b0a578e82843 + 5535e31a712343a63f5d7d796cd874e563e5ac14 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 0395649aa16820be8a669203b265b0a578e82843 + 5535e31a712343a63f5d7d796cd874e563e5ac14 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 0395649aa16820be8a669203b265b0a578e82843 + 5535e31a712343a63f5d7d796cd874e563e5ac14 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 0395649aa16820be8a669203b265b0a578e82843 + 5535e31a712343a63f5d7d796cd874e563e5ac14 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 0395649aa16820be8a669203b265b0a578e82843 + 5535e31a712343a63f5d7d796cd874e563e5ac14 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 0395649aa16820be8a669203b265b0a578e82843 + 5535e31a712343a63f5d7d796cd874e563e5ac14 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 0395649aa16820be8a669203b265b0a578e82843 + 5535e31a712343a63f5d7d796cd874e563e5ac14 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 0395649aa16820be8a669203b265b0a578e82843 + 5535e31a712343a63f5d7d796cd874e563e5ac14 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 0395649aa16820be8a669203b265b0a578e82843 + 5535e31a712343a63f5d7d796cd874e563e5ac14 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 0395649aa16820be8a669203b265b0a578e82843 + 5535e31a712343a63f5d7d796cd874e563e5ac14 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 0395649aa16820be8a669203b265b0a578e82843 + 5535e31a712343a63f5d7d796cd874e563e5ac14 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 0395649aa16820be8a669203b265b0a578e82843 + 5535e31a712343a63f5d7d796cd874e563e5ac14 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 0395649aa16820be8a669203b265b0a578e82843 + 5535e31a712343a63f5d7d796cd874e563e5ac14 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 0395649aa16820be8a669203b265b0a578e82843 + 5535e31a712343a63f5d7d796cd874e563e5ac14 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 0395649aa16820be8a669203b265b0a578e82843 + 5535e31a712343a63f5d7d796cd874e563e5ac14 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 0395649aa16820be8a669203b265b0a578e82843 + 5535e31a712343a63f5d7d796cd874e563e5ac14 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 0395649aa16820be8a669203b265b0a578e82843 + 5535e31a712343a63f5d7d796cd874e563e5ac14 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 0395649aa16820be8a669203b265b0a578e82843 + 5535e31a712343a63f5d7d796cd874e563e5ac14 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 0395649aa16820be8a669203b265b0a578e82843 + 5535e31a712343a63f5d7d796cd874e563e5ac14 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 0395649aa16820be8a669203b265b0a578e82843 + 5535e31a712343a63f5d7d796cd874e563e5ac14 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 0395649aa16820be8a669203b265b0a578e82843 + 5535e31a712343a63f5d7d796cd874e563e5ac14 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 0395649aa16820be8a669203b265b0a578e82843 + 5535e31a712343a63f5d7d796cd874e563e5ac14 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 0395649aa16820be8a669203b265b0a578e82843 + 5535e31a712343a63f5d7d796cd874e563e5ac14 https://dev.azure.com/dnceng/internal/_git/dotnet-winforms - 88d8522de318730859437bb17c116bb0ed015f5e + e4ede9b8979b9d2b1b1d4383f30a791414f0625b diff --git a/eng/Versions.props b/eng/Versions.props index ecd4df948..14a65187b 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -25,7 +25,7 @@ 6.2.4 - 8.0.0-rtm.23530.12 + 8.0.0-rtm.23531.3 8.0.0 8.0.0 8.0.0 @@ -61,15 +61,15 @@ 8.0.0 8.0.0 8.0.0 - 8.0.0-rtm.23530.12 + 8.0.0-rtm.23531.3 4.10.0 - 8.0.0-rtm.23531.1 - 8.0.0-rtm.23531.1 + 8.0.0-rtm.23531.5 + 8.0.0-rtm.23531.5 8.0.0 - 8.0.0-rtm.23531.2 - 8.0.0-rtm.23531.2 + 8.0.0-rtm.23531.4 + 8.0.0-rtm.23531.4 From 2d155bcd93331baf70ba51b7ae3395cb5434e946 Mon Sep 17 00:00:00 2001 From: Sean Reeser Date: Tue, 7 Nov 2023 10:55:42 -0800 Subject: [PATCH 092/222] Update branding to 8.0.1 --- eng/Versions.props | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eng/Versions.props b/eng/Versions.props index 7a53c4e7c..8591fd355 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -2,7 +2,7 @@ 8 0 - 0 + 1 rtm From 8a78a6766c2149ea05502fab5ee5c3a87b949571 Mon Sep 17 00:00:00 2001 From: Loni Tra Date: Thu, 9 Nov 2023 11:42:27 -0800 Subject: [PATCH 093/222] [release/8.0] Change to Service Branding and Add PlatformManifest.txt (#3954) * [release/8.0] Add PlatformManifest.txt * change to service mode --- eng/Versions.props | 2 +- .../src/sfx/PlatformManifest.txt | 76 +++++++++++++++++++ 2 files changed, 77 insertions(+), 1 deletion(-) create mode 100644 src/windowsdesktop/src/sfx/PlatformManifest.txt diff --git a/eng/Versions.props b/eng/Versions.props index 8591fd355..af17cf994 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -3,7 +3,7 @@ 8 0 1 - rtm + servicing diff --git a/src/windowsdesktop/src/sfx/PlatformManifest.txt b/src/windowsdesktop/src/sfx/PlatformManifest.txt new file mode 100644 index 000000000..f57da1278 --- /dev/null +++ b/src/windowsdesktop/src/sfx/PlatformManifest.txt @@ -0,0 +1,76 @@ +Microsoft.VisualBasic.Forms.resources.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.52014 +System.Windows.Forms.Design.resources.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.52014 +System.Windows.Forms.Primitives.resources.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.52014 +System.Windows.Forms.resources.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.52014 +PresentationCore.resources.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.52101 +PresentationFramework.resources.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.52101 +PresentationUI.resources.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.52101 +ReachFramework.resources.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.52101 +System.Windows.Controls.Ribbon.resources.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.52101 +System.Windows.Input.Manipulations.resources.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.52101 +System.Xaml.resources.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.52101 +UIAutomationClient.resources.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.52101 +UIAutomationClientSideProviders.resources.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.52101 +UIAutomationProvider.resources.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.52101 +UIAutomationTypes.resources.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.52101 +WindowsBase.resources.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.52101 +WindowsFormsIntegration.resources.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.52101 +D3DCompiler_47_cor3.dll|Microsoft.WindowsDesktop.App.Ref||10.0.22621.1778 +PenImc_cor3.dll|Microsoft.WindowsDesktop.App.Ref||8.0.23.52101 +PresentationNative_cor3.dll|Microsoft.WindowsDesktop.App.Ref||8.0.23.46902 +vcruntime140_cor3.dll|Microsoft.WindowsDesktop.App.Ref||14.38.33126.1 +wpfgfx_cor3.dll|Microsoft.WindowsDesktop.App.Ref||8.0.23.52101 +System.Diagnostics.EventLog.Messages.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|0.0.0.0 +Accessibility.dll|Microsoft.WindowsDesktop.App.Ref|4.0.0.0|8.0.23.52014 +Microsoft.VisualBasic.dll|Microsoft.WindowsDesktop.App.Ref|10.1.0.0|8.0.23.52014 +System.Design.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.52014 +System.Drawing.Design.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.52014 +System.Drawing.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.52014 +System.Windows.Forms.Design.Editors.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.52014 +Microsoft.Win32.Registry.AccessControl.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.52016 +Microsoft.Win32.SystemEvents.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.52016 +System.CodeDom.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.52016 +System.Configuration.ConfigurationManager.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.52016 +System.Diagnostics.EventLog.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.52016 +System.Diagnostics.PerformanceCounter.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.52016 +System.DirectoryServices.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.52016 +System.IO.Packaging.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.52016 +System.Resources.Extensions.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.52016 +System.Security.Cryptography.Pkcs.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.52016 +System.Security.Cryptography.ProtectedData.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.52016 +System.Security.Cryptography.Xml.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.52016 +System.Security.Permissions.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.52016 +System.Threading.AccessControl.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.52016 +System.Windows.Extensions.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.52016 +Microsoft.VisualBasic.Forms.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.52014 +System.Drawing.Common.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.52014 +System.Windows.Forms.Design.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.52014 +System.Windows.Forms.Primitives.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.52014 +System.Windows.Forms.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.52014 +DirectWriteForwarder.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.52101 +PresentationCore.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.52101 +PresentationFramework-SystemCore.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.52101 +PresentationFramework-SystemData.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.52101 +PresentationFramework-SystemDrawing.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.52101 +PresentationFramework-SystemXml.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.52101 +PresentationFramework-SystemXmlLinq.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.52101 +PresentationFramework.Aero.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.52101 +PresentationFramework.Aero2.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.52101 +PresentationFramework.AeroLite.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.52101 +PresentationFramework.Classic.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.52101 +PresentationFramework.Luna.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.52101 +PresentationFramework.Royale.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.52101 +PresentationFramework.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.52101 +PresentationUI.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.52101 +ReachFramework.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.52101 +System.Printing.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.52101 +System.Windows.Controls.Ribbon.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.52101 +System.Windows.Input.Manipulations.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.52101 +System.Windows.Presentation.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.52101 +System.Xaml.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.52101 +UIAutomationClient.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.52101 +UIAutomationClientSideProviders.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.52101 +UIAutomationProvider.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.52101 +UIAutomationTypes.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.52101 +WindowsBase.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.52101 +WindowsFormsIntegration.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.52101 From 21d25730ed6f41b47429f2c4e29bc2e59c66f588 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Wed, 15 Nov 2023 21:21:46 +0000 Subject: [PATCH 094/222] [release/8.0] Update dependencies from dotnet/arcade (#3925) [release/8.0] Update dependencies from dotnet/arcade - Merge remote-tracking branch 'upstream/release/8.0' into darc-release/8.0-9bd35210-21e0-4a1b-9898-bd57a9f11414 # Conflicts: # NuGet.config --- NuGet.config | 1 - eng/Version.Details.xml | 24 ++++++++++++------------ eng/Versions.props | 8 ++++---- global.json | 6 +++--- 4 files changed, 19 insertions(+), 20 deletions(-) diff --git a/NuGet.config b/NuGet.config index bc90c371c..3ef11b203 100644 --- a/NuGet.config +++ b/NuGet.config @@ -12,7 +12,6 @@ - diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 11d0c253c..f7a77f5aa 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -151,29 +151,29 @@ - + https://github.com/dotnet/arcade - 39042b4048580366d35a7c1c4f4ce8fc0dbea4b4 + 0aaeafef60933f87b0b50350313bb2fd77defb5d - + https://github.com/dotnet/arcade - 39042b4048580366d35a7c1c4f4ce8fc0dbea4b4 + 0aaeafef60933f87b0b50350313bb2fd77defb5d - + https://github.com/dotnet/arcade - 39042b4048580366d35a7c1c4f4ce8fc0dbea4b4 + 0aaeafef60933f87b0b50350313bb2fd77defb5d - + https://github.com/dotnet/arcade - 39042b4048580366d35a7c1c4f4ce8fc0dbea4b4 + 0aaeafef60933f87b0b50350313bb2fd77defb5d - + https://github.com/dotnet/arcade - 39042b4048580366d35a7c1c4f4ce8fc0dbea4b4 + 0aaeafef60933f87b0b50350313bb2fd77defb5d - + https://github.com/dotnet/arcade - 39042b4048580366d35a7c1c4f4ce8fc0dbea4b4 + 0aaeafef60933f87b0b50350313bb2fd77defb5d diff --git a/eng/Versions.props b/eng/Versions.props index a31ae3b11..f3e910fc9 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -12,10 +12,10 @@ - 8.0.0-beta.23516.4 - 8.0.0-beta.23516.4 - 8.0.0-beta.23516.4 - 8.0.0-beta.23516.4 + 8.0.0-beta.23564.4 + 8.0.0-beta.23564.4 + 8.0.0-beta.23564.4 + 8.0.0-beta.23564.4 4.5.0 4.8.5 diff --git a/global.json b/global.json index 9a6479bff..dff38a9c8 100644 --- a/global.json +++ b/global.json @@ -1,10 +1,10 @@ { "tools": { - "dotnet": "8.0.100-rtm.23506.1" + "dotnet": "8.0.100" }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "8.0.0-beta.23516.4", - "Microsoft.DotNet.SharedFramework.Sdk": "8.0.0-beta.23516.4", + "Microsoft.DotNet.Arcade.Sdk": "8.0.0-beta.23564.4", + "Microsoft.DotNet.SharedFramework.Sdk": "8.0.0-beta.23564.4", "Microsoft.Build.NoTargets": "3.7.0", "Microsoft.Build.Traversal": "3.4.0" } From beb23efbde5eea56cc527639b03f5e09ca9b1250 Mon Sep 17 00:00:00 2001 From: DotNet Bot Date: Mon, 20 Nov 2023 12:49:34 +0000 Subject: [PATCH 095/222] Merged PR 35326: [internal/release/8.0] Update dependencies from dnceng/internal/dotnet-wpf This pull request updates the following dependencies [marker]: <> (Begin:05a9f0d5-ba2f-4c32-efac-08dbd545292d) ## From https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - **Subscription**: 05a9f0d5-ba2f-4c32-efac-08dbd545292d - **Build**: 20231120.2 - **Date Produced**: November 20, 2023 12:15:53 PM UTC - **Commit**: 8a13cff12b600771ba62ef9ec9cfa491d37fa383 - **Branch**: refs/heads/internal/release/8.0 [DependencyUpdate]: <> (Begin) - **Updates**: - **Microsoft.DotNet.Wpf.GitHub**: [from 8.0.0-rtm.23531.4 to 8.0.1-servicing.23570.2][2] - **Microsoft.DotNet.Wpf.ProjectTemplates**: [from 8.0.0-rtm.23531.4 to 8.0.1-servicing.23570.2][2] - **Microsoft.NET.Sdk.WindowsDesktop**: [from 8.0.0-rtm.23531.4 to 8.0.1-servicing.23570.2][2] - **Microsoft.Private.Winforms**: [from 8.0.0-rtm.23531.5 to 8.0.1-servicing.23567.3][3] - **Microsoft.Internal.Runtime.WindowsDesktop.Transport**: [from 8.0.0-rtm.23531.3 to 8.0.1-servicing.23567.5][4] - **Microsoft.Private.Winforms**: [from 8.0.0-rtm.23531.5 to 8.0.1-servicing.23567.3][3] - **Microsoft.NETCore.App.Ref**: [from 8.0.0 to 8.0.1][4] - **Microsoft.Private.Winforms**: [from 8.0.0-rtm.23531.5 to 8.0.1-servicing.23567.3][3] - **VS.Redist.Common.NetCore.SharedFramework.x64.8.0**: [from 8.0.0-rtm.23531.3 to 8.0.1-servicing.23567.5][4] - **Microsoft.Private.Winforms**: [from 8.0.0-rtm.23531.5 to 8.0.1-servicing.23567.3][3] - **Microsoft.NETCore.App.Runtime.win-x64**: [from 8.0.0 to 8.0.1][4] - **Microsoft.Dotnet.WinForms.ProjectTemplates**: [from 8.0.0-rtm.23531.5 to 8.0.1-servicing.23567.3][3] - **Microsoft.Private.Winforms**: [from 8.0.0-rtm.23531.5 to 8.0.1-servicing.23567.3][3] - **Microsoft.Private.Winforms**: [from 8.0.0-rtm.23531.5 to 8.0.1-servicing.23567.3][3] - **Microsoft.Private.Winforms**: [from 8.0.0-rtm.23531.5 to 8.0.1-servicing.23567.3][3] - **Microsoft.Private.Winforms**: [from 8.0.0-rtm.23531.5 to 8.0.1-servicing.23567.3][3] - **Microsoft.Private.Winforms**: [from 8.0.0-rtm.23531.5 to 8.0.1-servicing.23567.3][3] - **Microsoft.Private.Winforms**: [from 8.0.0-rtm.23531.5 to 8.0.1-servicing.23567.3][3] - **Microsoft.Private.Winforms**: [from 8.0.0-rtm.23531.5 to 8.0.1-servicing.23567.3][3] - **Microsoft.Private.Winforms**: [from 8.0.0-rtm.23531.5 to 8.0.1-servicing.23567.3][3] - **Microsoft.Private.Winforms**: [from 8.0.0-rtm.23531.5 to 8.0.1-servicing.23567.3][3] - **Microsoft.Private.Winforms**: [from 8.0.0-rtm.23531.5 to 8.0.1-servicing.23567.3][3] - **Microsoft.Private.Winforms**: [from 8.0.0-rtm.23531.5 to 8.0.1-servicing.23567.3][3] - **Microsoft.Private.Winforms**: [from 8.0.0-rtm.23531.5 to 8.0.1-servicing.23567.3][3] - **Microsoft.Private.Winforms**: [from 8.0.0-rtm.23531.5 to 8.0.1-servicing.23567.3][3] - **Microsoft.Private.Winforms**: [from 8.0.0-rtm.23531.5 to 8.0.1-servicing.23567.3][3] - **Microsoft.Private.Winforms**: [from 8.0.0-rtm.23531.5 to 8.0.1-servicing.23567.3][3] - **Microso... --- NuGet.config | 7 ++++--- eng/Version.Details.xml | 40 ++++++++++++++++++++-------------------- eng/Versions.props | 18 +++++++++--------- 3 files changed, 33 insertions(+), 32 deletions(-) diff --git a/NuGet.config b/NuGet.config index 3ef11b203..ff23037b4 100644 --- a/NuGet.config +++ b/NuGet.config @@ -9,9 +9,10 @@ - + + @@ -24,10 +25,10 @@ - + - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index f7a77f5aa..9f06fd412 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,41 +1,41 @@ - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 5535e31a712343a63f5d7d796cd874e563e5ac14 + 9736c9e876f2bd8409184ce0d239432d9ef4880e - + https://dev.azure.com/dnceng/internal/_git/dotnet-winforms - e4ede9b8979b9d2b1b1d4383f30a791414f0625b + a223f121b4c906a72b2b0711fe24e6b8e0e0cf18 - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - 239f8da8fbf8cf2a6cd0c793f0d02679bf4ccf6a + 8a13cff12b600771ba62ef9ec9cfa491d37fa383 - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - 239f8da8fbf8cf2a6cd0c793f0d02679bf4ccf6a + 8a13cff12b600771ba62ef9ec9cfa491d37fa383 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 5535e31a712343a63f5d7d796cd874e563e5ac14 + 9736c9e876f2bd8409184ce0d239432d9ef4880e - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 5535e31a712343a63f5d7d796cd874e563e5ac14 + 9736c9e876f2bd8409184ce0d239432d9ef4880e - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 5535e31a712343a63f5d7d796cd874e563e5ac14 + 9736c9e876f2bd8409184ce0d239432d9ef4880e - + https://dev.azure.com/dnceng/internal/_git/dotnet-winforms - e4ede9b8979b9d2b1b1d4383f30a791414f0625b + a223f121b4c906a72b2b0711fe24e6b8e0e0cf18 - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - 239f8da8fbf8cf2a6cd0c793f0d02679bf4ccf6a + 8a13cff12b600771ba62ef9ec9cfa491d37fa383 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime @@ -145,9 +145,9 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime 5535e31a712343a63f5d7d796cd874e563e5ac14 - + https://dev.azure.com/dnceng/internal/_git/dotnet-winforms - e4ede9b8979b9d2b1b1d4383f30a791414f0625b + a223f121b4c906a72b2b0711fe24e6b8e0e0cf18 diff --git a/eng/Versions.props b/eng/Versions.props index f3e910fc9..e471379d8 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -25,9 +25,9 @@ 6.2.4 - 8.0.0-rtm.23531.3 - 8.0.0 - 8.0.0 + 8.0.1-servicing.23567.5 + 8.0.1 + 8.0.1 8.0.0 5.0.0 8.0.0 @@ -61,15 +61,15 @@ 8.0.0 8.0.0 8.0.0 - 8.0.0-rtm.23531.3 + 8.0.1-servicing.23567.5 4.10.0 - 8.0.0-rtm.23531.5 - 8.0.0-rtm.23531.5 - 8.0.0 + 8.0.1-servicing.23567.3 + 8.0.1-servicing.23567.3 + 8.0.1 - 8.0.0-rtm.23531.4 - 8.0.0-rtm.23531.4 + 8.0.1-servicing.23570.2 + 8.0.1-servicing.23570.2 From 94d6b586a05ef1d4b4234fb324fb95b9c1c73204 Mon Sep 17 00:00:00 2001 From: DotNet Bot Date: Tue, 21 Nov 2023 14:05:17 +0000 Subject: [PATCH 096/222] [internal/release/8.0] Update dependencies from dnceng/internal/dotnet-wpf --- NuGet.config | 8 ++++---- eng/Version.Details.xml | 34 +++++++++++++++++----------------- eng/Versions.props | 12 ++++++------ 3 files changed, 27 insertions(+), 27 deletions(-) diff --git a/NuGet.config b/NuGet.config index ff23037b4..12af5cd8a 100644 --- a/NuGet.config +++ b/NuGet.config @@ -9,10 +9,10 @@ - + - + @@ -25,10 +25,10 @@ - + - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 9f06fd412..cb9128677 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,41 +1,41 @@ - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 9736c9e876f2bd8409184ce0d239432d9ef4880e + f83afe4ed0000ee202b2528bc5803a94130a0f4c - + https://dev.azure.com/dnceng/internal/_git/dotnet-winforms - a223f121b4c906a72b2b0711fe24e6b8e0e0cf18 + 642f51b02a34281044c2a1e07862b2bf2b71c155 - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - 8a13cff12b600771ba62ef9ec9cfa491d37fa383 + b871665f995218f1d89f071e87080bb481787364 - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - 8a13cff12b600771ba62ef9ec9cfa491d37fa383 + b871665f995218f1d89f071e87080bb481787364 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 9736c9e876f2bd8409184ce0d239432d9ef4880e + f83afe4ed0000ee202b2528bc5803a94130a0f4c - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 9736c9e876f2bd8409184ce0d239432d9ef4880e + f83afe4ed0000ee202b2528bc5803a94130a0f4c https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 9736c9e876f2bd8409184ce0d239432d9ef4880e + f83afe4ed0000ee202b2528bc5803a94130a0f4c - + https://dev.azure.com/dnceng/internal/_git/dotnet-winforms - a223f121b4c906a72b2b0711fe24e6b8e0e0cf18 + 642f51b02a34281044c2a1e07862b2bf2b71c155 - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - 8a13cff12b600771ba62ef9ec9cfa491d37fa383 + b871665f995218f1d89f071e87080bb481787364 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime @@ -147,7 +147,7 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-winforms - a223f121b4c906a72b2b0711fe24e6b8e0e0cf18 + 642f51b02a34281044c2a1e07862b2bf2b71c155 diff --git a/eng/Versions.props b/eng/Versions.props index e471379d8..f999d95b0 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -25,7 +25,7 @@ 6.2.4 - 8.0.1-servicing.23567.5 + 8.0.1-servicing.23570.18 8.0.1 8.0.1 8.0.0 @@ -61,15 +61,15 @@ 8.0.0 8.0.0 8.0.0 - 8.0.1-servicing.23567.5 + 8.0.1-servicing.23570.18 4.10.0 - 8.0.1-servicing.23567.3 - 8.0.1-servicing.23567.3 + 8.0.1-servicing.23571.1 + 8.0.1-servicing.23571.1 8.0.1 - 8.0.1-servicing.23570.2 - 8.0.1-servicing.23570.2 + 8.0.1-servicing.23571.2 + 8.0.1-servicing.23571.2 From 97e715b33b1f765716a62950346d7e9039f2b35f Mon Sep 17 00:00:00 2001 From: DotNet Bot Date: Fri, 24 Nov 2023 23:42:06 +0000 Subject: [PATCH 097/222] Merged PR 35471: [internal/release/8.0] Update dependencies from dnceng/internal/dotnet-wpf This pull request updates the following dependencies [marker]: <> (Begin:05a9f0d5-ba2f-4c32-efac-08dbd545292d) ## From https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - **Subscription**: 05a9f0d5-ba2f-4c32-efac-08dbd545292d - **Build**: 20231122.16 - **Date Produced**: November 22, 2023 9:04:53 PM UTC - **Commit**: cec70aba1d77a19afefb3bf7eb7379c96fca64ef - **Branch**: refs/heads/internal/release/8.0 [DependencyUpdate]: <> (Begin) - **Updates**: - **Microsoft.DotNet.Wpf.GitHub**: [from 8.0.1-servicing.23571.2 to 8.0.1-servicing.23572.16][2] - **Microsoft.DotNet.Wpf.ProjectTemplates**: [from 8.0.1-servicing.23571.2 to 8.0.1-servicing.23572.16][2] - **Microsoft.NET.Sdk.WindowsDesktop**: [from 8.0.1-servicing.23571.2 to 8.0.1-servicing.23572.16][2] [2]: https://dev.azure.com/dnceng/internal/_git/dotnet-wpf/branches?baseVersion=GCb871665f99&targetVersion=GCcec70aba1d&_a=files [DependencyUpdate]: <> (End) [marker]: <> (End:05a9f0d5-ba2f-4c32-efac-08dbd545292d) --- eng/Version.Details.xml | 12 ++++++------ eng/Versions.props | 4 ++-- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index cb9128677..4b88f7dd9 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -9,13 +9,13 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-winforms 642f51b02a34281044c2a1e07862b2bf2b71c155 - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - b871665f995218f1d89f071e87080bb481787364 + cec70aba1d77a19afefb3bf7eb7379c96fca64ef - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - b871665f995218f1d89f071e87080bb481787364 + cec70aba1d77a19afefb3bf7eb7379c96fca64ef https://dev.azure.com/dnceng/internal/_git/dotnet-runtime @@ -33,9 +33,9 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-winforms 642f51b02a34281044c2a1e07862b2bf2b71c155 - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - b871665f995218f1d89f071e87080bb481787364 + cec70aba1d77a19afefb3bf7eb7379c96fca64ef https://dev.azure.com/dnceng/internal/_git/dotnet-runtime diff --git a/eng/Versions.props b/eng/Versions.props index f999d95b0..68abda0a5 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -69,7 +69,7 @@ 8.0.1-servicing.23571.1 8.0.1 - 8.0.1-servicing.23571.2 - 8.0.1-servicing.23571.2 + 8.0.1-servicing.23572.16 + 8.0.1-servicing.23572.16 From b69953849a6ebf2bd3126ebdc287426739c29381 Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Sat, 25 Nov 2023 00:40:22 +0000 Subject: [PATCH 098/222] Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-wpf build 20231124.1 Microsoft.DotNet.Wpf.GitHub , Microsoft.DotNet.Wpf.ProjectTemplates , Microsoft.NET.Sdk.WindowsDesktop From Version 8.0.1-servicing.23572.16 -> To Version 8.0.1-servicing.23574.1 Dependency coherency updates Microsoft.Private.Winforms,Microsoft.Internal.Runtime.WindowsDesktop.Transport,Microsoft.Private.Winforms,Microsoft.NETCore.App.Ref,Microsoft.Private.Winforms,VS.Redist.Common.NetCore.SharedFramework.x64.8.0,Microsoft.Private.Winforms,Microsoft.NETCore.App.Runtime.win-x64,Microsoft.Dotnet.WinForms.ProjectTemplates,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,System.Drawing.Common From Version 8.0.1-servicing.23571.1 -> To Version 8.0.1-servicing.23572.1 (parent: Microsoft.DotNet.Wpf.GitHub --- NuGet.config | 8 ++++---- eng/Version.Details.xml | 34 +++++++++++++++++----------------- eng/Versions.props | 12 ++++++------ 3 files changed, 27 insertions(+), 27 deletions(-) diff --git a/NuGet.config b/NuGet.config index 12af5cd8a..872250560 100644 --- a/NuGet.config +++ b/NuGet.config @@ -9,10 +9,10 @@ - + - + @@ -25,10 +25,10 @@ - + - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 4b88f7dd9..cef4011b4 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,41 +1,41 @@ - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - f83afe4ed0000ee202b2528bc5803a94130a0f4c + 21b90573de7d6e0c88acdd25dc116b6729fd65a7 - + https://dev.azure.com/dnceng/internal/_git/dotnet-winforms - 642f51b02a34281044c2a1e07862b2bf2b71c155 + 1c0e964e732d651bb9fbacbe0f76283ec94b88f8 - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - cec70aba1d77a19afefb3bf7eb7379c96fca64ef + 4c20cb7dd8e17f8a20f92058de5a55748775a479 - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - cec70aba1d77a19afefb3bf7eb7379c96fca64ef + 4c20cb7dd8e17f8a20f92058de5a55748775a479 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - f83afe4ed0000ee202b2528bc5803a94130a0f4c + 21b90573de7d6e0c88acdd25dc116b6729fd65a7 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - f83afe4ed0000ee202b2528bc5803a94130a0f4c + 21b90573de7d6e0c88acdd25dc116b6729fd65a7 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - f83afe4ed0000ee202b2528bc5803a94130a0f4c + 21b90573de7d6e0c88acdd25dc116b6729fd65a7 - + https://dev.azure.com/dnceng/internal/_git/dotnet-winforms - 642f51b02a34281044c2a1e07862b2bf2b71c155 + 1c0e964e732d651bb9fbacbe0f76283ec94b88f8 - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - cec70aba1d77a19afefb3bf7eb7379c96fca64ef + 4c20cb7dd8e17f8a20f92058de5a55748775a479 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime @@ -147,7 +147,7 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-winforms - 642f51b02a34281044c2a1e07862b2bf2b71c155 + 1c0e964e732d651bb9fbacbe0f76283ec94b88f8 diff --git a/eng/Versions.props b/eng/Versions.props index 68abda0a5..bdbbb5884 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -25,7 +25,7 @@ 6.2.4 - 8.0.1-servicing.23570.18 + 8.0.1-servicing.23571.29 8.0.1 8.0.1 8.0.0 @@ -61,15 +61,15 @@ 8.0.0 8.0.0 8.0.0 - 8.0.1-servicing.23570.18 + 8.0.1-servicing.23571.29 4.10.0 - 8.0.1-servicing.23571.1 - 8.0.1-servicing.23571.1 + 8.0.1-servicing.23572.1 + 8.0.1-servicing.23572.1 8.0.1 - 8.0.1-servicing.23572.16 - 8.0.1-servicing.23572.16 + 8.0.1-servicing.23574.1 + 8.0.1-servicing.23574.1 From f7c13211cd6272548a574c51bd7be05168725ca7 Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Mon, 27 Nov 2023 10:03:49 +0000 Subject: [PATCH 099/222] Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-wpf build 20231127.1 Microsoft.DotNet.Wpf.GitHub , Microsoft.DotNet.Wpf.ProjectTemplates , Microsoft.NET.Sdk.WindowsDesktop From Version 8.0.1-servicing.23572.16 -> To Version 8.0.1-servicing.23577.1 Dependency coherency updates Microsoft.Private.Winforms,Microsoft.Internal.Runtime.WindowsDesktop.Transport,Microsoft.Private.Winforms,Microsoft.NETCore.App.Ref,Microsoft.Private.Winforms,VS.Redist.Common.NetCore.SharedFramework.x64.8.0,Microsoft.Private.Winforms,Microsoft.NETCore.App.Runtime.win-x64,Microsoft.Dotnet.WinForms.ProjectTemplates,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,System.Drawing.Common From Version 8.0.1-servicing.23571.1 -> To Version 8.0.1-servicing.23574.2 (parent: Microsoft.DotNet.Wpf.GitHub --- NuGet.config | 8 ++++---- eng/Version.Details.xml | 34 +++++++++++++++++----------------- eng/Versions.props | 12 ++++++------ 3 files changed, 27 insertions(+), 27 deletions(-) diff --git a/NuGet.config b/NuGet.config index 872250560..62906f342 100644 --- a/NuGet.config +++ b/NuGet.config @@ -9,10 +9,10 @@ - + - + @@ -25,10 +25,10 @@ - + - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index cef4011b4..e74c6b7bc 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,41 +1,41 @@ - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 21b90573de7d6e0c88acdd25dc116b6729fd65a7 + d682195447d43c6840bf1e360a2e60a0afa60c41 - + https://dev.azure.com/dnceng/internal/_git/dotnet-winforms - 1c0e964e732d651bb9fbacbe0f76283ec94b88f8 + 330e1adc916cc03d60d340d04d666b829dcbb5d7 - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - 4c20cb7dd8e17f8a20f92058de5a55748775a479 + d24bf24661d5cb21899baf3e473bec7d552f0100 - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - 4c20cb7dd8e17f8a20f92058de5a55748775a479 + d24bf24661d5cb21899baf3e473bec7d552f0100 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 21b90573de7d6e0c88acdd25dc116b6729fd65a7 + d682195447d43c6840bf1e360a2e60a0afa60c41 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 21b90573de7d6e0c88acdd25dc116b6729fd65a7 + d682195447d43c6840bf1e360a2e60a0afa60c41 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 21b90573de7d6e0c88acdd25dc116b6729fd65a7 + d682195447d43c6840bf1e360a2e60a0afa60c41 - + https://dev.azure.com/dnceng/internal/_git/dotnet-winforms - 1c0e964e732d651bb9fbacbe0f76283ec94b88f8 + 330e1adc916cc03d60d340d04d666b829dcbb5d7 - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - 4c20cb7dd8e17f8a20f92058de5a55748775a479 + d24bf24661d5cb21899baf3e473bec7d552f0100 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime @@ -147,7 +147,7 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-winforms - 1c0e964e732d651bb9fbacbe0f76283ec94b88f8 + 330e1adc916cc03d60d340d04d666b829dcbb5d7 diff --git a/eng/Versions.props b/eng/Versions.props index bdbbb5884..56b60a75b 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -25,7 +25,7 @@ 6.2.4 - 8.0.1-servicing.23571.29 + 8.0.1-servicing.23572.22 8.0.1 8.0.1 8.0.0 @@ -61,15 +61,15 @@ 8.0.0 8.0.0 8.0.0 - 8.0.1-servicing.23571.29 + 8.0.1-servicing.23572.22 4.10.0 - 8.0.1-servicing.23572.1 - 8.0.1-servicing.23572.1 + 8.0.1-servicing.23574.2 + 8.0.1-servicing.23574.2 8.0.1 - 8.0.1-servicing.23574.1 - 8.0.1-servicing.23574.1 + 8.0.1-servicing.23577.1 + 8.0.1-servicing.23577.1 From 0190973c184f46e846a7b843e3cb79171d1e74c7 Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Wed, 29 Nov 2023 02:01:12 +0000 Subject: [PATCH 100/222] Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-wpf build 20231128.5 Microsoft.DotNet.Wpf.GitHub , Microsoft.DotNet.Wpf.ProjectTemplates , Microsoft.NET.Sdk.WindowsDesktop From Version 8.0.1-servicing.23577.1 -> To Version 8.0.1-servicing.23578.5 Dependency coherency updates Microsoft.Private.Winforms,Microsoft.Internal.Runtime.WindowsDesktop.Transport,Microsoft.Private.Winforms,Microsoft.NETCore.App.Ref,Microsoft.Private.Winforms,VS.Redist.Common.NetCore.SharedFramework.x64.8.0,Microsoft.Private.Winforms,Microsoft.NETCore.App.Runtime.win-x64,Microsoft.Dotnet.WinForms.ProjectTemplates,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,System.Drawing.Common From Version 8.0.1-servicing.23574.2 -> To Version 8.0.1-servicing.23578.7 (parent: Microsoft.DotNet.Wpf.GitHub --- NuGet.config | 8 ++++---- eng/Version.Details.xml | 34 +++++++++++++++++----------------- eng/Versions.props | 12 ++++++------ 3 files changed, 27 insertions(+), 27 deletions(-) diff --git a/NuGet.config b/NuGet.config index 62906f342..53415dc43 100644 --- a/NuGet.config +++ b/NuGet.config @@ -9,10 +9,10 @@ - + - + @@ -25,10 +25,10 @@ - + - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index e74c6b7bc..bcffc475e 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,41 +1,41 @@ - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - d682195447d43c6840bf1e360a2e60a0afa60c41 + eddf880ac57b7f2c79a77592e3e6d24d1d02f112 - + https://dev.azure.com/dnceng/internal/_git/dotnet-winforms - 330e1adc916cc03d60d340d04d666b829dcbb5d7 + e61cfa7d404cf0d4cb24b5d6e69bb44978a9b45a - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - d24bf24661d5cb21899baf3e473bec7d552f0100 + 32051d79682192306ba625d5ff0df24735953053 - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - d24bf24661d5cb21899baf3e473bec7d552f0100 + 32051d79682192306ba625d5ff0df24735953053 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - d682195447d43c6840bf1e360a2e60a0afa60c41 + eddf880ac57b7f2c79a77592e3e6d24d1d02f112 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - d682195447d43c6840bf1e360a2e60a0afa60c41 + eddf880ac57b7f2c79a77592e3e6d24d1d02f112 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - d682195447d43c6840bf1e360a2e60a0afa60c41 + eddf880ac57b7f2c79a77592e3e6d24d1d02f112 - + https://dev.azure.com/dnceng/internal/_git/dotnet-winforms - 330e1adc916cc03d60d340d04d666b829dcbb5d7 + e61cfa7d404cf0d4cb24b5d6e69bb44978a9b45a - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - d24bf24661d5cb21899baf3e473bec7d552f0100 + 32051d79682192306ba625d5ff0df24735953053 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime @@ -147,7 +147,7 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-winforms - 330e1adc916cc03d60d340d04d666b829dcbb5d7 + e61cfa7d404cf0d4cb24b5d6e69bb44978a9b45a diff --git a/eng/Versions.props b/eng/Versions.props index 56b60a75b..09db39934 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -25,7 +25,7 @@ 6.2.4 - 8.0.1-servicing.23572.22 + 8.0.1-servicing.23578.5 8.0.1 8.0.1 8.0.0 @@ -61,15 +61,15 @@ 8.0.0 8.0.0 8.0.0 - 8.0.1-servicing.23572.22 + 8.0.1-servicing.23578.5 4.10.0 - 8.0.1-servicing.23574.2 - 8.0.1-servicing.23574.2 + 8.0.1-servicing.23578.7 + 8.0.1-servicing.23578.7 8.0.1 - 8.0.1-servicing.23577.1 - 8.0.1-servicing.23577.1 + 8.0.1-servicing.23578.5 + 8.0.1-servicing.23578.5 From 4fc1911f267f74f26c5443e6b219d782f1b02fcd Mon Sep 17 00:00:00 2001 From: DotNet Bot Date: Thu, 30 Nov 2023 17:40:04 +0000 Subject: [PATCH 101/222] Merged PR 35712: [internal/release/8.0] Update dependencies from dnceng/internal/dotnet-wpf This pull request updates the following dependencies [marker]: <> (Begin:Coherency Updates) ## Coherency Updates The following updates ensure that dependencies with a *CoherentParentDependency* attribute were produced in a build used as input to the parent dependency's build. See [Dependency Description Format](https://github.com/dotnet/arcade/blob/master/Documentation/DependencyDescriptionFormat.md#dependency-description-overview) [DependencyUpdate]: <> (Begin) - **Coherency Updates**: - **Microsoft.Private.Winforms**: from 8.0.1-servicing.23578.7 to 8.0.1-servicing.23580.2 (parent: Microsoft.DotNet.Wpf.GitHub) - **Microsoft.Internal.Runtime.WindowsDesktop.Transport**: from 8.0.1-servicing.23578.5 to 8.0.1-servicing.23580.1 (parent: Microsoft.Private.Winforms) - **Microsoft.Private.Winforms**: from 8.0.1-servicing.23578.7 to 8.0.1-servicing.23580.2 (parent: Microsoft.DotNet.Wpf.GitHub) - **Microsoft.NETCore.App.Ref**: from 8.0.1 to 8.0.1 (parent: Microsoft.Private.Winforms) - **Microsoft.Private.Winforms**: from 8.0.1-servicing.23578.7 to 8.0.1-servicing.23580.2 (parent: Microsoft.DotNet.Wpf.GitHub) - **VS.Redist.Common.NetCore.SharedFramework.x64.8.0**: from 8.0.1-servicing.23578.5 to 8.0.1-servicing.23580.1 (parent: Microsoft.Private.Winforms) - **Microsoft.Private.Winforms**: from 8.0.1-servicing.23578.7 to 8.0.1-servicing.23580.2 (parent: Microsoft.DotNet.Wpf.GitHub) - **Microsoft.NETCore.App.Runtime.win-x64**: from 8.0.1 to 8.0.1 (parent: Microsoft.Private.Winforms) - **Microsoft.Dotnet.WinForms.ProjectTemplates**: from 8.0.1-servicing.23578.7 to 8.0.1-servicing.23580.2 (parent: Microsoft.DotNet.Wpf.GitHub) - **Microsoft.Private.Winforms**: from 8.0.1-servicing.23578.7 to 8.0.1-servicing.23580.2 (parent: Microsoft.DotNet.Wpf.GitHub) - **Microsoft.Private.Winforms**: from 8.0.1-servicing.23578.7 to 8.0.1-servicing.23580.2 (parent: Microsoft.DotNet.Wpf.GitHub) - **Microsoft.Private.Winforms**: from 8.0.1-servicing.23578.7 to 8.0.1-servicing.23580.2 (parent: Microsoft.DotNet.Wpf.GitHub) - **Microsoft.Private.Winforms**: from 8.0.1-servicing.23578.7 to 8.0.1-servicing.23580.2 (parent: Microsoft.DotNet.Wpf.GitHub) - **Microsoft.Private.Winforms**: from 8.0.1-servicing.23578.7 to 8.0.1-servicing.23580.2 (parent: Microsoft.DotNet.Wpf.GitHub) - **Microsoft.Private.Winforms**: from 8.0.1-servicing.23578.7 to 8.0.1-servicing.23580.2 (parent: Microsoft.DotNet.Wpf.GitHub) - **Microsoft.Private.Winforms**: from 8.0.1-servicing.23578.7 to 8.0.1-servicing.23580.2 (parent: Microsoft.DotNet.Wpf.GitHub) - **Microsoft.Private.Winforms**: from 8.0.1-servicing.23578.7 to 8.0.1-servicing.23580.2 (parent: Microsoft.DotNet.Wpf.GitHub) - **Microsoft.Private.Winforms**: from 8.0.1-servicing.23578.7 to 8.0.1-servicing.23580.2 (parent: Microsoft.DotNet.Wpf.GitHub) - **Microsoft.Private.Winforms**: from 8.0.1-servicing.23578.7 to 8.0.1-servicing.23580.2 (parent: Microsoft.DotNet.Wpf.GitHub) - **... --- NuGet.config | 8 ++++---- eng/Version.Details.xml | 34 +++++++++++++++++----------------- eng/Versions.props | 12 ++++++------ 3 files changed, 27 insertions(+), 27 deletions(-) diff --git a/NuGet.config b/NuGet.config index 53415dc43..6fb64a187 100644 --- a/NuGet.config +++ b/NuGet.config @@ -9,10 +9,10 @@ - + - + @@ -25,10 +25,10 @@ - + - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index bcffc475e..d02c5c8ea 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,41 +1,41 @@ - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - eddf880ac57b7f2c79a77592e3e6d24d1d02f112 + bf5e279d9239bfef5bb1b8d6212f1b971c434606 - + https://dev.azure.com/dnceng/internal/_git/dotnet-winforms - e61cfa7d404cf0d4cb24b5d6e69bb44978a9b45a + c2d534b5fba6cc87d8aa856b7bcbceedea4753fa - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - 32051d79682192306ba625d5ff0df24735953053 + 429ec934d125d0c878613ec1c450553393a00952 - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - 32051d79682192306ba625d5ff0df24735953053 + 429ec934d125d0c878613ec1c450553393a00952 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - eddf880ac57b7f2c79a77592e3e6d24d1d02f112 + bf5e279d9239bfef5bb1b8d6212f1b971c434606 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - eddf880ac57b7f2c79a77592e3e6d24d1d02f112 + bf5e279d9239bfef5bb1b8d6212f1b971c434606 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - eddf880ac57b7f2c79a77592e3e6d24d1d02f112 + bf5e279d9239bfef5bb1b8d6212f1b971c434606 - + https://dev.azure.com/dnceng/internal/_git/dotnet-winforms - e61cfa7d404cf0d4cb24b5d6e69bb44978a9b45a + c2d534b5fba6cc87d8aa856b7bcbceedea4753fa - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - 32051d79682192306ba625d5ff0df24735953053 + 429ec934d125d0c878613ec1c450553393a00952 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime @@ -147,7 +147,7 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-winforms - e61cfa7d404cf0d4cb24b5d6e69bb44978a9b45a + c2d534b5fba6cc87d8aa856b7bcbceedea4753fa diff --git a/eng/Versions.props b/eng/Versions.props index 09db39934..50a55e66d 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -25,7 +25,7 @@ 6.2.4 - 8.0.1-servicing.23578.5 + 8.0.1-servicing.23580.1 8.0.1 8.0.1 8.0.0 @@ -61,15 +61,15 @@ 8.0.0 8.0.0 8.0.0 - 8.0.1-servicing.23578.5 + 8.0.1-servicing.23580.1 4.10.0 - 8.0.1-servicing.23578.7 - 8.0.1-servicing.23578.7 + 8.0.1-servicing.23580.2 + 8.0.1-servicing.23580.2 8.0.1 - 8.0.1-servicing.23578.5 - 8.0.1-servicing.23578.5 + 8.0.1-servicing.23580.3 + 8.0.1-servicing.23580.3 From a0e7b5d8673f28c41bcac6e2001b39ba2c8fab54 Mon Sep 17 00:00:00 2001 From: DotNet Bot Date: Thu, 30 Nov 2023 22:14:54 +0000 Subject: [PATCH 102/222] Merged PR 35721: [internal/release/8.0] Update dependencies from dnceng/internal/dotnet-wpf This pull request updates the following dependencies [marker]: <> (Begin:Coherency Updates) ## Coherency Updates The following updates ensure that dependencies with a *CoherentParentDependency* attribute were produced in a build used as input to the parent dependency's build. See [Dependency Description Format](https://github.com/dotnet/arcade/blob/master/Documentation/DependencyDescriptionFormat.md#dependency-description-overview) [DependencyUpdate]: <> (Begin) - **Coherency Updates**: - **Microsoft.Private.Winforms**: from 8.0.1-servicing.23580.2 to 8.0.1-servicing.23580.6 (parent: Microsoft.DotNet.Wpf.GitHub) - **Microsoft.Private.Winforms**: from 8.0.1-servicing.23580.2 to 8.0.1-servicing.23580.6 (parent: Microsoft.DotNet.Wpf.GitHub) - **Microsoft.Private.Winforms**: from 8.0.1-servicing.23580.2 to 8.0.1-servicing.23580.6 (parent: Microsoft.DotNet.Wpf.GitHub) - **Microsoft.Private.Winforms**: from 8.0.1-servicing.23580.2 to 8.0.1-servicing.23580.6 (parent: Microsoft.DotNet.Wpf.GitHub) - **Microsoft.Dotnet.WinForms.ProjectTemplates**: from 8.0.1-servicing.23580.2 to 8.0.1-servicing.23580.6 (parent: Microsoft.DotNet.Wpf.GitHub) - **Microsoft.Private.Winforms**: from 8.0.1-servicing.23580.2 to 8.0.1-servicing.23580.6 (parent: Microsoft.DotNet.Wpf.GitHub) - **Microsoft.Private.Winforms**: from 8.0.1-servicing.23580.2 to 8.0.1-servicing.23580.6 (parent: Microsoft.DotNet.Wpf.GitHub) - **Microsoft.Private.Winforms**: from 8.0.1-servicing.23580.2 to 8.0.1-servicing.23580.6 (parent: Microsoft.DotNet.Wpf.GitHub) - **Microsoft.Private.Winforms**: from 8.0.1-servicing.23580.2 to 8.0.1-servicing.23580.6 (parent: Microsoft.DotNet.Wpf.GitHub) - **Microsoft.Private.Winforms**: from 8.0.1-servicing.23580.2 to 8.0.1-servicing.23580.6 (parent: Microsoft.DotNet.Wpf.GitHub) - **Microsoft.Private.Winforms**: from 8.0.1-servicing.23580.2 to 8.0.1-servicing.23580.6 (parent: Microsoft.DotNet.Wpf.GitHub) - **Microsoft.Private.Winforms**: from 8.0.1-servicing.23580.2 to 8.0.1-servicing.23580.6 (parent: Microsoft.DotNet.Wpf.GitHub) - **Microsoft.Private.Winforms**: from 8.0.1-servicing.23580.2 to 8.0.1-servicing.23580.6 (parent: Microsoft.DotNet.Wpf.GitHub) - **Microsoft.Private.Winforms**: from 8.0.1-servicing.23580.2 to 8.0.1-servicing.23580.6 (parent: Microsoft.DotNet.Wpf.GitHub) - **Microsoft.Private.Winforms**: from 8.0.1-servicing.23580.2 to 8.0.1-servicing.23580.6 (parent: Microsoft.DotNet.Wpf.GitHub) - **Microsoft.Private.Winforms**: from 8.0.1-servicing.23580.2 to 8.0.1-servicing.23580.6 (parent: Microsoft.DotNet.Wpf.GitHub) - **Microsoft.Private.Winforms**: from 8.0.1-servicing.23580.2 to 8.0.1-servicing.23580.6 (parent: Microsoft.DotNet.Wpf.GitHub) - **Microsoft.Private.Winforms**: from 8.0.1-servicing.23580.2 to 8.0.1-servicing.23580.6 (parent: Microsoft.DotNet.Wpf.GitHub) - **Microsoft.Private.Winforms**: from 8.0.1-servicing.23580.2 to 8.0.1-servicing.23580.6 (parent: Microsoft.DotNet.... --- NuGet.config | 4 ++-- eng/Version.Details.xml | 22 +++++++++++----------- eng/Versions.props | 8 ++++---- 3 files changed, 17 insertions(+), 17 deletions(-) diff --git a/NuGet.config b/NuGet.config index 6fb64a187..aa8f851c7 100644 --- a/NuGet.config +++ b/NuGet.config @@ -12,7 +12,7 @@ - + @@ -28,7 +28,7 @@ - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index d02c5c8ea..d303df77f 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -5,17 +5,17 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime bf5e279d9239bfef5bb1b8d6212f1b971c434606 - + https://dev.azure.com/dnceng/internal/_git/dotnet-winforms - c2d534b5fba6cc87d8aa856b7bcbceedea4753fa + 0b4028eb507aeb222f5bd1fc421876cc5e5e3fb8 - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - 429ec934d125d0c878613ec1c450553393a00952 + ac40bed7a33baf164d3984ca90c2aedba996a7b2 - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - 429ec934d125d0c878613ec1c450553393a00952 + ac40bed7a33baf164d3984ca90c2aedba996a7b2 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime @@ -29,13 +29,13 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime bf5e279d9239bfef5bb1b8d6212f1b971c434606 - + https://dev.azure.com/dnceng/internal/_git/dotnet-winforms - c2d534b5fba6cc87d8aa856b7bcbceedea4753fa + 0b4028eb507aeb222f5bd1fc421876cc5e5e3fb8 - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - 429ec934d125d0c878613ec1c450553393a00952 + ac40bed7a33baf164d3984ca90c2aedba996a7b2 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime @@ -147,7 +147,7 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-winforms - c2d534b5fba6cc87d8aa856b7bcbceedea4753fa + 0b4028eb507aeb222f5bd1fc421876cc5e5e3fb8 diff --git a/eng/Versions.props b/eng/Versions.props index 50a55e66d..d6696ec56 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -65,11 +65,11 @@ 4.10.0 - 8.0.1-servicing.23580.2 - 8.0.1-servicing.23580.2 + 8.0.1-servicing.23580.6 + 8.0.1-servicing.23580.6 8.0.1 - 8.0.1-servicing.23580.3 - 8.0.1-servicing.23580.3 + 8.0.1-servicing.23580.5 + 8.0.1-servicing.23580.5 From cd1c68b52401bc334036ddc90f206ffbe58cc945 Mon Sep 17 00:00:00 2001 From: vseanreesermsft <78103370+vseanreesermsft@users.noreply.github.com> Date: Wed, 3 Jan 2024 09:13:37 -0800 Subject: [PATCH 103/222] Update branding to 8.0.2 (#4048) --- eng/Versions.props | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eng/Versions.props b/eng/Versions.props index f3e910fc9..0634b81a9 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -2,7 +2,7 @@ 8 0 - 1 + 2 servicing From 14cd5a4e3ceae7b8ff41f518a805493993a17d41 Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Wed, 3 Jan 2024 18:02:59 +0000 Subject: [PATCH 104/222] Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-wpf build 20240103.5 Microsoft.DotNet.Wpf.GitHub , Microsoft.DotNet.Wpf.ProjectTemplates , Microsoft.NET.Sdk.WindowsDesktop From Version 8.0.1-servicing.23580.5 -> To Version 8.0.2-servicing.24053.5 --- NuGet.config | 8 ++++++++ eng/Version.Details.xml | 12 ++++++------ eng/Versions.props | 4 ++-- 3 files changed, 16 insertions(+), 8 deletions(-) diff --git a/NuGet.config b/NuGet.config index aa8f851c7..51345a930 100644 --- a/NuGet.config +++ b/NuGet.config @@ -10,9 +10,13 @@ + + + + @@ -25,9 +29,13 @@ + + + + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index d303df77f..524520280 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -9,13 +9,13 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-winforms 0b4028eb507aeb222f5bd1fc421876cc5e5e3fb8 - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - ac40bed7a33baf164d3984ca90c2aedba996a7b2 + 2de9d5e0dcc91bb8e15ae1c371c33b8e59d73c57 - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - ac40bed7a33baf164d3984ca90c2aedba996a7b2 + 2de9d5e0dcc91bb8e15ae1c371c33b8e59d73c57 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime @@ -33,9 +33,9 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-winforms 0b4028eb507aeb222f5bd1fc421876cc5e5e3fb8 - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - ac40bed7a33baf164d3984ca90c2aedba996a7b2 + 2de9d5e0dcc91bb8e15ae1c371c33b8e59d73c57 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime diff --git a/eng/Versions.props b/eng/Versions.props index b63a512a0..41b759fe7 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -69,7 +69,7 @@ 8.0.1-servicing.23580.6 8.0.1 - 8.0.1-servicing.23580.5 - 8.0.1-servicing.23580.5 + 8.0.2-servicing.24053.5 + 8.0.2-servicing.24053.5 From 10dc664f06647738c0e75adce5e8c6410acc6984 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Wed, 10 Jan 2024 17:55:09 +0000 Subject: [PATCH 105/222] [release/8.0] Update dependencies from dotnet/arcade (#4066) [release/8.0] Update dependencies from dotnet/arcade --- NuGet.config | 8 +++++++ eng/Version.Details.xml | 24 +++++++++---------- eng/Versions.props | 8 +++---- eng/common/darc-init.ps1 | 2 +- eng/common/darc-init.sh | 2 +- .../post-build/add-build-to-channel.ps1 | 2 +- eng/common/post-build/publish-using-darc.ps1 | 2 +- .../post-build/trigger-subscriptions.ps1 | 2 +- eng/common/templates/job/job.yml | 2 +- .../templates/job/publish-build-assets.yml | 4 ++-- .../templates/post-build/common-variables.yml | 2 +- .../templates/post-build/post-build.yml | 4 ++-- eng/common/tools.ps1 | 10 +++++++- eng/common/tools.sh | 7 +++++- global.json | 6 ++--- 15 files changed, 53 insertions(+), 32 deletions(-) diff --git a/NuGet.config b/NuGet.config index aa8f851c7..51345a930 100644 --- a/NuGet.config +++ b/NuGet.config @@ -10,9 +10,13 @@ + + + + @@ -25,9 +29,13 @@ + + + + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index d303df77f..9d12a1ba6 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -151,29 +151,29 @@ - + https://github.com/dotnet/arcade - 0aaeafef60933f87b0b50350313bb2fd77defb5d + 61ae141d2bf3534619265c8f691fd55dc3e75147 - + https://github.com/dotnet/arcade - 0aaeafef60933f87b0b50350313bb2fd77defb5d + 61ae141d2bf3534619265c8f691fd55dc3e75147 - + https://github.com/dotnet/arcade - 0aaeafef60933f87b0b50350313bb2fd77defb5d + 61ae141d2bf3534619265c8f691fd55dc3e75147 - + https://github.com/dotnet/arcade - 0aaeafef60933f87b0b50350313bb2fd77defb5d + 61ae141d2bf3534619265c8f691fd55dc3e75147 - + https://github.com/dotnet/arcade - 0aaeafef60933f87b0b50350313bb2fd77defb5d + 61ae141d2bf3534619265c8f691fd55dc3e75147 - + https://github.com/dotnet/arcade - 0aaeafef60933f87b0b50350313bb2fd77defb5d + 61ae141d2bf3534619265c8f691fd55dc3e75147 diff --git a/eng/Versions.props b/eng/Versions.props index b63a512a0..fb345feb2 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -12,10 +12,10 @@ - 8.0.0-beta.23564.4 - 8.0.0-beta.23564.4 - 8.0.0-beta.23564.4 - 8.0.0-beta.23564.4 + 8.0.0-beta.24059.4 + 8.0.0-beta.24059.4 + 8.0.0-beta.24059.4 + 8.0.0-beta.24059.4 4.5.0 4.8.5 diff --git a/eng/common/darc-init.ps1 b/eng/common/darc-init.ps1 index 435e76413..8fda30bdc 100644 --- a/eng/common/darc-init.ps1 +++ b/eng/common/darc-init.ps1 @@ -1,6 +1,6 @@ param ( $darcVersion = $null, - $versionEndpoint = 'https://maestro-prod.westus2.cloudapp.azure.com/api/assets/darc-version?api-version=2019-01-16', + $versionEndpoint = 'https://maestro.dot.net/api/assets/darc-version?api-version=2019-01-16', $verbosity = 'minimal', $toolpath = $null ) diff --git a/eng/common/darc-init.sh b/eng/common/darc-init.sh index 84c1d0cc2..c305ae6bd 100644 --- a/eng/common/darc-init.sh +++ b/eng/common/darc-init.sh @@ -2,7 +2,7 @@ source="${BASH_SOURCE[0]}" darcVersion='' -versionEndpoint='https://maestro-prod.westus2.cloudapp.azure.com/api/assets/darc-version?api-version=2019-01-16' +versionEndpoint='https://maestro.dot.net/api/assets/darc-version?api-version=2019-01-16' verbosity='minimal' while [[ $# > 0 ]]; do diff --git a/eng/common/post-build/add-build-to-channel.ps1 b/eng/common/post-build/add-build-to-channel.ps1 index de2d95792..49938f0c8 100644 --- a/eng/common/post-build/add-build-to-channel.ps1 +++ b/eng/common/post-build/add-build-to-channel.ps1 @@ -2,7 +2,7 @@ param( [Parameter(Mandatory=$true)][int] $BuildId, [Parameter(Mandatory=$true)][int] $ChannelId, [Parameter(Mandatory=$true)][string] $MaestroApiAccessToken, - [Parameter(Mandatory=$false)][string] $MaestroApiEndPoint = 'https://maestro-prod.westus2.cloudapp.azure.com', + [Parameter(Mandatory=$false)][string] $MaestroApiEndPoint = 'https://maestro.dot.net', [Parameter(Mandatory=$false)][string] $MaestroApiVersion = '2019-01-16' ) diff --git a/eng/common/post-build/publish-using-darc.ps1 b/eng/common/post-build/publish-using-darc.ps1 index 8508397d7..1e779fec4 100644 --- a/eng/common/post-build/publish-using-darc.ps1 +++ b/eng/common/post-build/publish-using-darc.ps1 @@ -3,7 +3,7 @@ param( [Parameter(Mandatory=$true)][int] $PublishingInfraVersion, [Parameter(Mandatory=$true)][string] $AzdoToken, [Parameter(Mandatory=$true)][string] $MaestroToken, - [Parameter(Mandatory=$false)][string] $MaestroApiEndPoint = 'https://maestro-prod.westus2.cloudapp.azure.com', + [Parameter(Mandatory=$false)][string] $MaestroApiEndPoint = 'https://maestro.dot.net', [Parameter(Mandatory=$true)][string] $WaitPublishingFinish, [Parameter(Mandatory=$false)][string] $ArtifactsPublishingAdditionalParameters, [Parameter(Mandatory=$false)][string] $SymbolPublishingAdditionalParameters diff --git a/eng/common/post-build/trigger-subscriptions.ps1 b/eng/common/post-build/trigger-subscriptions.ps1 index 55dea518a..ac9a95778 100644 --- a/eng/common/post-build/trigger-subscriptions.ps1 +++ b/eng/common/post-build/trigger-subscriptions.ps1 @@ -2,7 +2,7 @@ param( [Parameter(Mandatory=$true)][string] $SourceRepo, [Parameter(Mandatory=$true)][int] $ChannelId, [Parameter(Mandatory=$true)][string] $MaestroApiAccessToken, - [Parameter(Mandatory=$false)][string] $MaestroApiEndPoint = 'https://maestro-prod.westus2.cloudapp.azure.com', + [Parameter(Mandatory=$false)][string] $MaestroApiEndPoint = 'https://maestro.dot.net', [Parameter(Mandatory=$false)][string] $MaestroApiVersion = '2019-01-16' ) diff --git a/eng/common/templates/job/job.yml b/eng/common/templates/job/job.yml index e20ee3a98..e24ca2f46 100644 --- a/eng/common/templates/job/job.yml +++ b/eng/common/templates/job/job.yml @@ -136,7 +136,7 @@ jobs: condition: and(succeeded(), in(variables['_SignType'], 'real', 'test'), eq(variables['Agent.Os'], 'Windows_NT')) - ${{ if and(eq(parameters.runAsPublic, 'false'), eq(variables['System.TeamProject'], 'internal')) }}: - - task: NuGetAuthenticate@0 + - task: NuGetAuthenticate@1 - ${{ if and(ne(parameters.artifacts.download, 'false'), ne(parameters.artifacts.download, '')) }}: - task: DownloadPipelineArtifact@2 diff --git a/eng/common/templates/job/publish-build-assets.yml b/eng/common/templates/job/publish-build-assets.yml index 42017109f..fa5446c09 100644 --- a/eng/common/templates/job/publish-build-assets.yml +++ b/eng/common/templates/job/publish-build-assets.yml @@ -72,7 +72,7 @@ jobs: condition: ${{ parameters.condition }} continueOnError: ${{ parameters.continueOnError }} - - task: NuGetAuthenticate@0 + - task: NuGetAuthenticate@1 - task: PowerShell@2 displayName: Publish Build Assets @@ -81,7 +81,7 @@ jobs: arguments: -task PublishBuildAssets -restore -msbuildEngine dotnet /p:ManifestsPath='$(Build.StagingDirectory)/Download/AssetManifests' /p:BuildAssetRegistryToken=$(MaestroAccessToken) - /p:MaestroApiEndpoint=https://maestro-prod.westus2.cloudapp.azure.com + /p:MaestroApiEndpoint=https://maestro.dot.net /p:PublishUsingPipelines=${{ parameters.publishUsingPipelines }} /p:OfficialBuildId=$(Build.BuildNumber) condition: ${{ parameters.condition }} diff --git a/eng/common/templates/post-build/common-variables.yml b/eng/common/templates/post-build/common-variables.yml index c24193acf..173914f23 100644 --- a/eng/common/templates/post-build/common-variables.yml +++ b/eng/common/templates/post-build/common-variables.yml @@ -7,7 +7,7 @@ variables: # Default Maestro++ API Endpoint and API Version - name: MaestroApiEndPoint - value: "https://maestro-prod.westus2.cloudapp.azure.com" + value: "https://maestro.dot.net" - name: MaestroApiAccessToken value: $(MaestroAccessToken) - name: MaestroApiVersion diff --git a/eng/common/templates/post-build/post-build.yml b/eng/common/templates/post-build/post-build.yml index ef720f9d7..3f74abf7c 100644 --- a/eng/common/templates/post-build/post-build.yml +++ b/eng/common/templates/post-build/post-build.yml @@ -169,7 +169,7 @@ stages: # This is necessary whenever we want to publish/restore to an AzDO private feed # Since sdk-task.ps1 tries to restore packages we need to do this authentication here # otherwise it'll complain about accessing a private feed. - - task: NuGetAuthenticate@0 + - task: NuGetAuthenticate@1 displayName: 'Authenticate to AzDO Feeds' # Signing validation will optionally work with the buildmanifest file which is downloaded from @@ -266,7 +266,7 @@ stages: BARBuildId: ${{ parameters.BARBuildId }} PromoteToChannelIds: ${{ parameters.PromoteToChannelIds }} - - task: NuGetAuthenticate@0 + - task: NuGetAuthenticate@1 - task: PowerShell@2 displayName: Publish Using Darc diff --git a/eng/common/tools.ps1 b/eng/common/tools.ps1 index fdd0cbb91..eb188cfda 100644 --- a/eng/common/tools.ps1 +++ b/eng/common/tools.ps1 @@ -601,7 +601,15 @@ function InitializeBuildTool() { ExitWithExitCode 1 } $dotnetPath = Join-Path $dotnetRoot (GetExecutableFileName 'dotnet') - $buildTool = @{ Path = $dotnetPath; Command = 'msbuild'; Tool = 'dotnet'; Framework = 'net8.0' } + + # Use override if it exists - commonly set by source-build + if ($null -eq $env:_OverrideArcadeInitializeBuildToolFramework) { + $initializeBuildToolFramework="net8.0" + } else { + $initializeBuildToolFramework=$env:_OverrideArcadeInitializeBuildToolFramework + } + + $buildTool = @{ Path = $dotnetPath; Command = 'msbuild'; Tool = 'dotnet'; Framework = $initializeBuildToolFramework } } elseif ($msbuildEngine -eq "vs") { try { $msbuildPath = InitializeVisualStudioMSBuild -install:$restore diff --git a/eng/common/tools.sh b/eng/common/tools.sh index e8d478943..3392e3a99 100644 --- a/eng/common/tools.sh +++ b/eng/common/tools.sh @@ -341,7 +341,12 @@ function InitializeBuildTool { # return values _InitializeBuildTool="$_InitializeDotNetCli/dotnet" _InitializeBuildToolCommand="msbuild" - _InitializeBuildToolFramework="net8.0" + # use override if it exists - commonly set by source-build + if [[ "${_OverrideArcadeInitializeBuildToolFramework:-x}" == "x" ]]; then + _InitializeBuildToolFramework="net8.0" + else + _InitializeBuildToolFramework="${_OverrideArcadeInitializeBuildToolFramework}" + fi } # Set RestoreNoCache as a workaround for https://github.com/NuGet/Home/issues/3116 diff --git a/global.json b/global.json index dff38a9c8..274fade5e 100644 --- a/global.json +++ b/global.json @@ -1,10 +1,10 @@ { "tools": { - "dotnet": "8.0.100" + "dotnet": "8.0.101" }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "8.0.0-beta.23564.4", - "Microsoft.DotNet.SharedFramework.Sdk": "8.0.0-beta.23564.4", + "Microsoft.DotNet.Arcade.Sdk": "8.0.0-beta.24059.4", + "Microsoft.DotNet.SharedFramework.Sdk": "8.0.0-beta.24059.4", "Microsoft.Build.NoTargets": "3.7.0", "Microsoft.Build.Traversal": "3.4.0" } From 438b8b16a3bfd30834a67a2bd341ff029d3495a5 Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Wed, 10 Jan 2024 20:01:27 +0000 Subject: [PATCH 106/222] Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-wpf build 20240110.10 Microsoft.DotNet.Wpf.GitHub , Microsoft.DotNet.Wpf.ProjectTemplates , Microsoft.NET.Sdk.WindowsDesktop From Version 8.0.1-servicing.23580.5 -> To Version 8.0.2-servicing.24060.10 --- eng/Version.Details.xml | 12 ++++++------ eng/Versions.props | 4 ++-- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 524520280..044337037 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -9,13 +9,13 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-winforms 0b4028eb507aeb222f5bd1fc421876cc5e5e3fb8 - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - 2de9d5e0dcc91bb8e15ae1c371c33b8e59d73c57 + 0ede9037ff59dc76c37ec87659a641cfbccd6e30 - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - 2de9d5e0dcc91bb8e15ae1c371c33b8e59d73c57 + 0ede9037ff59dc76c37ec87659a641cfbccd6e30 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime @@ -33,9 +33,9 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-winforms 0b4028eb507aeb222f5bd1fc421876cc5e5e3fb8 - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - 2de9d5e0dcc91bb8e15ae1c371c33b8e59d73c57 + 0ede9037ff59dc76c37ec87659a641cfbccd6e30 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime diff --git a/eng/Versions.props b/eng/Versions.props index 41b759fe7..8b7a2647b 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -69,7 +69,7 @@ 8.0.1-servicing.23580.6 8.0.1 - 8.0.2-servicing.24053.5 - 8.0.2-servicing.24053.5 + 8.0.2-servicing.24060.10 + 8.0.2-servicing.24060.10 From 6c8d62d6fa194ae43640ccc57bcef3e71586f327 Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Wed, 10 Jan 2024 22:47:11 +0000 Subject: [PATCH 107/222] Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-wpf build 20240110.15 Microsoft.DotNet.Wpf.GitHub , Microsoft.DotNet.Wpf.ProjectTemplates , Microsoft.NET.Sdk.WindowsDesktop From Version 8.0.2-servicing.24060.10 -> To Version 8.0.2-servicing.24060.15 Dependency coherency updates Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Dotnet.WinForms.ProjectTemplates,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,System.Drawing.Common From Version 8.0.1-servicing.23580.6 -> To Version 8.0.2-servicing.24060.4 (parent: Microsoft.DotNet.Wpf.GitHub --- NuGet.config | 8 ++------ eng/Version.Details.xml | 24 ++++++++++++------------ eng/Versions.props | 10 +++++----- 3 files changed, 19 insertions(+), 23 deletions(-) diff --git a/NuGet.config b/NuGet.config index 51345a930..a8610402f 100644 --- a/NuGet.config +++ b/NuGet.config @@ -14,9 +14,7 @@ - - - + @@ -34,9 +32,7 @@ - - - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 632e0386a..3593b5798 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -5,17 +5,17 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime bf5e279d9239bfef5bb1b8d6212f1b971c434606 - + https://dev.azure.com/dnceng/internal/_git/dotnet-winforms - 0b4028eb507aeb222f5bd1fc421876cc5e5e3fb8 + 35307d0f7a7381a850bde13723241862ba824b3f - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - 0ede9037ff59dc76c37ec87659a641cfbccd6e30 + 4c5c25180f2937b7c0691483dc892169fc13ddb3 - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - 0ede9037ff59dc76c37ec87659a641cfbccd6e30 + 4c5c25180f2937b7c0691483dc892169fc13ddb3 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime @@ -29,13 +29,13 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime bf5e279d9239bfef5bb1b8d6212f1b971c434606 - + https://dev.azure.com/dnceng/internal/_git/dotnet-winforms - 0b4028eb507aeb222f5bd1fc421876cc5e5e3fb8 + 35307d0f7a7381a850bde13723241862ba824b3f - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - 0ede9037ff59dc76c37ec87659a641cfbccd6e30 + 4c5c25180f2937b7c0691483dc892169fc13ddb3 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime @@ -145,9 +145,9 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime 5535e31a712343a63f5d7d796cd874e563e5ac14 - + https://dev.azure.com/dnceng/internal/_git/dotnet-winforms - 0b4028eb507aeb222f5bd1fc421876cc5e5e3fb8 + 35307d0f7a7381a850bde13723241862ba824b3f diff --git a/eng/Versions.props b/eng/Versions.props index 8fd5bafa8..e2881954a 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -65,11 +65,11 @@ 4.10.0 - 8.0.1-servicing.23580.6 - 8.0.1-servicing.23580.6 - 8.0.1 + 8.0.2-servicing.24060.4 + 8.0.2-servicing.24060.4 + 8.0.2 - 8.0.2-servicing.24060.10 - 8.0.2-servicing.24060.10 + 8.0.2-servicing.24060.15 + 8.0.2-servicing.24060.15 From fb4f6ef8232b47098be43e4b6bb26deea0fb1647 Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Thu, 18 Jan 2024 21:32:45 +0000 Subject: [PATCH 108/222] Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-wpf build 20240118.6 Microsoft.DotNet.Wpf.GitHub , Microsoft.DotNet.Wpf.ProjectTemplates , Microsoft.NET.Sdk.WindowsDesktop From Version 8.0.2-servicing.24060.15 -> To Version 8.0.2-servicing.24068.6 Dependency coherency updates Microsoft.Private.Winforms,Microsoft.Internal.Runtime.WindowsDesktop.Transport,Microsoft.Private.Winforms,Microsoft.NETCore.App.Ref,Microsoft.Private.Winforms,VS.Redist.Common.NetCore.SharedFramework.x64.8.0,Microsoft.Private.Winforms,Microsoft.NETCore.App.Runtime.win-x64,Microsoft.Dotnet.WinForms.ProjectTemplates,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,System.Drawing.Common From Version 8.0.2-servicing.24060.4 -> To Version 8.0.2-servicing.24068.3 (parent: Microsoft.DotNet.Wpf.GitHub --- NuGet.config | 12 ++++-------- eng/Version.Details.xml | 38 +++++++++++++++++++------------------- eng/Versions.props | 16 ++++++++-------- 3 files changed, 31 insertions(+), 35 deletions(-) diff --git a/NuGet.config b/NuGet.config index a8610402f..df93694fe 100644 --- a/NuGet.config +++ b/NuGet.config @@ -9,12 +9,10 @@ - - - + - + @@ -27,12 +25,10 @@ - - - + - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 3593b5798..8736c635e 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,41 +1,41 @@ - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - bf5e279d9239bfef5bb1b8d6212f1b971c434606 + 1381d5ebd2ab1f292848d5b19b80cf71ac332508 - + https://dev.azure.com/dnceng/internal/_git/dotnet-winforms - 35307d0f7a7381a850bde13723241862ba824b3f + c58fa00bd16b92aab1d7fb2b93e71af6a7768139 - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - 4c5c25180f2937b7c0691483dc892169fc13ddb3 + 472140dd926227876848e48f41cfc9acb9275492 - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - 4c5c25180f2937b7c0691483dc892169fc13ddb3 + 472140dd926227876848e48f41cfc9acb9275492 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - bf5e279d9239bfef5bb1b8d6212f1b971c434606 + 1381d5ebd2ab1f292848d5b19b80cf71ac332508 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - bf5e279d9239bfef5bb1b8d6212f1b971c434606 + 1381d5ebd2ab1f292848d5b19b80cf71ac332508 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - bf5e279d9239bfef5bb1b8d6212f1b971c434606 + 1381d5ebd2ab1f292848d5b19b80cf71ac332508 - + https://dev.azure.com/dnceng/internal/_git/dotnet-winforms - 35307d0f7a7381a850bde13723241862ba824b3f + c58fa00bd16b92aab1d7fb2b93e71af6a7768139 - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - 4c5c25180f2937b7c0691483dc892169fc13ddb3 + 472140dd926227876848e48f41cfc9acb9275492 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime @@ -147,7 +147,7 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-winforms - 35307d0f7a7381a850bde13723241862ba824b3f + c58fa00bd16b92aab1d7fb2b93e71af6a7768139 diff --git a/eng/Versions.props b/eng/Versions.props index e2881954a..2e23e9932 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -25,9 +25,9 @@ 6.2.4 - 8.0.1-servicing.23580.1 - 8.0.1 - 8.0.1 + 8.0.2-servicing.24067.11 + 8.0.2 + 8.0.2 8.0.0 5.0.0 8.0.0 @@ -61,15 +61,15 @@ 8.0.0 8.0.0 8.0.0 - 8.0.1-servicing.23580.1 + 8.0.2-servicing.24067.11 4.10.0 - 8.0.2-servicing.24060.4 - 8.0.2-servicing.24060.4 + 8.0.2-servicing.24068.3 + 8.0.2-servicing.24068.3 8.0.2 - 8.0.2-servicing.24060.15 - 8.0.2-servicing.24060.15 + 8.0.2-servicing.24068.6 + 8.0.2-servicing.24068.6 From 38803f3edd5e8309d0dbf6b47a43216573b3919c Mon Sep 17 00:00:00 2001 From: vseanreesermsft <78103370+vseanreesermsft@users.noreply.github.com> Date: Tue, 6 Feb 2024 20:37:02 -0800 Subject: [PATCH 109/222] Update branding to 8.0.3 (#4140) --- eng/Versions.props | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eng/Versions.props b/eng/Versions.props index fb345feb2..c90d14e20 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -2,7 +2,7 @@ 8 0 - 2 + 3 servicing From 4ca59f6daf94626e78ec783f20c59d91cce33b2a Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Wed, 7 Feb 2024 04:42:01 +0000 Subject: [PATCH 110/222] Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-wpf build 20240206.9 Microsoft.DotNet.Wpf.GitHub , Microsoft.DotNet.Wpf.ProjectTemplates , Microsoft.NET.Sdk.WindowsDesktop From Version 8.0.2-servicing.24068.6 -> To Version 8.0.3-servicing.24106.9 --- NuGet.config | 16 ++++++++++++++++ eng/Version.Details.xml | 12 ++++++------ eng/Versions.props | 4 ++-- 3 files changed, 24 insertions(+), 8 deletions(-) diff --git a/NuGet.config b/NuGet.config index df93694fe..d3886e2d5 100644 --- a/NuGet.config +++ b/NuGet.config @@ -10,9 +10,17 @@ + + + + + + + + @@ -25,9 +33,17 @@ + + + + + + + + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 8736c635e..1d2c46853 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -9,13 +9,13 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-winforms c58fa00bd16b92aab1d7fb2b93e71af6a7768139 - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - 472140dd926227876848e48f41cfc9acb9275492 + 8e71159b8be25a26ca8d25c68856159cfe86979d - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - 472140dd926227876848e48f41cfc9acb9275492 + 8e71159b8be25a26ca8d25c68856159cfe86979d https://dev.azure.com/dnceng/internal/_git/dotnet-runtime @@ -33,9 +33,9 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-winforms c58fa00bd16b92aab1d7fb2b93e71af6a7768139 - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - 472140dd926227876848e48f41cfc9acb9275492 + 8e71159b8be25a26ca8d25c68856159cfe86979d https://dev.azure.com/dnceng/internal/_git/dotnet-runtime diff --git a/eng/Versions.props b/eng/Versions.props index 2e23e9932..e680e666d 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -69,7 +69,7 @@ 8.0.2-servicing.24068.3 8.0.2 - 8.0.2-servicing.24068.6 - 8.0.2-servicing.24068.6 + 8.0.3-servicing.24106.9 + 8.0.3-servicing.24106.9 From e74878af6c08d31da7431a6d56dcea1337b123f3 Mon Sep 17 00:00:00 2001 From: Eric StJohn Date: Wed, 7 Feb 2024 17:56:02 -0800 Subject: [PATCH 111/222] [release/8.0] Update System.Data.SqlClient (#4129) Update System.Data.SqlClient --- eng/Versions.props | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eng/Versions.props b/eng/Versions.props index c90d14e20..e4ba1d44d 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -18,7 +18,7 @@ 8.0.0-beta.24059.4 4.5.0 - 4.8.5 + 4.8.6 4.7.0 4.7.0 4.7.0 From 6cc489d69e9ce1add1cad818d7464a7edc817022 Mon Sep 17 00:00:00 2001 From: Loni Tra Date: Mon, 12 Feb 2024 12:31:25 -0800 Subject: [PATCH 112/222] Update PlatformManifest.txt with versions from 8.0 (#4154) --- .../src/sfx/PlatformManifest.txt | 144 +++++++++--------- 1 file changed, 72 insertions(+), 72 deletions(-) diff --git a/src/windowsdesktop/src/sfx/PlatformManifest.txt b/src/windowsdesktop/src/sfx/PlatformManifest.txt index f57da1278..72076b64d 100644 --- a/src/windowsdesktop/src/sfx/PlatformManifest.txt +++ b/src/windowsdesktop/src/sfx/PlatformManifest.txt @@ -1,76 +1,76 @@ -Microsoft.VisualBasic.Forms.resources.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.52014 -System.Windows.Forms.Design.resources.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.52014 -System.Windows.Forms.Primitives.resources.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.52014 -System.Windows.Forms.resources.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.52014 -PresentationCore.resources.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.52101 -PresentationFramework.resources.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.52101 -PresentationUI.resources.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.52101 -ReachFramework.resources.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.52101 -System.Windows.Controls.Ribbon.resources.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.52101 -System.Windows.Input.Manipulations.resources.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.52101 -System.Xaml.resources.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.52101 -UIAutomationClient.resources.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.52101 -UIAutomationClientSideProviders.resources.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.52101 -UIAutomationProvider.resources.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.52101 -UIAutomationTypes.resources.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.52101 -WindowsBase.resources.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.52101 -WindowsFormsIntegration.resources.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.52101 +Microsoft.VisualBasic.Forms.resources.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.53105 +System.Windows.Forms.Design.resources.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.53105 +System.Windows.Forms.Primitives.resources.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.53105 +System.Windows.Forms.resources.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.53105 +PresentationCore.resources.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.53104 +PresentationFramework.resources.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.53104 +PresentationUI.resources.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.53104 +ReachFramework.resources.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.53104 +System.Windows.Controls.Ribbon.resources.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.53104 +System.Windows.Input.Manipulations.resources.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.53104 +System.Xaml.resources.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.53104 +UIAutomationClient.resources.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.53104 +UIAutomationClientSideProviders.resources.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.53104 +UIAutomationProvider.resources.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.53104 +UIAutomationTypes.resources.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.53104 +WindowsBase.resources.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.53104 +WindowsFormsIntegration.resources.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.53104 D3DCompiler_47_cor3.dll|Microsoft.WindowsDesktop.App.Ref||10.0.22621.1778 -PenImc_cor3.dll|Microsoft.WindowsDesktop.App.Ref||8.0.23.52101 +PenImc_cor3.dll|Microsoft.WindowsDesktop.App.Ref||8.0.23.53104 PresentationNative_cor3.dll|Microsoft.WindowsDesktop.App.Ref||8.0.23.46902 vcruntime140_cor3.dll|Microsoft.WindowsDesktop.App.Ref||14.38.33126.1 -wpfgfx_cor3.dll|Microsoft.WindowsDesktop.App.Ref||8.0.23.52101 +wpfgfx_cor3.dll|Microsoft.WindowsDesktop.App.Ref||8.0.23.53104 System.Diagnostics.EventLog.Messages.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|0.0.0.0 -Accessibility.dll|Microsoft.WindowsDesktop.App.Ref|4.0.0.0|8.0.23.52014 -Microsoft.VisualBasic.dll|Microsoft.WindowsDesktop.App.Ref|10.1.0.0|8.0.23.52014 -System.Design.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.52014 -System.Drawing.Design.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.52014 -System.Drawing.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.52014 -System.Windows.Forms.Design.Editors.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.52014 -Microsoft.Win32.Registry.AccessControl.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.52016 -Microsoft.Win32.SystemEvents.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.52016 -System.CodeDom.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.52016 -System.Configuration.ConfigurationManager.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.52016 -System.Diagnostics.EventLog.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.52016 -System.Diagnostics.PerformanceCounter.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.52016 -System.DirectoryServices.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.52016 -System.IO.Packaging.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.52016 -System.Resources.Extensions.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.52016 -System.Security.Cryptography.Pkcs.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.52016 -System.Security.Cryptography.ProtectedData.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.52016 -System.Security.Cryptography.Xml.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.52016 -System.Security.Permissions.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.52016 -System.Threading.AccessControl.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.52016 -System.Windows.Extensions.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.52016 -Microsoft.VisualBasic.Forms.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.52014 -System.Drawing.Common.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.52014 -System.Windows.Forms.Design.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.52014 -System.Windows.Forms.Primitives.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.52014 -System.Windows.Forms.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.52014 -DirectWriteForwarder.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.52101 -PresentationCore.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.52101 -PresentationFramework-SystemCore.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.52101 -PresentationFramework-SystemData.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.52101 -PresentationFramework-SystemDrawing.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.52101 -PresentationFramework-SystemXml.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.52101 -PresentationFramework-SystemXmlLinq.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.52101 -PresentationFramework.Aero.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.52101 -PresentationFramework.Aero2.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.52101 -PresentationFramework.AeroLite.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.52101 -PresentationFramework.Classic.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.52101 -PresentationFramework.Luna.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.52101 -PresentationFramework.Royale.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.52101 -PresentationFramework.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.52101 -PresentationUI.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.52101 -ReachFramework.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.52101 -System.Printing.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.52101 -System.Windows.Controls.Ribbon.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.52101 -System.Windows.Input.Manipulations.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.52101 -System.Windows.Presentation.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.52101 -System.Xaml.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.52101 -UIAutomationClient.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.52101 -UIAutomationClientSideProviders.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.52101 -UIAutomationProvider.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.52101 -UIAutomationTypes.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.52101 -WindowsBase.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.52101 -WindowsFormsIntegration.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.52101 +Accessibility.dll|Microsoft.WindowsDesktop.App.Ref|4.0.0.0|8.0.23.53105 +Microsoft.VisualBasic.dll|Microsoft.WindowsDesktop.App.Ref|10.1.0.0|8.0.23.53105 +System.Design.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.53105 +System.Drawing.Design.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.53105 +System.Drawing.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.53105 +System.Windows.Forms.Design.Editors.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.53105 +Microsoft.Win32.Registry.AccessControl.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.53103 +Microsoft.Win32.SystemEvents.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.53103 +System.CodeDom.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.53103 +System.Configuration.ConfigurationManager.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.53103 +System.Diagnostics.EventLog.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.53103 +System.Diagnostics.PerformanceCounter.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.53103 +System.DirectoryServices.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.53103 +System.IO.Packaging.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.53103 +System.Resources.Extensions.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.53103 +System.Security.Cryptography.Pkcs.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.53103 +System.Security.Cryptography.ProtectedData.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.53103 +System.Security.Cryptography.Xml.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.53103 +System.Security.Permissions.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.53103 +System.Threading.AccessControl.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.53103 +System.Windows.Extensions.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.53103 +Microsoft.VisualBasic.Forms.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.53105 +System.Drawing.Common.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.53105 +System.Windows.Forms.Design.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.53105 +System.Windows.Forms.Primitives.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.53105 +System.Windows.Forms.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.53105 +DirectWriteForwarder.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.53104 +PresentationCore.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.53104 +PresentationFramework-SystemCore.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.53104 +PresentationFramework-SystemData.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.53104 +PresentationFramework-SystemDrawing.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.53104 +PresentationFramework-SystemXml.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.53104 +PresentationFramework-SystemXmlLinq.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.53104 +PresentationFramework.Aero.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.53104 +PresentationFramework.Aero2.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.53104 +PresentationFramework.AeroLite.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.53104 +PresentationFramework.Classic.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.53104 +PresentationFramework.Luna.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.53104 +PresentationFramework.Royale.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.53104 +PresentationFramework.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.53104 +PresentationUI.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.53104 +ReachFramework.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.53104 +System.Printing.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.53104 +System.Windows.Controls.Ribbon.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.53104 +System.Windows.Input.Manipulations.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.53104 +System.Windows.Presentation.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.53104 +System.Xaml.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.53104 +UIAutomationClient.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.53104 +UIAutomationClientSideProviders.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.53104 +UIAutomationProvider.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.53104 +UIAutomationTypes.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.53104 +WindowsBase.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.53104 +WindowsFormsIntegration.dll|Microsoft.WindowsDesktop.App.Ref|8.0.0.0|8.0.23.53104 From 36553f234d902d42712e5d0aa0860c052dd417a6 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Wed, 14 Feb 2024 20:10:25 +0000 Subject: [PATCH 113/222] [release/8.0] Update dependencies from dotnet/arcade (#4162) [release/8.0] Update dependencies from dotnet/arcade --- NuGet.config | 16 +++++++++++++ eng/Version.Details.xml | 24 +++++++++---------- eng/Versions.props | 8 +++---- eng/common/post-build/publish-using-darc.ps1 | 4 ++-- .../templates/job/publish-build-assets.yml | 14 +++++------ .../templates/post-build/post-build.yml | 16 ++++++------- .../templates/variables/pool-providers.yml | 12 +++++----- global.json | 4 ++-- 8 files changed, 57 insertions(+), 41 deletions(-) diff --git a/NuGet.config b/NuGet.config index df93694fe..d3886e2d5 100644 --- a/NuGet.config +++ b/NuGet.config @@ -10,9 +10,17 @@ + + + + + + + + @@ -25,9 +33,17 @@ + + + + + + + + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 8736c635e..346a35db3 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -151,29 +151,29 @@ - + https://github.com/dotnet/arcade - 61ae141d2bf3534619265c8f691fd55dc3e75147 + da98edc4c3ea539f109ea320672136ceb32591a7 - + https://github.com/dotnet/arcade - 61ae141d2bf3534619265c8f691fd55dc3e75147 + da98edc4c3ea539f109ea320672136ceb32591a7 - + https://github.com/dotnet/arcade - 61ae141d2bf3534619265c8f691fd55dc3e75147 + da98edc4c3ea539f109ea320672136ceb32591a7 - + https://github.com/dotnet/arcade - 61ae141d2bf3534619265c8f691fd55dc3e75147 + da98edc4c3ea539f109ea320672136ceb32591a7 - + https://github.com/dotnet/arcade - 61ae141d2bf3534619265c8f691fd55dc3e75147 + da98edc4c3ea539f109ea320672136ceb32591a7 - + https://github.com/dotnet/arcade - 61ae141d2bf3534619265c8f691fd55dc3e75147 + da98edc4c3ea539f109ea320672136ceb32591a7 diff --git a/eng/Versions.props b/eng/Versions.props index 4f17f34d4..629bf285c 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -12,10 +12,10 @@ - 8.0.0-beta.24059.4 - 8.0.0-beta.24059.4 - 8.0.0-beta.24059.4 - 8.0.0-beta.24059.4 + 8.0.0-beta.24113.2 + 8.0.0-beta.24113.2 + 8.0.0-beta.24113.2 + 8.0.0-beta.24113.2 4.5.0 4.8.6 diff --git a/eng/common/post-build/publish-using-darc.ps1 b/eng/common/post-build/publish-using-darc.ps1 index 1e779fec4..5a3a32ea8 100644 --- a/eng/common/post-build/publish-using-darc.ps1 +++ b/eng/common/post-build/publish-using-darc.ps1 @@ -12,7 +12,7 @@ param( try { . $PSScriptRoot\post-build-utils.ps1 - $darc = Get-Darc + $darc = Get-Darc $optionalParams = [System.Collections.ArrayList]::new() @@ -46,7 +46,7 @@ try { } Write-Host 'done.' -} +} catch { Write-Host $_ Write-PipelineTelemetryError -Category 'PromoteBuild' -Message "There was an error while trying to publish build '$BuildId' to default channels." diff --git a/eng/common/templates/job/publish-build-assets.yml b/eng/common/templates/job/publish-build-assets.yml index fa5446c09..8ec0151de 100644 --- a/eng/common/templates/job/publish-build-assets.yml +++ b/eng/common/templates/job/publish-build-assets.yml @@ -58,7 +58,7 @@ jobs: demands: Cmd # If it's not devdiv, it's dnceng ${{ if ne(variables['System.TeamProject'], 'DevDiv') }}: - name: $(DncEngInternalBuildPool) + name: NetCore1ESPool-Publishing-Internal demands: ImageOverride -equals windows.vs2019.amd64 steps: @@ -71,7 +71,7 @@ jobs: checkDownloadedFiles: true condition: ${{ parameters.condition }} continueOnError: ${{ parameters.continueOnError }} - + - task: NuGetAuthenticate@1 - task: PowerShell@2 @@ -86,7 +86,7 @@ jobs: /p:OfficialBuildId=$(Build.BuildNumber) condition: ${{ parameters.condition }} continueOnError: ${{ parameters.continueOnError }} - + - task: powershell@2 displayName: Create ReleaseConfigs Artifact inputs: @@ -95,7 +95,7 @@ jobs: Add-Content -Path "$(Build.StagingDirectory)/ReleaseConfigs.txt" -Value $(BARBuildId) Add-Content -Path "$(Build.StagingDirectory)/ReleaseConfigs.txt" -Value "$(DefaultChannels)" Add-Content -Path "$(Build.StagingDirectory)/ReleaseConfigs.txt" -Value $(IsStableBuild) - + - task: PublishBuildArtifacts@1 displayName: Publish ReleaseConfigs Artifact inputs: @@ -121,7 +121,7 @@ jobs: - task: PublishBuildArtifacts@1 displayName: Publish SymbolPublishingExclusionsFile Artifact - condition: eq(variables['SymbolExclusionFile'], 'true') + condition: eq(variables['SymbolExclusionFile'], 'true') inputs: PathtoPublish: '$(Build.SourcesDirectory)/eng/SymbolPublishingExclusionsFile.txt' PublishLocation: Container @@ -137,7 +137,7 @@ jobs: displayName: Publish Using Darc inputs: filePath: $(Build.SourcesDirectory)/eng/common/post-build/publish-using-darc.ps1 - arguments: -BuildId $(BARBuildId) + arguments: -BuildId $(BARBuildId) -PublishingInfraVersion 3 -AzdoToken '$(publishing-dnceng-devdiv-code-r-build-re)' -MaestroToken '$(MaestroApiAccessToken)' @@ -148,4 +148,4 @@ jobs: - ${{ if eq(parameters.enablePublishBuildArtifacts, 'true') }}: - template: /eng/common/templates/steps/publish-logs.yml parameters: - JobLabel: 'Publish_Artifacts_Logs' + JobLabel: 'Publish_Artifacts_Logs' diff --git a/eng/common/templates/post-build/post-build.yml b/eng/common/templates/post-build/post-build.yml index 3f74abf7c..aba44a25a 100644 --- a/eng/common/templates/post-build/post-build.yml +++ b/eng/common/templates/post-build/post-build.yml @@ -39,7 +39,7 @@ parameters: displayName: Enable NuGet validation type: boolean default: true - + - name: publishInstallersAndChecksums displayName: Publish installers and checksums type: boolean @@ -131,8 +131,8 @@ stages: displayName: Validate inputs: filePath: $(Build.SourcesDirectory)/eng/common/post-build/nuget-validation.ps1 - arguments: -PackagesPath $(Build.ArtifactStagingDirectory)/PackageArtifacts/ - -ToolDestinationPath $(Agent.BuildDirectory)/Extract/ + arguments: -PackagesPath $(Build.ArtifactStagingDirectory)/PackageArtifacts/ + -ToolDestinationPath $(Agent.BuildDirectory)/Extract/ - job: displayName: Signing Validation @@ -221,9 +221,9 @@ stages: displayName: Validate inputs: filePath: $(Build.SourcesDirectory)/eng/common/post-build/sourcelink-validation.ps1 - arguments: -InputPath $(Build.ArtifactStagingDirectory)/BlobArtifacts/ - -ExtractPath $(Agent.BuildDirectory)/Extract/ - -GHRepoName $(Build.Repository.Name) + arguments: -InputPath $(Build.ArtifactStagingDirectory)/BlobArtifacts/ + -ExtractPath $(Agent.BuildDirectory)/Extract/ + -GHRepoName $(Build.Repository.Name) -GHCommit $(Build.SourceVersion) -SourcelinkCliVersion $(SourceLinkCLIVersion) continueOnError: true @@ -258,7 +258,7 @@ stages: demands: Cmd # If it's not devdiv, it's dnceng ${{ else }}: - name: $(DncEngInternalBuildPool) + name: NetCore1ESPool-Publishing-Internal demands: ImageOverride -equals windows.vs2019.amd64 steps: - template: setup-maestro-vars.yml @@ -272,7 +272,7 @@ stages: displayName: Publish Using Darc inputs: filePath: $(Build.SourcesDirectory)/eng/common/post-build/publish-using-darc.ps1 - arguments: -BuildId $(BARBuildId) + arguments: -BuildId $(BARBuildId) -PublishingInfraVersion ${{ parameters.publishingInfraVersion }} -AzdoToken '$(publishing-dnceng-devdiv-code-r-build-re)' -MaestroToken '$(MaestroApiAccessToken)' diff --git a/eng/common/templates/variables/pool-providers.yml b/eng/common/templates/variables/pool-providers.yml index 9cc5c550d..d236f9fdb 100644 --- a/eng/common/templates/variables/pool-providers.yml +++ b/eng/common/templates/variables/pool-providers.yml @@ -1,15 +1,15 @@ -# Select a pool provider based off branch name. Anything with branch name containing 'release' must go into an -Svc pool, +# Select a pool provider based off branch name. Anything with branch name containing 'release' must go into an -Svc pool, # otherwise it should go into the "normal" pools. This separates out the queueing and billing of released branches. -# Motivation: +# Motivation: # Once a given branch of a repository's output has been officially "shipped" once, it is then considered to be COGS # (Cost of goods sold) and should be moved to a servicing pool provider. This allows both separation of queueing # (allowing release builds and main PR builds to not intefere with each other) and billing (required for COGS. -# Additionally, the pool provider name itself may be subject to change when the .NET Core Engineering Services -# team needs to move resources around and create new and potentially differently-named pools. Using this template +# Additionally, the pool provider name itself may be subject to change when the .NET Core Engineering Services +# team needs to move resources around and create new and potentially differently-named pools. Using this template # file from an Arcade-ified repo helps guard against both having to update one's release/* branches and renaming. -# How to use: +# How to use: # This yaml assumes your shipped product branches use the naming convention "release/..." (which many do). # If we find alternate naming conventions in broad usage it can be added to the condition below. # @@ -54,4 +54,4 @@ variables: False, 'NetCore1ESPool-Internal' ) - ] \ No newline at end of file + ] diff --git a/global.json b/global.json index 274fade5e..0813d72cd 100644 --- a/global.json +++ b/global.json @@ -3,8 +3,8 @@ "dotnet": "8.0.101" }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "8.0.0-beta.24059.4", - "Microsoft.DotNet.SharedFramework.Sdk": "8.0.0-beta.24059.4", + "Microsoft.DotNet.Arcade.Sdk": "8.0.0-beta.24113.2", + "Microsoft.DotNet.SharedFramework.Sdk": "8.0.0-beta.24113.2", "Microsoft.Build.NoTargets": "3.7.0", "Microsoft.Build.Traversal": "3.4.0" } From cba94ed5f2b58c916103338f38a42896c2494a24 Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Wed, 14 Feb 2024 20:47:47 +0000 Subject: [PATCH 114/222] Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-wpf build 20240214.6 Microsoft.DotNet.Wpf.GitHub , Microsoft.DotNet.Wpf.ProjectTemplates , Microsoft.NET.Sdk.WindowsDesktop From Version 8.0.2-servicing.24068.6 -> To Version 8.0.3-servicing.24114.6 --- eng/Version.Details.xml | 12 ++++++------ eng/Versions.props | 4 ++-- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 1d2c46853..8d686cb8c 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -9,13 +9,13 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-winforms c58fa00bd16b92aab1d7fb2b93e71af6a7768139 - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - 8e71159b8be25a26ca8d25c68856159cfe86979d + 65e7d26b59594d892d8c1084440eecab4bfbbf6f - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - 8e71159b8be25a26ca8d25c68856159cfe86979d + 65e7d26b59594d892d8c1084440eecab4bfbbf6f https://dev.azure.com/dnceng/internal/_git/dotnet-runtime @@ -33,9 +33,9 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-winforms c58fa00bd16b92aab1d7fb2b93e71af6a7768139 - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - 8e71159b8be25a26ca8d25c68856159cfe86979d + 65e7d26b59594d892d8c1084440eecab4bfbbf6f https://dev.azure.com/dnceng/internal/_git/dotnet-runtime diff --git a/eng/Versions.props b/eng/Versions.props index e680e666d..6a3d14624 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -69,7 +69,7 @@ 8.0.2-servicing.24068.3 8.0.2 - 8.0.3-servicing.24106.9 - 8.0.3-servicing.24106.9 + 8.0.3-servicing.24114.6 + 8.0.3-servicing.24114.6 From 70b46531a764e5cf71981edbcd5c25d95dd603cb Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Fri, 16 Feb 2024 19:52:46 +0000 Subject: [PATCH 115/222] Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-wpf build 20240216.2 Microsoft.DotNet.Wpf.GitHub , Microsoft.DotNet.Wpf.ProjectTemplates , Microsoft.NET.Sdk.WindowsDesktop From Version 8.0.3-servicing.24114.6 -> To Version 8.0.3-servicing.24116.2 Dependency coherency updates Microsoft.Private.Winforms,Microsoft.Internal.Runtime.WindowsDesktop.Transport,Microsoft.Private.Winforms,Microsoft.NETCore.App.Ref,Microsoft.Private.Winforms,VS.Redist.Common.NetCore.SharedFramework.x64.8.0,Microsoft.Private.Winforms,Microsoft.NETCore.App.Runtime.win-x64,Microsoft.Dotnet.WinForms.ProjectTemplates,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,System.Drawing.Common From Version 8.0.2-servicing.24068.3 -> To Version 8.0.3-servicing.24115.9 (parent: Microsoft.DotNet.Wpf.GitHub --- NuGet.config | 24 ++++-------------------- eng/Version.Details.xml | 40 ++++++++++++++++++++-------------------- eng/Versions.props | 18 +++++++++--------- 3 files changed, 33 insertions(+), 49 deletions(-) diff --git a/NuGet.config b/NuGet.config index d3886e2d5..f888e2ac6 100644 --- a/NuGet.config +++ b/NuGet.config @@ -9,18 +9,10 @@ - - - - - + - - - - - + @@ -33,18 +25,10 @@ - - - - - + - - - - - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index be42fd0d6..b48bcb410 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,41 +1,41 @@ - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 1381d5ebd2ab1f292848d5b19b80cf71ac332508 + 0c7efec09666babeebea1f608c91757b8faccca0 - + https://dev.azure.com/dnceng/internal/_git/dotnet-winforms - c58fa00bd16b92aab1d7fb2b93e71af6a7768139 + 3a133a5debb4116b3fea3b8b737432347f5d53b8 - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - 65e7d26b59594d892d8c1084440eecab4bfbbf6f + 15da2fb4f945bb81bf4b021e5158e1be0e27d78a - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - 65e7d26b59594d892d8c1084440eecab4bfbbf6f + 15da2fb4f945bb81bf4b021e5158e1be0e27d78a - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 1381d5ebd2ab1f292848d5b19b80cf71ac332508 + 0c7efec09666babeebea1f608c91757b8faccca0 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 1381d5ebd2ab1f292848d5b19b80cf71ac332508 + 0c7efec09666babeebea1f608c91757b8faccca0 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 1381d5ebd2ab1f292848d5b19b80cf71ac332508 + 0c7efec09666babeebea1f608c91757b8faccca0 - + https://dev.azure.com/dnceng/internal/_git/dotnet-winforms - c58fa00bd16b92aab1d7fb2b93e71af6a7768139 + 3a133a5debb4116b3fea3b8b737432347f5d53b8 - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - 65e7d26b59594d892d8c1084440eecab4bfbbf6f + 15da2fb4f945bb81bf4b021e5158e1be0e27d78a https://dev.azure.com/dnceng/internal/_git/dotnet-runtime @@ -145,9 +145,9 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime 5535e31a712343a63f5d7d796cd874e563e5ac14 - + https://dev.azure.com/dnceng/internal/_git/dotnet-winforms - c58fa00bd16b92aab1d7fb2b93e71af6a7768139 + 3a133a5debb4116b3fea3b8b737432347f5d53b8 diff --git a/eng/Versions.props b/eng/Versions.props index d2caa49ef..d7341a244 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -25,9 +25,9 @@ 6.2.4 - 8.0.2-servicing.24067.11 - 8.0.2 - 8.0.2 + 8.0.3-servicing.24114.5 + 8.0.3 + 8.0.3 8.0.0 5.0.0 8.0.0 @@ -61,15 +61,15 @@ 8.0.0 8.0.0 8.0.0 - 8.0.2-servicing.24067.11 + 8.0.3-servicing.24114.5 4.10.0 - 8.0.2-servicing.24068.3 - 8.0.2-servicing.24068.3 - 8.0.2 + 8.0.3-servicing.24115.9 + 8.0.3-servicing.24115.9 + 8.0.3 - 8.0.3-servicing.24114.6 - 8.0.3-servicing.24114.6 + 8.0.3-servicing.24116.2 + 8.0.3-servicing.24116.2 From baf3c0df45e13d065884f7e84260f645295f219e Mon Sep 17 00:00:00 2001 From: DotNet Bot Date: Fri, 16 Feb 2024 22:02:28 +0000 Subject: [PATCH 116/222] [internal/release/8.0] Update dependencies from dnceng/internal/dotnet-wpf --- NuGet.config | 8 ++++---- eng/Version.Details.xml | 34 +++++++++++++++++----------------- eng/Versions.props | 12 ++++++------ 3 files changed, 27 insertions(+), 27 deletions(-) diff --git a/NuGet.config b/NuGet.config index f888e2ac6..f1ec09f9d 100644 --- a/NuGet.config +++ b/NuGet.config @@ -9,10 +9,10 @@ - + - + @@ -25,10 +25,10 @@ - + - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index b48bcb410..c85e7d532 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,41 +1,41 @@ - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 0c7efec09666babeebea1f608c91757b8faccca0 + 9f4b1f5d664afdfc80e1508ab7ed099dff210fbd - + https://dev.azure.com/dnceng/internal/_git/dotnet-winforms - 3a133a5debb4116b3fea3b8b737432347f5d53b8 + bd280bbb5c9699bb93097206f076ad2f330ea8e1 - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - 15da2fb4f945bb81bf4b021e5158e1be0e27d78a + 46fb08cfa8160d0885b74c7f28a7b187ab86efed - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - 15da2fb4f945bb81bf4b021e5158e1be0e27d78a + 46fb08cfa8160d0885b74c7f28a7b187ab86efed https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 0c7efec09666babeebea1f608c91757b8faccca0 + 9f4b1f5d664afdfc80e1508ab7ed099dff210fbd - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 0c7efec09666babeebea1f608c91757b8faccca0 + 9f4b1f5d664afdfc80e1508ab7ed099dff210fbd https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 0c7efec09666babeebea1f608c91757b8faccca0 + 9f4b1f5d664afdfc80e1508ab7ed099dff210fbd - + https://dev.azure.com/dnceng/internal/_git/dotnet-winforms - 3a133a5debb4116b3fea3b8b737432347f5d53b8 + bd280bbb5c9699bb93097206f076ad2f330ea8e1 - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - 15da2fb4f945bb81bf4b021e5158e1be0e27d78a + 46fb08cfa8160d0885b74c7f28a7b187ab86efed https://dev.azure.com/dnceng/internal/_git/dotnet-runtime @@ -147,7 +147,7 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-winforms - 3a133a5debb4116b3fea3b8b737432347f5d53b8 + bd280bbb5c9699bb93097206f076ad2f330ea8e1 diff --git a/eng/Versions.props b/eng/Versions.props index d7341a244..23a4536d3 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -25,7 +25,7 @@ 6.2.4 - 8.0.3-servicing.24114.5 + 8.0.3-servicing.24114.23 8.0.3 8.0.3 8.0.0 @@ -61,15 +61,15 @@ 8.0.0 8.0.0 8.0.0 - 8.0.3-servicing.24114.5 + 8.0.3-servicing.24114.23 4.10.0 - 8.0.3-servicing.24115.9 - 8.0.3-servicing.24115.9 + 8.0.3-servicing.24116.3 + 8.0.3-servicing.24116.3 8.0.3 - 8.0.3-servicing.24116.2 - 8.0.3-servicing.24116.2 + 8.0.3-servicing.24116.6 + 8.0.3-servicing.24116.6 From 0fac9821db32133382549710d47d20d47cac34bf Mon Sep 17 00:00:00 2001 From: Milena Hristova Date: Wed, 28 Feb 2024 19:03:56 +0100 Subject: [PATCH 117/222] [release/8.0] Set metadata for .NET release shipping assets in manifest (#4183) Set metadata for .NET release shipping assets in manifest (#4173) * add publishing props file * set metadata for assets --- eng/Publishing.props | 5 +++++ src/publish/prepare-artifacts.proj | 13 +++++++++++++ 2 files changed, 18 insertions(+) create mode 100644 eng/Publishing.props diff --git a/eng/Publishing.props b/eng/Publishing.props new file mode 100644 index 000000000..a2ad98846 --- /dev/null +++ b/eng/Publishing.props @@ -0,0 +1,5 @@ + + + true + + \ No newline at end of file diff --git a/src/publish/prepare-artifacts.proj b/src/publish/prepare-artifacts.proj index d9d2965cf..351454ed6 100644 --- a/src/publish/prepare-artifacts.proj +++ b/src/publish/prepare-artifacts.proj @@ -28,8 +28,11 @@ true + + + @@ -49,6 +52,16 @@ PrepareArtifacts=$(PrepareArtifacts)" /> + + + + DotNetReleaseShipping=true + + + From ada9a323dc115aad9cdc3ac46a8c55507edd6fc1 Mon Sep 17 00:00:00 2001 From: vseanreesermsft <78103370+vseanreesermsft@users.noreply.github.com> Date: Wed, 6 Mar 2024 09:17:17 -0800 Subject: [PATCH 118/222] Update branding to 8.0.4 (#4201) --- eng/Versions.props | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eng/Versions.props b/eng/Versions.props index 629bf285c..5c4cd09fb 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -2,7 +2,7 @@ 8 0 - 3 + 4 servicing From 7f349bbed990ac99152579c8666a51de8eddd6e1 Mon Sep 17 00:00:00 2001 From: Loni Tra Date: Thu, 7 Mar 2024 13:08:31 -0800 Subject: [PATCH 119/222] [release/8.0] Duplicate YAML File (#4213) Duplicate YAML File (#4203) duplicate yml file --- azure-pipelines-PR.yml | 115 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 115 insertions(+) create mode 100644 azure-pipelines-PR.yml diff --git a/azure-pipelines-PR.yml b/azure-pipelines-PR.yml new file mode 100644 index 000000000..53b8608a5 --- /dev/null +++ b/azure-pipelines-PR.yml @@ -0,0 +1,115 @@ +trigger: + batch: true + branches: + include: + - main + - release/* + - internal/release/* + - experimental/* + +pr: +- main +- release/* +- experimental/* + +name: $(Date:yyyyMMdd)$(Rev:.r) + +variables: + - name: TeamName + value: dotnet-core-acquisition + # Skip Running CI tests + - name: SkipTests + value: false + # Set Official Build Id + - name: OfficialBuildId + value: $(Build.BuildNumber) + - ${{ if or(startswith(variables['Build.SourceBranch'], 'refs/heads/release/'), startswith(variables['Build.SourceBranch'], 'refs/heads/internal/release/'), eq(variables['Build.Reason'], 'Manual')) }}: + - name: PostBuildSign + value: false + - ${{ else }}: + - name: PostBuildSign + value: true + + # Set the target blob feed for package publish during official and validation builds. + - name: _DotNetArtifactsCategory + value: .NETCore + - name: _DotNetValidationArtifactsCategory + value: .NETCoreValidation + + # Produce test-signed build for PR and Public builds + - ${{ if or(eq(variables['System.TeamProject'], 'public'), in(variables['Build.Reason'], 'PullRequest')) }}: + - name: SignType + value: test + + # Set up non-PR build from internal project + - ${{ if and(ne(variables['System.TeamProject'], 'public'), notin(variables['Build.Reason'], 'PullRequest')) }}: + - name: SignType + value: $[ coalesce(variables.OfficialSignType, 'real') ] + +stages: +- stage: Build + jobs: + + # Windows x64 + - template: /eng/pipelines/jobs/windows-build.yml + parameters: + name: win_x64 + targetArchitecture: x64 + + # Windows x86 + - template: /eng/pipelines/jobs/windows-build.yml + parameters: + name: win_x86 + targetArchitecture: x86 + + # Windows arm64 + - template: /eng/pipelines/jobs/windows-build.yml + parameters: + name: win_arm64 + targetArchitecture: arm64 + +- ${{ if and(ne(variables['System.TeamProject'], 'public'), notin(variables['Build.Reason'], 'PullRequest')) }}: + - stage: PrepareForPublish + displayName: Prepare for Publish + dependsOn: Build + jobs: + # Prep artifacts: sign them and upload pipeline artifacts expected by stages-based publishing. + - template: /eng/pipelines/jobs/prepare-signed-artifacts.yml + parameters: + PublishRidAgnosticPackagesFromJobName: win_x64 + # Publish to Build Asset Registry in order to generate the ReleaseConfigs artifact. + - template: /eng/common/templates/job/publish-build-assets.yml + parameters: + publishUsingPipelines: true + publishAssetsImmediately: true + dependsOn: PrepareSignedArtifacts + pool: + name: NetCore1ESPool-Internal + demands: ImageOverride -equals windows.vs2022preview.amd64 + + # Stages-based publishing entry point + - template: /eng/common/templates/post-build/post-build.yml + parameters: + publishingInfraVersion: 3 + validateDependsOn: + - PrepareForPublish + enableSymbolValidation: false + enableSigningValidation: false + enableNugetValidation: false + enableSourceLinkValidation: false + publishAssetsImmediately: true + + SDLValidationParameters: + enable: false + params: >- + -SourceToolsList @("policheck","credscan") + -TsaInstanceURL https://devdiv.visualstudio.com/ + -TsaProjectName DEVDIV + -TsaNotificationEmail wffteam@microsoft.com + -TsaCodebaseAdmin REDMOND\advolker + -TsaBugAreaPath "DevDiv\NET Fundamentals\WindowsDesktop" + -TsaIterationPath DevDiv + -TsaRepositoryName WindowsDesktop + -TsaCodebaseName WindowsDesktop + -TsaOnboard $True + -TsaPublish $True From 12424e37c03c57d8615822c7fcb7d308b18d9d64 Mon Sep 17 00:00:00 2001 From: Loni Tra Date: Fri, 8 Mar 2024 15:30:26 -0800 Subject: [PATCH 120/222] [release/8.0] Fix azure-pipelines-pr.yml (#4221) fix yml --- azure-pipelines-PR.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/azure-pipelines-PR.yml b/azure-pipelines-PR.yml index 53b8608a5..704761628 100644 --- a/azure-pipelines-PR.yml +++ b/azure-pipelines-PR.yml @@ -81,7 +81,6 @@ stages: - template: /eng/common/templates/job/publish-build-assets.yml parameters: publishUsingPipelines: true - publishAssetsImmediately: true dependsOn: PrepareSignedArtifacts pool: name: NetCore1ESPool-Internal @@ -97,7 +96,6 @@ stages: enableSigningValidation: false enableNugetValidation: false enableSourceLinkValidation: false - publishAssetsImmediately: true SDLValidationParameters: enable: false From 3def27886d2e371073f2ec67234be2055159f6bd Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Sun, 10 Mar 2024 06:10:08 +0000 Subject: [PATCH 121/222] Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-wpf build 20240309.4 Microsoft.DotNet.Wpf.GitHub , Microsoft.DotNet.Wpf.ProjectTemplates , Microsoft.NET.Sdk.WindowsDesktop From Version 8.0.3-servicing.24116.6 -> To Version 8.0.4-servicing.24159.4 Dependency coherency updates Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Dotnet.WinForms.ProjectTemplates,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,System.Drawing.Common From Version 8.0.3-servicing.24116.3 -> To Version 8.0.4-servicing.24157.9 (parent: Microsoft.DotNet.Wpf.GitHub --- NuGet.config | 8 ++++++-- eng/Version.Details.xml | 24 ++++++++++++------------ eng/Versions.props | 10 +++++----- 3 files changed, 23 insertions(+), 19 deletions(-) diff --git a/NuGet.config b/NuGet.config index f1ec09f9d..536200eb3 100644 --- a/NuGet.config +++ b/NuGet.config @@ -10,9 +10,11 @@ + + - + @@ -25,10 +27,12 @@ + + - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index c85e7d532..147b336ef 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -5,17 +5,17 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime 9f4b1f5d664afdfc80e1508ab7ed099dff210fbd - + https://dev.azure.com/dnceng/internal/_git/dotnet-winforms - bd280bbb5c9699bb93097206f076ad2f330ea8e1 + b376f387d33bbfe5fda9da6077ea1b9105c732d8 - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - 46fb08cfa8160d0885b74c7f28a7b187ab86efed + 9b8d6158a943e2d7d3f48b274a314b2d60fb1335 - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - 46fb08cfa8160d0885b74c7f28a7b187ab86efed + 9b8d6158a943e2d7d3f48b274a314b2d60fb1335 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime @@ -29,13 +29,13 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime 9f4b1f5d664afdfc80e1508ab7ed099dff210fbd - + https://dev.azure.com/dnceng/internal/_git/dotnet-winforms - bd280bbb5c9699bb93097206f076ad2f330ea8e1 + b376f387d33bbfe5fda9da6077ea1b9105c732d8 - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - 46fb08cfa8160d0885b74c7f28a7b187ab86efed + 9b8d6158a943e2d7d3f48b274a314b2d60fb1335 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime @@ -145,9 +145,9 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime 5535e31a712343a63f5d7d796cd874e563e5ac14 - + https://dev.azure.com/dnceng/internal/_git/dotnet-winforms - bd280bbb5c9699bb93097206f076ad2f330ea8e1 + b376f387d33bbfe5fda9da6077ea1b9105c732d8 diff --git a/eng/Versions.props b/eng/Versions.props index 60ba6e27f..3f909feac 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -65,11 +65,11 @@ 4.10.0 - 8.0.3-servicing.24116.3 - 8.0.3-servicing.24116.3 - 8.0.3 + 8.0.4-servicing.24157.9 + 8.0.4-servicing.24157.9 + 8.0.4 - 8.0.3-servicing.24116.6 - 8.0.3-servicing.24116.6 + 8.0.4-servicing.24159.4 + 8.0.4-servicing.24159.4 From e379f652390ded08b276a7e3e3afb5d726fd9c8f Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Mon, 11 Mar 2024 21:03:46 +0000 Subject: [PATCH 122/222] Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-wpf build 20240311.8 Microsoft.DotNet.Wpf.GitHub , Microsoft.DotNet.Wpf.ProjectTemplates , Microsoft.NET.Sdk.WindowsDesktop From Version 8.0.3-servicing.24116.6 -> To Version 8.0.4-servicing.24161.8 Dependency coherency updates Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Dotnet.WinForms.ProjectTemplates,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,System.Drawing.Common From Version 8.0.3-servicing.24116.3 -> To Version 8.0.4-servicing.24157.9 (parent: Microsoft.DotNet.Wpf.GitHub --- eng/Version.Details.xml | 12 ++++++------ eng/Versions.props | 4 ++-- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 147b336ef..3134691b9 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -9,13 +9,13 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-winforms b376f387d33bbfe5fda9da6077ea1b9105c732d8 - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - 9b8d6158a943e2d7d3f48b274a314b2d60fb1335 + 8537295cb0637acfc62befc1459244d3bfdb70d4 - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - 9b8d6158a943e2d7d3f48b274a314b2d60fb1335 + 8537295cb0637acfc62befc1459244d3bfdb70d4 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime @@ -33,9 +33,9 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-winforms b376f387d33bbfe5fda9da6077ea1b9105c732d8 - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - 9b8d6158a943e2d7d3f48b274a314b2d60fb1335 + 8537295cb0637acfc62befc1459244d3bfdb70d4 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime diff --git a/eng/Versions.props b/eng/Versions.props index 3f909feac..4ac6c9d5a 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -69,7 +69,7 @@ 8.0.4-servicing.24157.9 8.0.4 - 8.0.4-servicing.24159.4 - 8.0.4-servicing.24159.4 + 8.0.4-servicing.24161.8 + 8.0.4-servicing.24161.8 From b86d3478bde761c760d8bce74c922a720d479f12 Mon Sep 17 00:00:00 2001 From: Loni Tra Date: Mon, 11 Mar 2024 19:23:00 -0700 Subject: [PATCH 123/222] [release/8.0] Duplicate All Build YAML Files (#4230) duplicate build yml --- azure-pipelines-PR.yml | 8 +- .../jobs/prepare-signed-artifacts-PR.yml | 63 +++++++++++++ eng/pipelines/jobs/windows-build-PR.yml | 89 +++++++++++++++++++ .../steps/upload-job-artifacts-PR.yml | 56 ++++++++++++ 4 files changed, 212 insertions(+), 4 deletions(-) create mode 100644 eng/pipelines/jobs/prepare-signed-artifacts-PR.yml create mode 100644 eng/pipelines/jobs/windows-build-PR.yml create mode 100644 eng/pipelines/steps/upload-job-artifacts-PR.yml diff --git a/azure-pipelines-PR.yml b/azure-pipelines-PR.yml index 704761628..25dae4a8b 100644 --- a/azure-pipelines-PR.yml +++ b/azure-pipelines-PR.yml @@ -51,19 +51,19 @@ stages: jobs: # Windows x64 - - template: /eng/pipelines/jobs/windows-build.yml + - template: /eng/pipelines/jobs/windows-build-PR.yml parameters: name: win_x64 targetArchitecture: x64 # Windows x86 - - template: /eng/pipelines/jobs/windows-build.yml + - template: /eng/pipelines/jobs/windows-build-PR.yml parameters: name: win_x86 targetArchitecture: x86 # Windows arm64 - - template: /eng/pipelines/jobs/windows-build.yml + - template: /eng/pipelines/jobs/windows-build-PR.yml parameters: name: win_arm64 targetArchitecture: arm64 @@ -74,7 +74,7 @@ stages: dependsOn: Build jobs: # Prep artifacts: sign them and upload pipeline artifacts expected by stages-based publishing. - - template: /eng/pipelines/jobs/prepare-signed-artifacts.yml + - template: /eng/pipelines/jobs/prepare-signed-artifacts-PR.yml parameters: PublishRidAgnosticPackagesFromJobName: win_x64 # Publish to Build Asset Registry in order to generate the ReleaseConfigs artifact. diff --git a/eng/pipelines/jobs/prepare-signed-artifacts-PR.yml b/eng/pipelines/jobs/prepare-signed-artifacts-PR.yml new file mode 100644 index 000000000..4165403d6 --- /dev/null +++ b/eng/pipelines/jobs/prepare-signed-artifacts-PR.yml @@ -0,0 +1,63 @@ +parameters: + dependsOn: [] + PublishRidAgnosticPackagesFromJobName: '' + +jobs: +- job: PrepareSignedArtifacts + displayName: Prepare Signed Artifacts + dependsOn: ${{ parameters.dependsOn }} + pool: + name: NetCore1ESPool-Svc-Internal + demands: ImageOverride -equals windows.vs2019.amd64 + # Double the default timeout. + timeoutInMinutes: 120 + workspace: + clean: all + + steps: + + - ${{ if and(ne(variables['System.TeamProject'], 'public'), notin(variables['Build.Reason'], 'PullRequest')) }}: + - task: NuGetAuthenticate@0 + + - task: MicroBuildSigningPlugin@2 + displayName: Install MicroBuild plugin for Signing + inputs: + signType: $(SignType) + zipSources: false + feedSource: https://dnceng.pkgs.visualstudio.com/_packaging/MicroBuildToolset/nuget/v3/index.json + condition: and(succeeded(), + in(variables['SignType'], 'real', 'test')) + + - task: DownloadBuildArtifacts@0 + displayName: Download IntermediateUnsignedArtifacts + inputs: + artifactName: IntermediateUnsignedArtifacts + downloadPath: $(Build.SourcesDirectory)\artifacts\PackageDownload + + - script: > + build.cmd -ci + -projects $(Build.SourcesDirectory)\src\publish\prepare-artifacts.proj + -c Release + /p:PublishRidAgnosticPackagesFromJobName=${{ parameters.PublishRidAgnosticPackagesFromJobName }} + /p:SignType=$(SignType) + /p:DotNetSignType=$(SignType) + /bl:$(Build.SourcesDirectory)\prepare-artifacts.binlog + displayName: Prepare artifacts and upload to build + + - task: CopyFiles@2 + displayName: Copy Files to $(Build.StagingDirectory)\BuildLogs + inputs: + SourceFolder: '$(Build.SourcesDirectory)' + Contents: | + **/*.log + **/*.binlog + TargetFolder: '$(Build.StagingDirectory)\BuildLogs' + continueOnError: true + condition: succeededOrFailed() + + - task: PublishBuildArtifacts@1 + displayName: Publish Artifact BuildLogs + inputs: + PathtoPublish: '$(Build.StagingDirectory)\BuildLogs' + ArtifactName: Logs-PrepareSignedArtifacts + condition: succeededOrFailed() \ No newline at end of file diff --git a/eng/pipelines/jobs/windows-build-PR.yml b/eng/pipelines/jobs/windows-build-PR.yml new file mode 100644 index 000000000..2f2c06bf0 --- /dev/null +++ b/eng/pipelines/jobs/windows-build-PR.yml @@ -0,0 +1,89 @@ +parameters: + additionalMSBuildArguments: '' + displayName: '' + skipTests: $(SkipTests) + targetArchitecture: null + timeoutInMinutes: 120 + +jobs: + - job: ${{ parameters.name }} + displayName: ${{ parameters.displayName }} + timeoutInMinutes: ${{ parameters.timeoutInMinutes }} + pool: + # Use a hosted pool when possible. + ${{ if eq(variables['System.TeamProject'], 'public') }}: + vmImage: 'windows-2019' + ${{ if ne(variables['System.TeamProject'], 'public') }}: + name: NetCore1ESPool-Internal + demands: ImageOverride -equals windows.vs2019.amd64 + strategy: + matrix: + Debug: + _BuildConfig: Debug + Release: + _BuildConfig: Release + workspace: + clean: all + variables: + - name: CommonMSBuildArgs + value: >- + -c $(_BuildConfig) + /p:OfficialBuildId=$(OfficialBuildId) + /p:TargetArchitecture=${{ parameters.targetArchitecture }} + /p:SkipTests=${{ parameters.skipTests }} + - name: MsbuildSigningArguments + value: /p:DotNetSignType=$(SignType) + - name: TargetArchitecture + value: ${{ parameters.targetArchitecture }} + - ${{ if eq(variables['System.TeamProject'], 'public') }}: + - name: _InternalRuntimeDownloadArgs + value: '' + - ${{ if ne(variables['System.TeamProject'], 'public') }}: + - group: DotNet-MSRC-Storage + - name: _InternalRuntimeDownloadArgs + value: >- + /p:DotNetRuntimeSourceFeed=https://dotnetclimsrc.blob.core.windows.net/dotnet + /p:DotNetRuntimeSourceFeedKey=$(dotnetclimsrc-read-sas-token-base64) + + steps: + - ${{ if ne(variables['System.TeamProject'], 'public') }}: + - task: NuGetAuthenticate@0 + + - task: PowerShell@2 + displayName: Setup Private Feeds Credentials + inputs: + filePath: $(Build.SourcesDirectory)/eng/common/SetupNugetSources.ps1 + arguments: -ConfigFile $(Build.SourcesDirectory)/NuGet.config -Password $Env:Token + env: + Token: $(dn-bot-dnceng-artifact-feeds-rw) + + - task: MicroBuildSigningPlugin@2 + displayName: Install MicroBuild plugin for Signing + inputs: + signType: $(SignType) + zipSources: false + feedSource: https://dnceng.pkgs.visualstudio.com/_packaging/MicroBuildToolset/nuget/v3/index.json + continueOnError: false + condition: and(succeeded(), + in(variables['SignType'], 'real', 'test')) + # NuGet's http cache lasts 30 minutes. If we're on a static machine, this may interfere with + # auto-update PRs by preventing the CI build from fetching the new version. Delete the cache. + - powershell: Remove-Item -Recurse -ErrorAction Ignore "$env:LocalAppData\NuGet\v3-cache" + displayName: Clear NuGet http cache (if exists) + + - script: >- + build.cmd -ci -test + $(CommonMSBuildArgs) + $(MsbuildSigningArguments) + $(_InternalRuntimeDownloadArgs) + displayName: Build + + # Generate SBOM for the internal leg only + - ${{ if and(ne(variables['System.TeamProject'], 'public'), notin(variables['Build.Reason'], 'PullRequest')) }}: + - template: ..\..\common\templates\steps\generate-sbom.yml + parameters: + name: Generate_SBOM_${{ parameters.name }} + + - template: /eng/pipelines/steps/upload-job-artifacts-PR.yml + parameters: + name: ${{ parameters.name }} \ No newline at end of file diff --git a/eng/pipelines/steps/upload-job-artifacts-PR.yml b/eng/pipelines/steps/upload-job-artifacts-PR.yml new file mode 100644 index 000000000..efc02a202 --- /dev/null +++ b/eng/pipelines/steps/upload-job-artifacts-PR.yml @@ -0,0 +1,56 @@ +parameters: + name: '' + +steps: +# Upload build outputs as build artifacts only if internal and not PR, to save storage space. +- ${{ if and(ne(variables['System.TeamProject'], 'public'), notin(variables['Build.Reason'], 'PullRequest')) }}: + - task: CopyFiles@2 + displayName: Prepare job-specific Artifacts subdirectory + inputs: + SourceFolder: '$(Build.SourcesDirectory)/artifacts/packages/$(_BuildConfig)' + Contents: | + Shipping/**/* + NonShipping/**/* + TargetFolder: '$(Build.StagingDirectory)/Artifacts/${{ parameters.name }}' + CleanTargetFolder: true + condition: and(succeeded(), eq(variables._BuildConfig, 'Release')) + + - task: PublishBuildArtifacts@1 + displayName: Publish Artifacts + inputs: + pathToPublish: '$(Build.StagingDirectory)/Artifacts' + artifactName: IntermediateUnsignedArtifacts + artifactType: container + condition: and(succeeded(), eq(variables._BuildConfig, 'Release')) + +# Always upload test outputs and build logs. +- task: PublishTestResults@2 + displayName: Publish Test Results + inputs: + testResultsFormat: 'xUnit' + testResultsFiles: '*.xml' + searchFolder: '$(Build.SourcesDirectory)/artifacts/TestResults/$(_BuildConfig)' + mergeTestResults: true + testRunTitle: ${{ parameters.name }}-$(_BuildConfig) + continueOnError: true + condition: always() + +- task: CopyFiles@2 + displayName: Prepare BuildLogs staging directory + inputs: + SourceFolder: '$(Build.SourcesDirectory)' + Contents: | + **/*.log + **/*.binlog + TargetFolder: '$(Build.StagingDirectory)/BuildLogs' + CleanTargetFolder: true + continueOnError: true + condition: succeededOrFailed() + +- task: PublishBuildArtifacts@1 + displayName: Publish BuildLogs + inputs: + PathtoPublish: '$(Build.StagingDirectory)/BuildLogs' + ArtifactName: Logs-${{ parameters.name }}-$(_BuildConfig) + continueOnError: true + condition: succeededOrFailed() \ No newline at end of file From fcd77e8fb3ee43bf57d48026b208ad505e6b54b0 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Mon, 18 Mar 2024 16:36:40 +0000 Subject: [PATCH 124/222] [release/8.0] Update dependencies from dotnet/arcade (#4256) [release/8.0] Update dependencies from dotnet/arcade --- NuGet.config | 4 - eng/Version.Details.xml | 24 +- eng/Versions.props | 8 +- eng/common/SetupNugetSources.ps1 | 26 +- eng/common/templates-official/job/job.yml | 263 ++++++++++++++++ .../templates-official/job/onelocbuild.yml | 112 +++++++ .../job/publish-build-assets.yml | 155 ++++++++++ .../templates-official/job/source-build.yml | 67 ++++ .../job/source-index-stage1.yml | 68 +++++ .../templates-official/jobs/codeql-build.yml | 31 ++ eng/common/templates-official/jobs/jobs.yml | 97 ++++++ .../templates-official/jobs/source-build.yml | 46 +++ .../post-build/common-variables.yml | 22 ++ .../post-build/post-build.yml | 285 ++++++++++++++++++ .../post-build/setup-maestro-vars.yml | 70 +++++ .../post-build/trigger-subscription.yml | 13 + .../steps/add-build-to-channel.yml | 13 + .../templates-official/steps/build-reason.yml | 12 + .../steps/component-governance.yml | 13 + .../steps/execute-codeql.yml | 32 ++ .../templates-official/steps/execute-sdl.yml | 88 ++++++ .../steps/generate-sbom.yml | 48 +++ .../templates-official/steps/publish-logs.yml | 23 ++ .../templates-official/steps/retain-build.yml | 28 ++ .../steps/send-to-helix.yml | 91 ++++++ .../templates-official/steps/source-build.yml | 129 ++++++++ .../variables/pool-providers.yml | 45 +++ .../variables/sdl-variables.yml | 7 + eng/common/templates/job/job.yml | 4 + eng/common/templates/steps/generate-sbom.yml | 2 +- global.json | 4 +- 31 files changed, 1794 insertions(+), 36 deletions(-) create mode 100644 eng/common/templates-official/job/job.yml create mode 100644 eng/common/templates-official/job/onelocbuild.yml create mode 100644 eng/common/templates-official/job/publish-build-assets.yml create mode 100644 eng/common/templates-official/job/source-build.yml create mode 100644 eng/common/templates-official/job/source-index-stage1.yml create mode 100644 eng/common/templates-official/jobs/codeql-build.yml create mode 100644 eng/common/templates-official/jobs/jobs.yml create mode 100644 eng/common/templates-official/jobs/source-build.yml create mode 100644 eng/common/templates-official/post-build/common-variables.yml create mode 100644 eng/common/templates-official/post-build/post-build.yml create mode 100644 eng/common/templates-official/post-build/setup-maestro-vars.yml create mode 100644 eng/common/templates-official/post-build/trigger-subscription.yml create mode 100644 eng/common/templates-official/steps/add-build-to-channel.yml create mode 100644 eng/common/templates-official/steps/build-reason.yml create mode 100644 eng/common/templates-official/steps/component-governance.yml create mode 100644 eng/common/templates-official/steps/execute-codeql.yml create mode 100644 eng/common/templates-official/steps/execute-sdl.yml create mode 100644 eng/common/templates-official/steps/generate-sbom.yml create mode 100644 eng/common/templates-official/steps/publish-logs.yml create mode 100644 eng/common/templates-official/steps/retain-build.yml create mode 100644 eng/common/templates-official/steps/send-to-helix.yml create mode 100644 eng/common/templates-official/steps/source-build.yml create mode 100644 eng/common/templates-official/variables/pool-providers.yml create mode 100644 eng/common/templates-official/variables/sdl-variables.yml diff --git a/NuGet.config b/NuGet.config index f1ec09f9d..1bd49f5bf 100644 --- a/NuGet.config +++ b/NuGet.config @@ -9,10 +9,8 @@ - - @@ -25,10 +23,8 @@ - - diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index c85e7d532..1e9a406d5 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -151,29 +151,29 @@ - + https://github.com/dotnet/arcade - da98edc4c3ea539f109ea320672136ceb32591a7 + f311667e0587f19c3fa9553a909975662107a351 - + https://github.com/dotnet/arcade - da98edc4c3ea539f109ea320672136ceb32591a7 + f311667e0587f19c3fa9553a909975662107a351 - + https://github.com/dotnet/arcade - da98edc4c3ea539f109ea320672136ceb32591a7 + f311667e0587f19c3fa9553a909975662107a351 - + https://github.com/dotnet/arcade - da98edc4c3ea539f109ea320672136ceb32591a7 + f311667e0587f19c3fa9553a909975662107a351 - + https://github.com/dotnet/arcade - da98edc4c3ea539f109ea320672136ceb32591a7 + f311667e0587f19c3fa9553a909975662107a351 - + https://github.com/dotnet/arcade - da98edc4c3ea539f109ea320672136ceb32591a7 + f311667e0587f19c3fa9553a909975662107a351 diff --git a/eng/Versions.props b/eng/Versions.props index 60ba6e27f..5915ec87b 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -12,10 +12,10 @@ - 8.0.0-beta.24113.2 - 8.0.0-beta.24113.2 - 8.0.0-beta.24113.2 - 8.0.0-beta.24113.2 + 8.0.0-beta.24165.4 + 8.0.0-beta.24165.4 + 8.0.0-beta.24165.4 + 8.0.0-beta.24165.4 4.5.0 4.8.6 diff --git a/eng/common/SetupNugetSources.ps1 b/eng/common/SetupNugetSources.ps1 index 6c65e8192..efa2fd72b 100644 --- a/eng/common/SetupNugetSources.ps1 +++ b/eng/common/SetupNugetSources.ps1 @@ -35,7 +35,7 @@ Set-StrictMode -Version 2.0 . $PSScriptRoot\tools.ps1 # Add source entry to PackageSources -function AddPackageSource($sources, $SourceName, $SourceEndPoint, $creds, $Username, $Password) { +function AddPackageSource($sources, $SourceName, $SourceEndPoint, $creds, $Username, $pwd) { $packageSource = $sources.SelectSingleNode("add[@key='$SourceName']") if ($packageSource -eq $null) @@ -48,12 +48,11 @@ function AddPackageSource($sources, $SourceName, $SourceEndPoint, $creds, $Usern else { Write-Host "Package source $SourceName already present." } - - AddCredential -Creds $creds -Source $SourceName -Username $Username -Password $Password + AddCredential -Creds $creds -Source $SourceName -Username $Username -pwd $pwd } # Add a credential node for the specified source -function AddCredential($creds, $source, $username, $password) { +function AddCredential($creds, $source, $username, $pwd) { # Looks for credential configuration for the given SourceName. Create it if none is found. $sourceElement = $creds.SelectSingleNode($Source) if ($sourceElement -eq $null) @@ -82,17 +81,18 @@ function AddCredential($creds, $source, $username, $password) { $passwordElement.SetAttribute("key", "ClearTextPassword") $sourceElement.AppendChild($passwordElement) | Out-Null } - $passwordElement.SetAttribute("value", $Password) + + $passwordElement.SetAttribute("value", $pwd) } -function InsertMaestroPrivateFeedCredentials($Sources, $Creds, $Username, $Password) { +function InsertMaestroPrivateFeedCredentials($Sources, $Creds, $Username, $pwd) { $maestroPrivateSources = $Sources.SelectNodes("add[contains(@key,'darc-int')]") Write-Host "Inserting credentials for $($maestroPrivateSources.Count) Maestro's private feeds." ForEach ($PackageSource in $maestroPrivateSources) { Write-Host "`tInserting credential for Maestro's feed:" $PackageSource.Key - AddCredential -Creds $creds -Source $PackageSource.Key -Username $Username -Password $Password + AddCredential -Creds $creds -Source $PackageSource.Key -Username $Username -pwd $pwd } } @@ -144,13 +144,13 @@ if ($disabledSources -ne $null) { $userName = "dn-bot" # Insert credential nodes for Maestro's private feeds -InsertMaestroPrivateFeedCredentials -Sources $sources -Creds $creds -Username $userName -Password $Password +InsertMaestroPrivateFeedCredentials -Sources $sources -Creds $creds -Username $userName -pwd $Password # 3.1 uses a different feed url format so it's handled differently here $dotnet31Source = $sources.SelectSingleNode("add[@key='dotnet3.1']") if ($dotnet31Source -ne $null) { - AddPackageSource -Sources $sources -SourceName "dotnet3.1-internal" -SourceEndPoint "https://pkgs.dev.azure.com/dnceng/_packaging/dotnet3.1-internal/nuget/v2" -Creds $creds -Username $userName -Password $Password - AddPackageSource -Sources $sources -SourceName "dotnet3.1-internal-transport" -SourceEndPoint "https://pkgs.dev.azure.com/dnceng/_packaging/dotnet3.1-internal-transport/nuget/v2" -Creds $creds -Username $userName -Password $Password + AddPackageSource -Sources $sources -SourceName "dotnet3.1-internal" -SourceEndPoint "https://pkgs.dev.azure.com/dnceng/_packaging/dotnet3.1-internal/nuget/v2" -Creds $creds -Username $userName -pwd $Password + AddPackageSource -Sources $sources -SourceName "dotnet3.1-internal-transport" -SourceEndPoint "https://pkgs.dev.azure.com/dnceng/_packaging/dotnet3.1-internal-transport/nuget/v2" -Creds $creds -Username $userName -pwd $Password } $dotnetVersions = @('5','6','7','8') @@ -159,9 +159,9 @@ foreach ($dotnetVersion in $dotnetVersions) { $feedPrefix = "dotnet" + $dotnetVersion; $dotnetSource = $sources.SelectSingleNode("add[@key='$feedPrefix']") if ($dotnetSource -ne $null) { - AddPackageSource -Sources $sources -SourceName "$feedPrefix-internal" -SourceEndPoint "https://pkgs.dev.azure.com/dnceng/internal/_packaging/$feedPrefix-internal/nuget/v2" -Creds $creds -Username $userName -Password $Password - AddPackageSource -Sources $sources -SourceName "$feedPrefix-internal-transport" -SourceEndPoint "https://pkgs.dev.azure.com/dnceng/internal/_packaging/$feedPrefix-internal-transport/nuget/v2" -Creds $creds -Username $userName -Password $Password + AddPackageSource -Sources $sources -SourceName "$feedPrefix-internal" -SourceEndPoint "https://pkgs.dev.azure.com/dnceng/internal/_packaging/$feedPrefix-internal/nuget/v2" -Creds $creds -Username $userName -pwd $Password + AddPackageSource -Sources $sources -SourceName "$feedPrefix-internal-transport" -SourceEndPoint "https://pkgs.dev.azure.com/dnceng/internal/_packaging/$feedPrefix-internal-transport/nuget/v2" -Creds $creds -Username $userName -pwd $Password } } -$doc.Save($filename) +$doc.Save($filename) \ No newline at end of file diff --git a/eng/common/templates-official/job/job.yml b/eng/common/templates-official/job/job.yml new file mode 100644 index 000000000..a2709d105 --- /dev/null +++ b/eng/common/templates-official/job/job.yml @@ -0,0 +1,263 @@ +# Internal resources (telemetry, microbuild) can only be accessed from non-public projects, +# and some (Microbuild) should only be applied to non-PR cases for internal builds. + +parameters: +# Job schema parameters - https://docs.microsoft.com/en-us/azure/devops/pipelines/yaml-schema?view=vsts&tabs=schema#job + cancelTimeoutInMinutes: '' + condition: '' + container: '' + continueOnError: false + dependsOn: '' + displayName: '' + pool: '' + steps: [] + strategy: '' + timeoutInMinutes: '' + variables: [] + workspace: '' + templateContext: '' + +# Job base template specific parameters + # See schema documentation - https://github.com/dotnet/arcade/blob/master/Documentation/AzureDevOps/TemplateSchema.md + artifacts: '' + enableMicrobuild: false + enablePublishBuildArtifacts: false + enablePublishBuildAssets: false + enablePublishTestResults: false + enablePublishUsingPipelines: false + enableBuildRetry: false + disableComponentGovernance: '' + componentGovernanceIgnoreDirectories: '' + mergeTestResults: false + testRunTitle: '' + testResultsFormat: '' + name: '' + preSteps: [] + runAsPublic: false +# Sbom related params + enableSbom: true + PackageVersion: 7.0.0 + BuildDropPath: '$(Build.SourcesDirectory)/artifacts' + +jobs: +- job: ${{ parameters.name }} + + ${{ if ne(parameters.cancelTimeoutInMinutes, '') }}: + cancelTimeoutInMinutes: ${{ parameters.cancelTimeoutInMinutes }} + + ${{ if ne(parameters.condition, '') }}: + condition: ${{ parameters.condition }} + + ${{ if ne(parameters.container, '') }}: + container: ${{ parameters.container }} + + ${{ if ne(parameters.continueOnError, '') }}: + continueOnError: ${{ parameters.continueOnError }} + + ${{ if ne(parameters.dependsOn, '') }}: + dependsOn: ${{ parameters.dependsOn }} + + ${{ if ne(parameters.displayName, '') }}: + displayName: ${{ parameters.displayName }} + + ${{ if ne(parameters.pool, '') }}: + pool: ${{ parameters.pool }} + + ${{ if ne(parameters.strategy, '') }}: + strategy: ${{ parameters.strategy }} + + ${{ if ne(parameters.timeoutInMinutes, '') }}: + timeoutInMinutes: ${{ parameters.timeoutInMinutes }} + + ${{ if ne(parameters.templateContext, '') }}: + templateContext: ${{ parameters.templateContext }} + + variables: + - ${{ if ne(parameters.enableTelemetry, 'false') }}: + - name: DOTNET_CLI_TELEMETRY_PROFILE + value: '$(Build.Repository.Uri)' + - ${{ if eq(parameters.enableRichCodeNavigation, 'true') }}: + - name: EnableRichCodeNavigation + value: 'true' + # Retry signature validation up to three times, waiting 2 seconds between attempts. + # See https://learn.microsoft.com/en-us/nuget/reference/errors-and-warnings/nu3028#retry-untrusted-root-failures + - name: NUGET_EXPERIMENTAL_CHAIN_BUILD_RETRY_POLICY + value: 3,2000 + - ${{ each variable in parameters.variables }}: + # handle name-value variable syntax + # example: + # - name: [key] + # value: [value] + - ${{ if ne(variable.name, '') }}: + - name: ${{ variable.name }} + value: ${{ variable.value }} + + # handle variable groups + - ${{ if ne(variable.group, '') }}: + - group: ${{ variable.group }} + + # handle template variable syntax + # example: + # - template: path/to/template.yml + # parameters: + # [key]: [value] + - ${{ if ne(variable.template, '') }}: + - template: ${{ variable.template }} + ${{ if ne(variable.parameters, '') }}: + parameters: ${{ variable.parameters }} + + # handle key-value variable syntax. + # example: + # - [key]: [value] + - ${{ if and(eq(variable.name, ''), eq(variable.group, ''), eq(variable.template, '')) }}: + - ${{ each pair in variable }}: + - name: ${{ pair.key }} + value: ${{ pair.value }} + + # DotNet-HelixApi-Access provides 'HelixApiAccessToken' for internal builds + - ${{ if and(eq(parameters.enableTelemetry, 'true'), eq(parameters.runAsPublic, 'false'), ne(variables['System.TeamProject'], 'public'), notin(variables['Build.Reason'], 'PullRequest')) }}: + - group: DotNet-HelixApi-Access + + ${{ if ne(parameters.workspace, '') }}: + workspace: ${{ parameters.workspace }} + + steps: + - ${{ if ne(parameters.preSteps, '') }}: + - ${{ each preStep in parameters.preSteps }}: + - ${{ preStep }} + + - ${{ if and(eq(parameters.runAsPublic, 'false'), ne(variables['System.TeamProject'], 'public'), notin(variables['Build.Reason'], 'PullRequest')) }}: + - ${{ if eq(parameters.enableMicrobuild, 'true') }}: + - task: MicroBuildSigningPlugin@3 + displayName: Install MicroBuild plugin + inputs: + signType: $(_SignType) + zipSources: false + feedSource: https://dnceng.pkgs.visualstudio.com/_packaging/MicroBuildToolset/nuget/v3/index.json + env: + TeamName: $(_TeamName) + continueOnError: ${{ parameters.continueOnError }} + condition: and(succeeded(), in(variables['_SignType'], 'real', 'test'), eq(variables['Agent.Os'], 'Windows_NT')) + + - ${{ if and(eq(parameters.runAsPublic, 'false'), eq(variables['System.TeamProject'], 'internal')) }}: + - task: NuGetAuthenticate@1 + + - ${{ if and(ne(parameters.artifacts.download, 'false'), ne(parameters.artifacts.download, '')) }}: + - task: DownloadPipelineArtifact@2 + inputs: + buildType: current + artifactName: ${{ coalesce(parameters.artifacts.download.name, 'Artifacts_$(Agent.OS)_$(_BuildConfig)') }} + targetPath: ${{ coalesce(parameters.artifacts.download.path, 'artifacts') }} + itemPattern: ${{ coalesce(parameters.artifacts.download.pattern, '**') }} + + - ${{ each step in parameters.steps }}: + - ${{ step }} + + - ${{ if eq(parameters.enableRichCodeNavigation, true) }}: + - task: RichCodeNavIndexer@0 + displayName: RichCodeNav Upload + inputs: + languages: ${{ coalesce(parameters.richCodeNavigationLanguage, 'csharp') }} + environment: ${{ coalesce(parameters.richCodeNavigationEnvironment, 'production') }} + richNavLogOutputDirectory: $(Build.SourcesDirectory)/artifacts/bin + uploadRichNavArtifacts: ${{ coalesce(parameters.richCodeNavigationUploadArtifacts, false) }} + continueOnError: true + + - template: /eng/common/templates-official/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 }} + + - ${{ if eq(parameters.enableMicrobuild, 'true') }}: + - ${{ if and(eq(parameters.runAsPublic, 'false'), ne(variables['System.TeamProject'], 'public'), notin(variables['Build.Reason'], 'PullRequest')) }}: + - task: MicroBuildCleanup@1 + displayName: Execute Microbuild cleanup tasks + condition: and(always(), in(variables['_SignType'], 'real', 'test'), eq(variables['Agent.Os'], 'Windows_NT')) + continueOnError: ${{ parameters.continueOnError }} + env: + TeamName: $(_TeamName) + + - ${{ if ne(parameters.artifacts.publish, '') }}: + - ${{ if and(ne(parameters.artifacts.publish.artifacts, 'false'), ne(parameters.artifacts.publish.artifacts, '')) }}: + - task: CopyFiles@2 + displayName: Gather binaries for publish to artifacts + inputs: + SourceFolder: 'artifacts/bin' + Contents: '**' + TargetFolder: '$(Build.ArtifactStagingDirectory)/artifacts/bin' + - task: CopyFiles@2 + displayName: Gather packages for publish to artifacts + inputs: + SourceFolder: 'artifacts/packages' + Contents: '**' + TargetFolder: '$(Build.ArtifactStagingDirectory)/artifacts/packages' + - task: 1ES.PublishBuildArtifacts@1 + displayName: Publish pipeline artifacts + inputs: + PathtoPublish: '$(Build.ArtifactStagingDirectory)/artifacts' + PublishLocation: Container + ArtifactName: ${{ coalesce(parameters.artifacts.publish.artifacts.name , 'Artifacts_$(Agent.Os)_$(_BuildConfig)') }} + continueOnError: true + condition: always() + - ${{ if and(ne(parameters.artifacts.publish.logs, 'false'), ne(parameters.artifacts.publish.logs, '')) }}: + - task: 1ES.PublishPipelineArtifact@1 + inputs: + targetPath: 'artifacts/log' + artifactName: ${{ coalesce(parameters.artifacts.publish.logs.name, 'Logs_Build_$(Agent.Os)_$(_BuildConfig)') }} + displayName: 'Publish logs' + continueOnError: true + condition: always() + + - ${{ if ne(parameters.enablePublishBuildArtifacts, 'false') }}: + - task: 1ES.PublishBuildArtifacts@1 + displayName: Publish Logs + inputs: + PathtoPublish: '$(Build.SourcesDirectory)/artifacts/log/$(_BuildConfig)' + PublishLocation: Container + ArtifactName: ${{ coalesce(parameters.enablePublishBuildArtifacts.artifactName, '$(Agent.Os)_$(Agent.JobName)' ) }} + continueOnError: true + condition: always() + + - ${{ if or(and(eq(parameters.enablePublishTestResults, 'true'), eq(parameters.testResultsFormat, '')), eq(parameters.testResultsFormat, 'xunit')) }}: + - task: PublishTestResults@2 + displayName: Publish XUnit Test Results + inputs: + testResultsFormat: 'xUnit' + testResultsFiles: '*.xml' + searchFolder: '$(Build.SourcesDirectory)/artifacts/TestResults/$(_BuildConfig)' + testRunTitle: ${{ coalesce(parameters.testRunTitle, parameters.name, '$(System.JobName)') }}-xunit + mergeTestResults: ${{ parameters.mergeTestResults }} + continueOnError: true + condition: always() + - ${{ if or(and(eq(parameters.enablePublishTestResults, 'true'), eq(parameters.testResultsFormat, '')), eq(parameters.testResultsFormat, 'vstest')) }}: + - task: PublishTestResults@2 + displayName: Publish TRX Test Results + inputs: + testResultsFormat: 'VSTest' + testResultsFiles: '*.trx' + searchFolder: '$(Build.SourcesDirectory)/artifacts/TestResults/$(_BuildConfig)' + testRunTitle: ${{ coalesce(parameters.testRunTitle, parameters.name, '$(System.JobName)') }}-trx + mergeTestResults: ${{ parameters.mergeTestResults }} + continueOnError: true + condition: always() + + - ${{ if and(eq(parameters.runAsPublic, 'false'), ne(variables['System.TeamProject'], 'public'), notin(variables['Build.Reason'], 'PullRequest'), eq(parameters.enableSbom, 'true')) }}: + - template: /eng/common/templates-official/steps/generate-sbom.yml + parameters: + PackageVersion: ${{ parameters.packageVersion}} + BuildDropPath: ${{ parameters.buildDropPath }} + IgnoreDirectories: ${{ parameters.componentGovernanceIgnoreDirectories }} + + - ${{ if eq(parameters.enableBuildRetry, 'true') }}: + - task: 1ES.PublishPipelineArtifact@1 + inputs: + targetPath: '$(Build.SourcesDirectory)\eng\common\BuildConfiguration' + artifactName: 'BuildConfiguration' + displayName: 'Publish build retry configuration' + continueOnError: true \ No newline at end of file diff --git a/eng/common/templates-official/job/onelocbuild.yml b/eng/common/templates-official/job/onelocbuild.yml new file mode 100644 index 000000000..ba9ba4930 --- /dev/null +++ b/eng/common/templates-official/job/onelocbuild.yml @@ -0,0 +1,112 @@ +parameters: + # Optional: dependencies of the job + dependsOn: '' + + # Optional: A defined YAML pool - https://docs.microsoft.com/en-us/azure/devops/pipelines/yaml-schema?view=vsts&tabs=schema#pool + pool: '' + + CeapexPat: $(dn-bot-ceapex-package-r) # PAT for the loc AzDO instance https://dev.azure.com/ceapex + GithubPat: $(BotAccount-dotnet-bot-repo-PAT) + + SourcesDirectory: $(Build.SourcesDirectory) + CreatePr: true + AutoCompletePr: false + ReusePr: true + UseLfLineEndings: true + UseCheckedInLocProjectJson: false + SkipLocProjectJsonGeneration: false + LanguageSet: VS_Main_Languages + LclSource: lclFilesInRepo + LclPackageId: '' + RepoType: gitHub + GitHubOrg: dotnet + MirrorRepo: '' + MirrorBranch: main + condition: '' + JobNameSuffix: '' + +jobs: +- job: OneLocBuild${{ parameters.JobNameSuffix }} + + dependsOn: ${{ parameters.dependsOn }} + + displayName: OneLocBuild${{ parameters.JobNameSuffix }} + + variables: + - group: OneLocBuildVariables # Contains the CeapexPat and GithubPat + - name: _GenerateLocProjectArguments + value: -SourcesDirectory ${{ parameters.SourcesDirectory }} + -LanguageSet "${{ parameters.LanguageSet }}" + -CreateNeutralXlfs + - ${{ if eq(parameters.UseCheckedInLocProjectJson, 'true') }}: + - name: _GenerateLocProjectArguments + value: ${{ variables._GenerateLocProjectArguments }} -UseCheckedInLocProjectJson + - template: /eng/common/templates-official/variables/pool-providers.yml + + ${{ if ne(parameters.pool, '') }}: + pool: ${{ parameters.pool }} + ${{ if eq(parameters.pool, '') }}: + pool: + # We don't use the collection uri here because it might vary (.visualstudio.com vs. dev.azure.com) + ${{ if eq(variables['System.TeamProject'], 'DevDiv') }}: + name: AzurePipelines-EO + image: 1ESPT-Windows2022 + demands: Cmd + os: windows + # If it's not devdiv, it's dnceng + ${{ if ne(variables['System.TeamProject'], 'DevDiv') }}: + name: $(DncEngInternalBuildPool) + image: 1es-windows-2022-pt + os: windows + + steps: + - ${{ if ne(parameters.SkipLocProjectJsonGeneration, 'true') }}: + - task: Powershell@2 + inputs: + filePath: $(Build.SourcesDirectory)/eng/common/generate-locproject.ps1 + arguments: $(_GenerateLocProjectArguments) + displayName: Generate LocProject.json + condition: ${{ parameters.condition }} + + - task: OneLocBuild@2 + displayName: OneLocBuild + env: + SYSTEM_ACCESSTOKEN: $(System.AccessToken) + inputs: + locProj: eng/Localize/LocProject.json + outDir: $(Build.ArtifactStagingDirectory) + lclSource: ${{ parameters.LclSource }} + lclPackageId: ${{ parameters.LclPackageId }} + isCreatePrSelected: ${{ parameters.CreatePr }} + isAutoCompletePrSelected: ${{ parameters.AutoCompletePr }} + ${{ if eq(parameters.CreatePr, true) }}: + isUseLfLineEndingsSelected: ${{ parameters.UseLfLineEndings }} + ${{ if eq(parameters.RepoType, 'gitHub') }}: + isShouldReusePrSelected: ${{ parameters.ReusePr }} + packageSourceAuth: patAuth + patVariable: ${{ parameters.CeapexPat }} + ${{ if eq(parameters.RepoType, 'gitHub') }}: + repoType: ${{ parameters.RepoType }} + gitHubPatVariable: "${{ parameters.GithubPat }}" + ${{ if ne(parameters.MirrorRepo, '') }}: + isMirrorRepoSelected: true + gitHubOrganization: ${{ parameters.GitHubOrg }} + mirrorRepo: ${{ parameters.MirrorRepo }} + mirrorBranch: ${{ parameters.MirrorBranch }} + condition: ${{ parameters.condition }} + + - task: 1ES.PublishBuildArtifacts@1 + displayName: Publish Localization Files + inputs: + PathtoPublish: '$(Build.ArtifactStagingDirectory)/loc' + PublishLocation: Container + ArtifactName: Loc + condition: ${{ parameters.condition }} + + - task: 1ES.PublishBuildArtifacts@1 + displayName: Publish LocProject.json + inputs: + PathtoPublish: '$(Build.SourcesDirectory)/eng/Localize/' + PublishLocation: Container + ArtifactName: Loc + condition: ${{ parameters.condition }} \ No newline at end of file diff --git a/eng/common/templates-official/job/publish-build-assets.yml b/eng/common/templates-official/job/publish-build-assets.yml new file mode 100644 index 000000000..53138622f --- /dev/null +++ b/eng/common/templates-official/job/publish-build-assets.yml @@ -0,0 +1,155 @@ +parameters: + configuration: 'Debug' + + # Optional: condition for the job to run + condition: '' + + # Optional: 'true' if future jobs should run even if this job fails + continueOnError: false + + # Optional: dependencies of the job + dependsOn: '' + + # Optional: Include PublishBuildArtifacts task + enablePublishBuildArtifacts: false + + # Optional: A defined YAML pool - https://docs.microsoft.com/en-us/azure/devops/pipelines/yaml-schema?view=vsts&tabs=schema#pool + pool: {} + + # Optional: should run as a public build even in the internal project + # if 'true', the build won't run any of the internal only steps, even if it is running in non-public projects. + runAsPublic: false + + # Optional: whether the build's artifacts will be published using release pipelines or direct feed publishing + publishUsingPipelines: false + + # Optional: whether the build's artifacts will be published using release pipelines or direct feed publishing + publishAssetsImmediately: false + + artifactsPublishingAdditionalParameters: '' + + signingValidationAdditionalParameters: '' + +jobs: +- job: Asset_Registry_Publish + + dependsOn: ${{ parameters.dependsOn }} + timeoutInMinutes: 150 + + ${{ if eq(parameters.publishAssetsImmediately, 'true') }}: + displayName: Publish Assets + ${{ else }}: + displayName: Publish to Build Asset Registry + + variables: + - template: /eng/common/templates-official/variables/pool-providers.yml + - ${{ if and(eq(parameters.runAsPublic, 'false'), ne(variables['System.TeamProject'], 'public'), notin(variables['Build.Reason'], 'PullRequest')) }}: + - group: Publish-Build-Assets + - group: AzureDevOps-Artifact-Feeds-Pats + - name: runCodesignValidationInjection + value: false + - ${{ if eq(parameters.publishAssetsImmediately, 'true') }}: + - template: /eng/common/templates-official/post-build/common-variables.yml + + pool: + # We don't use the collection uri here because it might vary (.visualstudio.com vs. dev.azure.com) + ${{ if eq(variables['System.TeamProject'], 'DevDiv') }}: + name: AzurePipelines-EO + image: 1ESPT-Windows2022 + demands: Cmd + os: windows + # If it's not devdiv, it's dnceng + ${{ if ne(variables['System.TeamProject'], 'DevDiv') }}: + name: $(DncEngInternalBuildPool) + image: 1es-windows-2022-pt + os: windows + steps: + - ${{ if and(eq(parameters.runAsPublic, 'false'), ne(variables['System.TeamProject'], 'public'), notin(variables['Build.Reason'], 'PullRequest')) }}: + - task: DownloadBuildArtifacts@0 + displayName: Download artifact + inputs: + artifactName: AssetManifests + downloadPath: '$(Build.StagingDirectory)/Download' + checkDownloadedFiles: true + condition: ${{ parameters.condition }} + continueOnError: ${{ parameters.continueOnError }} + + - task: NuGetAuthenticate@1 + + - task: PowerShell@2 + displayName: Publish Build Assets + inputs: + filePath: eng\common\sdk-task.ps1 + arguments: -task PublishBuildAssets -restore -msbuildEngine dotnet + /p:ManifestsPath='$(Build.StagingDirectory)/Download/AssetManifests' + /p:BuildAssetRegistryToken=$(MaestroAccessToken) + /p:MaestroApiEndpoint=https://maestro-prod.westus2.cloudapp.azure.com + /p:PublishUsingPipelines=${{ parameters.publishUsingPipelines }} + /p:OfficialBuildId=$(Build.BuildNumber) + condition: ${{ parameters.condition }} + continueOnError: ${{ parameters.continueOnError }} + + - task: powershell@2 + displayName: Create ReleaseConfigs Artifact + inputs: + targetType: inline + script: | + New-Item -Path "$(Build.StagingDirectory)/ReleaseConfigs" -ItemType Directory -Force + $filePath = "$(Build.StagingDirectory)/ReleaseConfigs/ReleaseConfigs.txt" + Add-Content -Path $filePath -Value $(BARBuildId) + Add-Content -Path $filePath -Value "$(DefaultChannels)" + Add-Content -Path $filePath -Value $(IsStableBuild) + + - task: 1ES.PublishBuildArtifacts@1 + displayName: Publish ReleaseConfigs Artifact + inputs: + PathtoPublish: '$(Build.StagingDirectory)/ReleaseConfigs' + PublishLocation: Container + ArtifactName: ReleaseConfigs + + - task: powershell@2 + displayName: Check if SymbolPublishingExclusionsFile.txt exists + inputs: + targetType: inline + script: | + $symbolExclusionfile = "$(Build.SourcesDirectory)/eng/SymbolPublishingExclusionsFile.txt" + if(Test-Path -Path $symbolExclusionfile) + { + Write-Host "SymbolExclusionFile exists" + Write-Host "##vso[task.setvariable variable=SymbolExclusionFile]true" + } + else{ + Write-Host "Symbols Exclusion file does not exists" + Write-Host "##vso[task.setvariable variable=SymbolExclusionFile]false" + } + + - task: 1ES.PublishBuildArtifacts@1 + displayName: Publish SymbolPublishingExclusionsFile Artifact + condition: eq(variables['SymbolExclusionFile'], 'true') + inputs: + PathtoPublish: '$(Build.SourcesDirectory)/eng/SymbolPublishingExclusionsFile.txt' + PublishLocation: Container + ArtifactName: ReleaseConfigs + + - ${{ if eq(parameters.publishAssetsImmediately, 'true') }}: + - template: /eng/common/templates-official/post-build/setup-maestro-vars.yml + parameters: + BARBuildId: ${{ parameters.BARBuildId }} + PromoteToChannelIds: ${{ parameters.PromoteToChannelIds }} + + - task: PowerShell@2 + displayName: Publish Using Darc + inputs: + filePath: $(Build.SourcesDirectory)/eng/common/post-build/publish-using-darc.ps1 + arguments: -BuildId $(BARBuildId) + -PublishingInfraVersion 3 + -AzdoToken '$(publishing-dnceng-devdiv-code-r-build-re)' + -MaestroToken '$(MaestroApiAccessToken)' + -WaitPublishingFinish true + -ArtifactsPublishingAdditionalParameters '${{ parameters.artifactsPublishingAdditionalParameters }}' + -SymbolPublishingAdditionalParameters '${{ parameters.symbolPublishingAdditionalParameters }}' + + - ${{ if eq(parameters.enablePublishBuildArtifacts, 'true') }}: + - template: /eng/common/templates-official/steps/publish-logs.yml + parameters: + JobLabel: 'Publish_Artifacts_Logs' diff --git a/eng/common/templates-official/job/source-build.yml b/eng/common/templates-official/job/source-build.yml new file mode 100644 index 000000000..8aba3b44b --- /dev/null +++ b/eng/common/templates-official/job/source-build.yml @@ -0,0 +1,67 @@ +parameters: + # This template adds arcade-powered source-build to CI. The template produces a server job with a + # default ID 'Source_Build_Complete' to put in a dependency list if necessary. + + # Specifies the prefix for source-build jobs added to pipeline. Use this if disambiguation needed. + jobNamePrefix: 'Source_Build' + + # Defines the platform on which to run the job. By default, a linux-x64 machine, suitable for + # managed-only repositories. This is an object with these properties: + # + # name: '' + # The name of the job. This is included in the job ID. + # targetRID: '' + # The name of the target RID to use, instead of the one auto-detected by Arcade. + # nonPortable: false + # Enables non-portable mode. This means a more specific RID (e.g. fedora.32-x64 rather than + # linux-x64), and compiling against distro-provided packages rather than portable ones. + # skipPublishValidation: false + # Disables publishing validation. By default, a check is performed to ensure no packages are + # published by source-build. + # container: '' + # A container to use. Runs in docker. + # pool: {} + # A pool to use. Runs directly on an agent. + # buildScript: '' + # Specifies the build script to invoke to perform the build in the repo. The default + # './build.sh' should work for typical Arcade repositories, but this is customizable for + # difficult situations. + # jobProperties: {} + # A list of job properties to inject at the top level, for potential extensibility beyond + # container and pool. + platform: {} + +jobs: +- job: ${{ parameters.jobNamePrefix }}_${{ parameters.platform.name }} + displayName: Source-Build (${{ parameters.platform.name }}) + + ${{ each property in parameters.platform.jobProperties }}: + ${{ property.key }}: ${{ property.value }} + + ${{ if ne(parameters.platform.container, '') }}: + container: ${{ parameters.platform.container }} + + ${{ if eq(parameters.platform.pool, '') }}: + # The default VM host AzDO pool. This should be capable of running Docker containers: almost all + # source-build builds run in Docker, including the default managed platform. + # /eng/common/templates-official/variables/pool-providers.yml can't be used here (some customers declare variables already), so duplicate its logic + 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.1804.Amd64.Open + + ${{ 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-pt + os: linux + + ${{ if ne(parameters.platform.pool, '') }}: + pool: ${{ parameters.platform.pool }} + + workspace: + clean: all + + steps: + - template: /eng/common/templates-official/steps/source-build.yml + parameters: + platform: ${{ parameters.platform }} diff --git a/eng/common/templates-official/job/source-index-stage1.yml b/eng/common/templates-official/job/source-index-stage1.yml new file mode 100644 index 000000000..4b6337391 --- /dev/null +++ b/eng/common/templates-official/job/source-index-stage1.yml @@ -0,0 +1,68 @@ +parameters: + runAsPublic: false + sourceIndexPackageVersion: 1.0.1-20230228.2 + sourceIndexPackageSource: https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet-tools/nuget/v3/index.json + sourceIndexBuildCommand: powershell -NoLogo -NoProfile -ExecutionPolicy Bypass -Command "eng/common/build.ps1 -restore -build -binarylog -ci" + preSteps: [] + binlogPath: artifacts/log/Debug/Build.binlog + condition: '' + dependsOn: '' + pool: '' + +jobs: +- job: SourceIndexStage1 + dependsOn: ${{ parameters.dependsOn }} + condition: ${{ parameters.condition }} + variables: + - name: SourceIndexPackageVersion + value: ${{ parameters.sourceIndexPackageVersion }} + - name: SourceIndexPackageSource + value: ${{ parameters.sourceIndexPackageSource }} + - name: BinlogPath + value: ${{ parameters.binlogPath }} + - ${{ if and(eq(parameters.runAsPublic, 'false'), ne(variables['System.TeamProject'], 'public'), notin(variables['Build.Reason'], 'PullRequest')) }}: + - group: source-dot-net stage1 variables + - template: /eng/common/templates-official/variables/pool-providers.yml + + ${{ if ne(parameters.pool, '') }}: + pool: ${{ parameters.pool }} + ${{ if eq(parameters.pool, '') }}: + pool: + ${{ if eq(variables['System.TeamProject'], 'public') }}: + name: $(DncEngPublicBuildPool) + demands: ImageOverride -equals windows.vs2019.amd64.open + ${{ if eq(variables['System.TeamProject'], 'internal') }}: + name: $(DncEngInternalBuildPool) + image: 1es-windows-2022-pt + os: windows + + steps: + - ${{ each preStep in parameters.preSteps }}: + - ${{ preStep }} + + - task: UseDotNet@2 + displayName: Use .NET Core SDK 6 + inputs: + packageType: sdk + version: 6.0.x + installationPath: $(Agent.TempDirectory)/dotnet + workingDirectory: $(Agent.TempDirectory) + + - script: | + $(Agent.TempDirectory)/dotnet/dotnet tool install BinLogToSln --version $(SourceIndexPackageVersion) --add-source $(SourceIndexPackageSource) --tool-path $(Agent.TempDirectory)/.source-index/tools + $(Agent.TempDirectory)/dotnet/dotnet tool install UploadIndexStage1 --version $(SourceIndexPackageVersion) --add-source $(SourceIndexPackageSource) --tool-path $(Agent.TempDirectory)/.source-index/tools + displayName: Download 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) + + - script: ${{ parameters.sourceIndexBuildCommand }} + displayName: Build Repository + + - script: $(Agent.TempDirectory)/.source-index/tools/BinLogToSln -i $(BinlogPath) -r $(Build.SourcesDirectory) -n $(Build.Repository.Name) -o .source-index/stage1output + displayName: Process Binlog into indexable sln + + - ${{ if and(eq(parameters.runAsPublic, 'false'), ne(variables['System.TeamProject'], 'public'), notin(variables['Build.Reason'], 'PullRequest')) }}: + - script: $(Agent.TempDirectory)/.source-index/tools/UploadIndexStage1 -i .source-index/stage1output -n $(Build.Repository.Name) + displayName: Upload stage1 artifacts to source index + env: + BLOB_CONTAINER_URL: $(source-dot-net-stage1-blob-container-url) diff --git a/eng/common/templates-official/jobs/codeql-build.yml b/eng/common/templates-official/jobs/codeql-build.yml new file mode 100644 index 000000000..b68d3c2f3 --- /dev/null +++ b/eng/common/templates-official/jobs/codeql-build.yml @@ -0,0 +1,31 @@ +parameters: + # See schema documentation in /Documentation/AzureDevOps/TemplateSchema.md + continueOnError: false + # Required: A collection of jobs to run - https://docs.microsoft.com/en-us/azure/devops/pipelines/yaml-schema?view=vsts&tabs=schema#job + jobs: [] + # Optional: if specified, restore and use this version of Guardian instead of the default. + overrideGuardianVersion: '' + +jobs: +- template: /eng/common/templates-official/jobs/jobs.yml + parameters: + enableMicrobuild: false + enablePublishBuildArtifacts: false + enablePublishTestResults: false + enablePublishBuildAssets: false + enablePublishUsingPipelines: false + enableTelemetry: true + + variables: + - group: Publish-Build-Assets + # The Guardian version specified in 'eng/common/sdl/packages.config'. This value must be kept in + # sync with the packages.config file. + - name: DefaultGuardianVersion + value: 0.109.0 + - name: GuardianPackagesConfigFile + value: $(Build.SourcesDirectory)\eng\common\sdl\packages.config + - name: GuardianVersion + value: ${{ coalesce(parameters.overrideGuardianVersion, '$(DefaultGuardianVersion)') }} + + jobs: ${{ parameters.jobs }} + diff --git a/eng/common/templates-official/jobs/jobs.yml b/eng/common/templates-official/jobs/jobs.yml new file mode 100644 index 000000000..857a0f8ba --- /dev/null +++ b/eng/common/templates-official/jobs/jobs.yml @@ -0,0 +1,97 @@ +parameters: + # See schema documentation in /Documentation/AzureDevOps/TemplateSchema.md + continueOnError: false + + # Optional: Include PublishBuildArtifacts task + enablePublishBuildArtifacts: false + + # Optional: Enable publishing using release pipelines + enablePublishUsingPipelines: false + + # Optional: Enable running the source-build jobs to build repo from source + enableSourceBuild: false + + # Optional: Parameters for source-build template. + # See /eng/common/templates-official/jobs/source-build.yml for options + sourceBuildParameters: [] + + graphFileGeneration: + # Optional: Enable generating the graph files at the end of the build + enabled: false + # Optional: Include toolset dependencies in the generated graph files + includeToolset: false + + # Required: A collection of jobs to run - https://docs.microsoft.com/en-us/azure/devops/pipelines/yaml-schema?view=vsts&tabs=schema#job + jobs: [] + + # Optional: Override automatically derived dependsOn value for "publish build assets" job + publishBuildAssetsDependsOn: '' + + # Optional: Publish the assets as soon as the publish to BAR stage is complete, rather doing so in a separate stage. + publishAssetsImmediately: false + + # Optional: If using publishAssetsImmediately and additional parameters are needed, can be used to send along additional parameters (normally sent to post-build.yml) + artifactsPublishingAdditionalParameters: '' + signingValidationAdditionalParameters: '' + + # Optional: should run as a public build even in the internal project + # if 'true', the build won't run any of the internal only steps, even if it is running in non-public projects. + runAsPublic: false + + enableSourceIndex: false + sourceIndexParams: {} + +# Internal resources (telemetry, microbuild) can only be accessed from non-public projects, +# and some (Microbuild) should only be applied to non-PR cases for internal builds. + +jobs: +- ${{ each job in parameters.jobs }}: + - template: ../job/job.yml + parameters: + # pass along parameters + ${{ each parameter in parameters }}: + ${{ if ne(parameter.key, 'jobs') }}: + ${{ parameter.key }}: ${{ parameter.value }} + + # pass along job properties + ${{ each property in job }}: + ${{ if ne(property.key, 'job') }}: + ${{ property.key }}: ${{ property.value }} + + name: ${{ job.job }} + +- ${{ if eq(parameters.enableSourceBuild, true) }}: + - template: /eng/common/templates-official/jobs/source-build.yml + parameters: + allCompletedJobId: Source_Build_Complete + ${{ each parameter in parameters.sourceBuildParameters }}: + ${{ parameter.key }}: ${{ parameter.value }} + +- ${{ if eq(parameters.enableSourceIndex, 'true') }}: + - template: ../job/source-index-stage1.yml + parameters: + runAsPublic: ${{ parameters.runAsPublic }} + ${{ each parameter in parameters.sourceIndexParams }}: + ${{ parameter.key }}: ${{ parameter.value }} + +- ${{ if and(eq(parameters.runAsPublic, 'false'), ne(variables['System.TeamProject'], 'public'), notin(variables['Build.Reason'], 'PullRequest')) }}: + - ${{ if or(eq(parameters.enablePublishBuildAssets, true), eq(parameters.artifacts.publish.manifests, 'true'), ne(parameters.artifacts.publish.manifests, '')) }}: + - template: ../job/publish-build-assets.yml + parameters: + continueOnError: ${{ parameters.continueOnError }} + dependsOn: + - ${{ if ne(parameters.publishBuildAssetsDependsOn, '') }}: + - ${{ each job in parameters.publishBuildAssetsDependsOn }}: + - ${{ job.job }} + - ${{ if eq(parameters.publishBuildAssetsDependsOn, '') }}: + - ${{ each job in parameters.jobs }}: + - ${{ job.job }} + - ${{ if eq(parameters.enableSourceBuild, true) }}: + - Source_Build_Complete + + runAsPublic: ${{ parameters.runAsPublic }} + publishUsingPipelines: ${{ parameters.enablePublishUsingPipelines }} + publishAssetsImmediately: ${{ parameters.publishAssetsImmediately }} + enablePublishBuildArtifacts: ${{ parameters.enablePublishBuildArtifacts }} + artifactsPublishingAdditionalParameters: ${{ parameters.artifactsPublishingAdditionalParameters }} + signingValidationAdditionalParameters: ${{ parameters.signingValidationAdditionalParameters }} diff --git a/eng/common/templates-official/jobs/source-build.yml b/eng/common/templates-official/jobs/source-build.yml new file mode 100644 index 000000000..08e5db9bb --- /dev/null +++ b/eng/common/templates-official/jobs/source-build.yml @@ -0,0 +1,46 @@ +parameters: + # This template adds arcade-powered source-build to CI. A job is created for each platform, as + # well as an optional server job that completes when all platform jobs complete. + + # The name of the "join" job for all source-build platforms. If set to empty string, the job is + # not included. Existing repo pipelines can use this job depend on all source-build jobs + # completing without maintaining a separate list of every single job ID: just depend on this one + # server job. By default, not included. Recommended name if used: 'Source_Build_Complete'. + allCompletedJobId: '' + + # See /eng/common/templates-official/job/source-build.yml + jobNamePrefix: 'Source_Build' + + # This is the default platform provided by Arcade, intended for use by a managed-only repo. + defaultManagedPlatform: + name: 'Managed' + container: 'mcr.microsoft.com/dotnet-buildtools/prereqs:centos-stream8' + + # Defines the platforms on which to run build jobs. One job is created for each platform, and the + # object in this array is sent to the job template as 'platform'. If no platforms are specified, + # one job runs on 'defaultManagedPlatform'. + platforms: [] + +jobs: + +- ${{ if ne(parameters.allCompletedJobId, '') }}: + - job: ${{ parameters.allCompletedJobId }} + displayName: Source-Build Complete + pool: server + dependsOn: + - ${{ each platform in parameters.platforms }}: + - ${{ parameters.jobNamePrefix }}_${{ platform.name }} + - ${{ if eq(length(parameters.platforms), 0) }}: + - ${{ parameters.jobNamePrefix }}_${{ parameters.defaultManagedPlatform.name }} + +- ${{ each platform in parameters.platforms }}: + - template: /eng/common/templates-official/job/source-build.yml + parameters: + jobNamePrefix: ${{ parameters.jobNamePrefix }} + platform: ${{ platform }} + +- ${{ if eq(length(parameters.platforms), 0) }}: + - template: /eng/common/templates-official/job/source-build.yml + parameters: + jobNamePrefix: ${{ parameters.jobNamePrefix }} + platform: ${{ parameters.defaultManagedPlatform }} diff --git a/eng/common/templates-official/post-build/common-variables.yml b/eng/common/templates-official/post-build/common-variables.yml new file mode 100644 index 000000000..c24193acf --- /dev/null +++ b/eng/common/templates-official/post-build/common-variables.yml @@ -0,0 +1,22 @@ +variables: + - group: Publish-Build-Assets + + # Whether the build is internal or not + - name: IsInternalBuild + value: ${{ and(ne(variables['System.TeamProject'], 'public'), contains(variables['Build.SourceBranch'], 'internal')) }} + + # Default Maestro++ API Endpoint and API Version + - name: MaestroApiEndPoint + value: "https://maestro-prod.westus2.cloudapp.azure.com" + - name: MaestroApiAccessToken + value: $(MaestroAccessToken) + - name: MaestroApiVersion + value: "2020-02-20" + + - name: SourceLinkCLIVersion + value: 3.0.0 + - name: SymbolToolVersion + value: 1.0.1 + + - name: runCodesignValidationInjection + value: false diff --git a/eng/common/templates-official/post-build/post-build.yml b/eng/common/templates-official/post-build/post-build.yml new file mode 100644 index 000000000..5c98fe1c0 --- /dev/null +++ b/eng/common/templates-official/post-build/post-build.yml @@ -0,0 +1,285 @@ +parameters: + # Which publishing infra should be used. THIS SHOULD MATCH THE VERSION ON THE BUILD MANIFEST. + # Publishing V1 is no longer supported + # Publishing V2 is no longer supported + # Publishing V3 is the default + - name: publishingInfraVersion + displayName: Which version of publishing should be used to promote the build definition? + type: number + default: 3 + values: + - 3 + + - name: BARBuildId + displayName: BAR Build Id + type: number + default: 0 + + - name: PromoteToChannelIds + displayName: Channel to promote BARBuildId to + type: string + default: '' + + - name: enableSourceLinkValidation + displayName: Enable SourceLink validation + type: boolean + default: false + + - name: enableSigningValidation + displayName: Enable signing validation + type: boolean + default: true + + - name: enableSymbolValidation + displayName: Enable symbol validation + type: boolean + default: false + + - name: enableNugetValidation + displayName: Enable NuGet validation + type: boolean + default: true + + - name: publishInstallersAndChecksums + displayName: Publish installers and checksums + type: boolean + default: true + + - name: SDLValidationParameters + type: object + default: + enable: false + publishGdn: false + continueOnError: false + params: '' + artifactNames: '' + downloadArtifacts: true + + # These parameters let the user customize the call to sdk-task.ps1 for publishing + # symbols & general artifacts as well as for signing validation + - name: symbolPublishingAdditionalParameters + displayName: Symbol publishing additional parameters + type: string + default: '' + + - name: artifactsPublishingAdditionalParameters + displayName: Artifact publishing additional parameters + type: string + default: '' + + - name: signingValidationAdditionalParameters + displayName: Signing validation additional parameters + type: string + default: '' + + # Which stages should finish execution before post-build stages start + - name: validateDependsOn + type: object + default: + - build + + - name: publishDependsOn + type: object + default: + - Validate + + # Optional: Call asset publishing rather than running in a separate stage + - name: publishAssetsImmediately + type: boolean + default: false + +stages: +- ${{ if or(eq( parameters.enableNugetValidation, 'true'), eq(parameters.enableSigningValidation, 'true'), eq(parameters.enableSourceLinkValidation, 'true'), eq(parameters.SDLValidationParameters.enable, 'true')) }}: + - stage: Validate + dependsOn: ${{ parameters.validateDependsOn }} + displayName: Validate Build Assets + variables: + - template: common-variables.yml + - template: /eng/common/templates-official/variables/pool-providers.yml + jobs: + - job: + displayName: NuGet Validation + condition: and(succeededOrFailed(), eq( ${{ parameters.enableNugetValidation }}, 'true')) + pool: + # We don't use the collection uri here because it might vary (.visualstudio.com vs. dev.azure.com) + ${{ if eq(variables['System.TeamProject'], 'DevDiv') }}: + name: AzurePipelines-EO + image: 1ESPT-Windows2022 + demands: Cmd + os: windows + # If it's not devdiv, it's dnceng + ${{ else }}: + name: $(DncEngInternalBuildPool) + image: 1es-windows-2022-pt + os: windows + + steps: + - template: setup-maestro-vars.yml + parameters: + BARBuildId: ${{ parameters.BARBuildId }} + PromoteToChannelIds: ${{ parameters.PromoteToChannelIds }} + + - task: DownloadBuildArtifacts@0 + displayName: Download Package Artifacts + inputs: + buildType: specific + buildVersionToDownload: specific + project: $(AzDOProjectName) + pipeline: $(AzDOPipelineId) + buildId: $(AzDOBuildId) + artifactName: PackageArtifacts + checkDownloadedFiles: true + + - task: PowerShell@2 + displayName: Validate + inputs: + filePath: $(Build.SourcesDirectory)/eng/common/post-build/nuget-validation.ps1 + arguments: -PackagesPath $(Build.ArtifactStagingDirectory)/PackageArtifacts/ + -ToolDestinationPath $(Agent.BuildDirectory)/Extract/ + + - job: + displayName: Signing Validation + condition: and( eq( ${{ parameters.enableSigningValidation }}, 'true'), ne( variables['PostBuildSign'], 'true')) + pool: + # We don't use the collection uri here because it might vary (.visualstudio.com vs. dev.azure.com) + ${{ if eq(variables['System.TeamProject'], 'DevDiv') }}: + name: AzurePipelines-EO + image: 1ESPT-Windows2022 + demands: Cmd + os: windows + # If it's not devdiv, it's dnceng + ${{ else }}: + name: $(DncEngInternalBuildPool) + image: 1es-windows-2022-pt + os: windows + steps: + - template: setup-maestro-vars.yml + parameters: + BARBuildId: ${{ parameters.BARBuildId }} + PromoteToChannelIds: ${{ parameters.PromoteToChannelIds }} + + - task: DownloadBuildArtifacts@0 + displayName: Download Package Artifacts + inputs: + buildType: specific + buildVersionToDownload: specific + project: $(AzDOProjectName) + pipeline: $(AzDOPipelineId) + buildId: $(AzDOBuildId) + artifactName: PackageArtifacts + checkDownloadedFiles: true + itemPattern: | + ** + !**/Microsoft.SourceBuild.Intermediate.*.nupkg + + # This is necessary whenever we want to publish/restore to an AzDO private feed + # Since sdk-task.ps1 tries to restore packages we need to do this authentication here + # otherwise it'll complain about accessing a private feed. + - task: NuGetAuthenticate@1 + displayName: 'Authenticate to AzDO Feeds' + + # Signing validation will optionally work with the buildmanifest file which is downloaded from + # Azure DevOps above. + - task: PowerShell@2 + displayName: Validate + inputs: + filePath: eng\common\sdk-task.ps1 + arguments: -task SigningValidation -restore -msbuildEngine vs + /p:PackageBasePath='$(Build.ArtifactStagingDirectory)/PackageArtifacts' + /p:SignCheckExclusionsFile='$(Build.SourcesDirectory)/eng/SignCheckExclusionsFile.txt' + ${{ parameters.signingValidationAdditionalParameters }} + + - template: ../steps/publish-logs.yml + parameters: + StageLabel: 'Validation' + JobLabel: 'Signing' + BinlogToolVersion: $(BinlogToolVersion) + + - job: + displayName: SourceLink Validation + condition: eq( ${{ parameters.enableSourceLinkValidation }}, 'true') + pool: + # We don't use the collection uri here because it might vary (.visualstudio.com vs. dev.azure.com) + ${{ if eq(variables['System.TeamProject'], 'DevDiv') }}: + name: AzurePipelines-EO + image: 1ESPT-Windows2022 + demands: Cmd + os: windows + # If it's not devdiv, it's dnceng + ${{ else }}: + name: $(DncEngInternalBuildPool) + image: 1es-windows-2022-pt + os: windows + steps: + - template: setup-maestro-vars.yml + parameters: + BARBuildId: ${{ parameters.BARBuildId }} + PromoteToChannelIds: ${{ parameters.PromoteToChannelIds }} + + - task: DownloadBuildArtifacts@0 + displayName: Download Blob Artifacts + inputs: + buildType: specific + buildVersionToDownload: specific + project: $(AzDOProjectName) + pipeline: $(AzDOPipelineId) + buildId: $(AzDOBuildId) + artifactName: BlobArtifacts + checkDownloadedFiles: true + + - task: PowerShell@2 + displayName: Validate + inputs: + filePath: $(Build.SourcesDirectory)/eng/common/post-build/sourcelink-validation.ps1 + arguments: -InputPath $(Build.ArtifactStagingDirectory)/BlobArtifacts/ + -ExtractPath $(Agent.BuildDirectory)/Extract/ + -GHRepoName $(Build.Repository.Name) + -GHCommit $(Build.SourceVersion) + -SourcelinkCliVersion $(SourceLinkCLIVersion) + continueOnError: true + +- ${{ if ne(parameters.publishAssetsImmediately, 'true') }}: + - stage: publish_using_darc + ${{ if or(eq(parameters.enableNugetValidation, 'true'), eq(parameters.enableSigningValidation, 'true'), eq(parameters.enableSourceLinkValidation, 'true'), eq(parameters.SDLValidationParameters.enable, 'true')) }}: + dependsOn: ${{ parameters.publishDependsOn }} + ${{ else }}: + dependsOn: ${{ parameters.validateDependsOn }} + displayName: Publish using Darc + variables: + - template: common-variables.yml + - template: /eng/common/templates-official/variables/pool-providers.yml + jobs: + - job: + displayName: Publish Using Darc + timeoutInMinutes: 120 + pool: + # We don't use the collection uri here because it might vary (.visualstudio.com vs. dev.azure.com) + ${{ if eq(variables['System.TeamProject'], 'DevDiv') }}: + name: AzurePipelines-EO + image: 1ESPT-Windows2022 + demands: Cmd + os: windows + # If it's not devdiv, it's dnceng + ${{ else }}: + name: $(DncEngInternalBuildPool) + image: 1es-windows-2022-pt + os: windows + steps: + - template: setup-maestro-vars.yml + parameters: + BARBuildId: ${{ parameters.BARBuildId }} + PromoteToChannelIds: ${{ parameters.PromoteToChannelIds }} + + - task: NuGetAuthenticate@1 + + - task: PowerShell@2 + displayName: Publish Using Darc + inputs: + filePath: $(Build.SourcesDirectory)/eng/common/post-build/publish-using-darc.ps1 + arguments: -BuildId $(BARBuildId) + -PublishingInfraVersion ${{ parameters.publishingInfraVersion }} + -AzdoToken '$(publishing-dnceng-devdiv-code-r-build-re)' + -MaestroToken '$(MaestroApiAccessToken)' + -WaitPublishingFinish true + -ArtifactsPublishingAdditionalParameters '${{ parameters.artifactsPublishingAdditionalParameters }}' + -SymbolPublishingAdditionalParameters '${{ parameters.symbolPublishingAdditionalParameters }}' diff --git a/eng/common/templates-official/post-build/setup-maestro-vars.yml b/eng/common/templates-official/post-build/setup-maestro-vars.yml new file mode 100644 index 000000000..0c87f149a --- /dev/null +++ b/eng/common/templates-official/post-build/setup-maestro-vars.yml @@ -0,0 +1,70 @@ +parameters: + BARBuildId: '' + PromoteToChannelIds: '' + +steps: + - ${{ if eq(coalesce(parameters.PromoteToChannelIds, 0), 0) }}: + - task: DownloadBuildArtifacts@0 + displayName: Download Release Configs + inputs: + buildType: current + artifactName: ReleaseConfigs + checkDownloadedFiles: true + + - task: PowerShell@2 + name: setReleaseVars + displayName: Set Release Configs Vars + inputs: + targetType: inline + pwsh: true + script: | + try { + if (!$Env:PromoteToMaestroChannels -or $Env:PromoteToMaestroChannels.Trim() -eq '') { + $Content = Get-Content $(Build.StagingDirectory)/ReleaseConfigs/ReleaseConfigs.txt + + $BarId = $Content | Select -Index 0 + $Channels = $Content | Select -Index 1 + $IsStableBuild = $Content | Select -Index 2 + + $AzureDevOpsProject = $Env:System_TeamProject + $AzureDevOpsBuildDefinitionId = $Env:System_DefinitionId + $AzureDevOpsBuildId = $Env:Build_BuildId + } + else { + $buildApiEndpoint = "${Env:MaestroApiEndPoint}/api/builds/${Env:BARBuildId}?api-version=${Env:MaestroApiVersion}" + + $apiHeaders = New-Object 'System.Collections.Generic.Dictionary[[String],[String]]' + $apiHeaders.Add('Accept', 'application/json') + $apiHeaders.Add('Authorization',"Bearer ${Env:MAESTRO_API_TOKEN}") + + $buildInfo = try { Invoke-WebRequest -Method Get -Uri $buildApiEndpoint -Headers $apiHeaders | ConvertFrom-Json } catch { Write-Host "Error: $_" } + + $BarId = $Env:BARBuildId + $Channels = $Env:PromoteToMaestroChannels -split "," + $Channels = $Channels -join "][" + $Channels = "[$Channels]" + + $IsStableBuild = $buildInfo.stable + $AzureDevOpsProject = $buildInfo.azureDevOpsProject + $AzureDevOpsBuildDefinitionId = $buildInfo.azureDevOpsBuildDefinitionId + $AzureDevOpsBuildId = $buildInfo.azureDevOpsBuildId + } + + Write-Host "##vso[task.setvariable variable=BARBuildId]$BarId" + Write-Host "##vso[task.setvariable variable=TargetChannels]$Channels" + Write-Host "##vso[task.setvariable variable=IsStableBuild]$IsStableBuild" + + Write-Host "##vso[task.setvariable variable=AzDOProjectName]$AzureDevOpsProject" + Write-Host "##vso[task.setvariable variable=AzDOPipelineId]$AzureDevOpsBuildDefinitionId" + Write-Host "##vso[task.setvariable variable=AzDOBuildId]$AzureDevOpsBuildId" + } + catch { + Write-Host $_ + Write-Host $_.Exception + Write-Host $_.ScriptStackTrace + exit 1 + } + env: + MAESTRO_API_TOKEN: $(MaestroApiAccessToken) + BARBuildId: ${{ parameters.BARBuildId }} + PromoteToMaestroChannels: ${{ parameters.PromoteToChannelIds }} diff --git a/eng/common/templates-official/post-build/trigger-subscription.yml b/eng/common/templates-official/post-build/trigger-subscription.yml new file mode 100644 index 000000000..da669030d --- /dev/null +++ b/eng/common/templates-official/post-build/trigger-subscription.yml @@ -0,0 +1,13 @@ +parameters: + ChannelId: 0 + +steps: +- task: PowerShell@2 + displayName: Triggering subscriptions + inputs: + filePath: $(Build.SourcesDirectory)/eng/common/post-build/trigger-subscriptions.ps1 + arguments: -SourceRepo $(Build.Repository.Uri) + -ChannelId ${{ parameters.ChannelId }} + -MaestroApiAccessToken $(MaestroAccessToken) + -MaestroApiEndPoint $(MaestroApiEndPoint) + -MaestroApiVersion $(MaestroApiVersion) diff --git a/eng/common/templates-official/steps/add-build-to-channel.yml b/eng/common/templates-official/steps/add-build-to-channel.yml new file mode 100644 index 000000000..f67a210d6 --- /dev/null +++ b/eng/common/templates-official/steps/add-build-to-channel.yml @@ -0,0 +1,13 @@ +parameters: + ChannelId: 0 + +steps: +- task: PowerShell@2 + displayName: Add Build to Channel + inputs: + filePath: $(Build.SourcesDirectory)/eng/common/post-build/add-build-to-channel.ps1 + arguments: -BuildId $(BARBuildId) + -ChannelId ${{ parameters.ChannelId }} + -MaestroApiAccessToken $(MaestroApiAccessToken) + -MaestroApiEndPoint $(MaestroApiEndPoint) + -MaestroApiVersion $(MaestroApiVersion) diff --git a/eng/common/templates-official/steps/build-reason.yml b/eng/common/templates-official/steps/build-reason.yml new file mode 100644 index 000000000..eba58109b --- /dev/null +++ b/eng/common/templates-official/steps/build-reason.yml @@ -0,0 +1,12 @@ +# build-reason.yml +# Description: runs steps if build.reason condition is valid. conditions is a string of valid build reasons +# to include steps (',' separated). +parameters: + conditions: '' + steps: [] + +steps: + - ${{ if and( not(startsWith(parameters.conditions, 'not')), contains(parameters.conditions, variables['build.reason'])) }}: + - ${{ parameters.steps }} + - ${{ if and( startsWith(parameters.conditions, 'not'), not(contains(parameters.conditions, variables['build.reason']))) }}: + - ${{ parameters.steps }} 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 000000000..0ecec47b0 --- /dev/null +++ b/eng/common/templates-official/steps/component-governance.yml @@ -0,0 +1,13 @@ +parameters: + disableComponentGovernance: false + componentGovernanceIgnoreDirectories: '' + +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 + inputs: + ignoreDirectories: ${{ parameters.componentGovernanceIgnoreDirectories }} \ No newline at end of file diff --git a/eng/common/templates-official/steps/execute-codeql.yml b/eng/common/templates-official/steps/execute-codeql.yml new file mode 100644 index 000000000..9b4a5ffa3 --- /dev/null +++ b/eng/common/templates-official/steps/execute-codeql.yml @@ -0,0 +1,32 @@ +parameters: + # Language that should be analyzed. Defaults to csharp + language: csharp + # Build Commands + buildCommands: '' + overrideParameters: '' # Optional: to override values for parameters. + additionalParameters: '' # Optional: parameters that need user specific values eg: '-SourceToolsList @("abc","def") -ArtifactToolsList @("ghi","jkl")' + # Optional: if specified, restore and use this version of Guardian instead of the default. + overrideGuardianVersion: '' + # Optional: if true, publish the '.gdn' folder as a pipeline artifact. This can help with in-depth + # diagnosis of problems with specific tool configurations. + publishGuardianDirectoryToPipeline: false + # The script to run to execute all SDL tools. Use this if you want to use a script to define SDL + # parameters rather than relying on YAML. It may be better to use a local script, because you can + # reproduce results locally without piecing together a command based on the YAML. + executeAllSdlToolsScript: 'eng/common/sdl/execute-all-sdl-tools.ps1' + # There is some sort of bug (has been reported) in Azure DevOps where if this parameter is named + # 'continueOnError', the parameter value is not correctly picked up. + # This can also be remedied by the caller (post-build.yml) if it does not use a nested parameter + # optional: determines whether to continue the build if the step errors; + sdlContinueOnError: false + +steps: +- template: /eng/common/templates-official/steps/execute-sdl.yml + parameters: + overrideGuardianVersion: ${{ parameters.overrideGuardianVersion }} + executeAllSdlToolsScript: ${{ parameters.executeAllSdlToolsScript }} + overrideParameters: ${{ parameters.overrideParameters }} + additionalParameters: '${{ parameters.additionalParameters }} + -CodeQLAdditionalRunConfigParams @("BuildCommands < ${{ parameters.buildCommands }}", "Language < ${{ parameters.language }}")' + publishGuardianDirectoryToPipeline: ${{ parameters.publishGuardianDirectoryToPipeline }} + sdlContinueOnError: ${{ parameters.sdlContinueOnError }} \ No newline at end of file diff --git a/eng/common/templates-official/steps/execute-sdl.yml b/eng/common/templates-official/steps/execute-sdl.yml new file mode 100644 index 000000000..07426fde0 --- /dev/null +++ b/eng/common/templates-official/steps/execute-sdl.yml @@ -0,0 +1,88 @@ +parameters: + overrideGuardianVersion: '' + executeAllSdlToolsScript: '' + overrideParameters: '' + additionalParameters: '' + publishGuardianDirectoryToPipeline: false + sdlContinueOnError: false + condition: '' + +steps: +- task: NuGetAuthenticate@1 + inputs: + nuGetServiceConnections: GuardianConnect + +- task: NuGetToolInstaller@1 + displayName: 'Install NuGet.exe' + +- ${{ if ne(parameters.overrideGuardianVersion, '') }}: + - pwsh: | + Set-Location -Path $(Build.SourcesDirectory)\eng\common\sdl + . .\sdl.ps1 + $guardianCliLocation = Install-Gdn -Path $(Build.SourcesDirectory)\.artifacts -Version ${{ parameters.overrideGuardianVersion }} + Write-Host "##vso[task.setvariable variable=GuardianCliLocation]$guardianCliLocation" + displayName: Install Guardian (Overridden) + +- ${{ if eq(parameters.overrideGuardianVersion, '') }}: + - pwsh: | + Set-Location -Path $(Build.SourcesDirectory)\eng\common\sdl + . .\sdl.ps1 + $guardianCliLocation = Install-Gdn -Path $(Build.SourcesDirectory)\.artifacts + Write-Host "##vso[task.setvariable variable=GuardianCliLocation]$guardianCliLocation" + displayName: Install Guardian + +- ${{ if ne(parameters.overrideParameters, '') }}: + - powershell: ${{ parameters.executeAllSdlToolsScript }} ${{ parameters.overrideParameters }} + displayName: Execute SDL (Overridden) + continueOnError: ${{ parameters.sdlContinueOnError }} + condition: ${{ parameters.condition }} + +- ${{ if eq(parameters.overrideParameters, '') }}: + - powershell: ${{ parameters.executeAllSdlToolsScript }} + -GuardianCliLocation $(GuardianCliLocation) + -NugetPackageDirectory $(Build.SourcesDirectory)\.packages + -AzureDevOpsAccessToken $(dn-bot-dotnet-build-rw-code-rw) + ${{ parameters.additionalParameters }} + displayName: Execute SDL + continueOnError: ${{ parameters.sdlContinueOnError }} + condition: ${{ parameters.condition }} + +- ${{ if ne(parameters.publishGuardianDirectoryToPipeline, 'false') }}: + # We want to publish the Guardian results and configuration for easy diagnosis. However, the + # '.gdn' dir is a mix of configuration, results, extracted dependencies, and Guardian default + # tooling files. Some of these files are large and aren't useful during an investigation, so + # exclude them by simply deleting them before publishing. (As of writing, there is no documented + # way to selectively exclude a dir from the pipeline artifact publish task.) + - task: DeleteFiles@1 + displayName: Delete Guardian dependencies to avoid uploading + inputs: + SourceFolder: $(Agent.BuildDirectory)/.gdn + Contents: | + c + i + condition: succeededOrFailed() + + - publish: $(Agent.BuildDirectory)/.gdn + artifact: GuardianConfiguration + displayName: Publish GuardianConfiguration + condition: succeededOrFailed() + + # Publish the SARIF files in a container named CodeAnalysisLogs to enable integration + # with the "SARIF SAST Scans Tab" Azure DevOps extension + - task: CopyFiles@2 + displayName: Copy SARIF files + inputs: + flattenFolders: true + sourceFolder: $(Agent.BuildDirectory)/.gdn/rc/ + contents: '**/*.sarif' + targetFolder: $(Build.SourcesDirectory)/CodeAnalysisLogs + condition: succeededOrFailed() + + # Use PublishBuildArtifacts because the SARIF extension only checks this case + # see microsoft/sarif-azuredevops-extension#4 + - task: PublishBuildArtifacts@1 + displayName: Publish SARIF files to CodeAnalysisLogs container + inputs: + pathToPublish: $(Build.SourcesDirectory)/CodeAnalysisLogs + artifactName: CodeAnalysisLogs + condition: succeededOrFailed() \ No newline at end of file diff --git a/eng/common/templates-official/steps/generate-sbom.yml b/eng/common/templates-official/steps/generate-sbom.yml new file mode 100644 index 000000000..1bf43bf80 --- /dev/null +++ b/eng/common/templates-official/steps/generate-sbom.yml @@ -0,0 +1,48 @@ +# 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: 8.0.0 + BuildDropPath: '$(Build.SourcesDirectory)/artifacts' + PackageName: '.NET' + ManifestDirPath: $(Build.ArtifactStagingDirectory)/sbom + IgnoreDirectories: '' + sbomContinueOnError: 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: | + 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 }} + ${{ if ne(parameters.IgnoreDirectories, '') }}: + AdditionalComponentDetectorArgs: '--IgnoreDirectories ${{ parameters.IgnoreDirectories }}' + +- task: 1ES.PublishPipelineArtifact@1 + displayName: Publish SBOM manifest + continueOnError: ${{parameters.sbomContinueOnError}} + inputs: + targetPath: '${{parameters.manifestDirPath}}' + artifactName: $(ARTIFACT_NAME) + diff --git a/eng/common/templates-official/steps/publish-logs.yml b/eng/common/templates-official/steps/publish-logs.yml new file mode 100644 index 000000000..04012fed1 --- /dev/null +++ b/eng/common/templates-official/steps/publish-logs.yml @@ -0,0 +1,23 @@ +parameters: + StageLabel: '' + JobLabel: '' + +steps: +- task: Powershell@2 + displayName: Prepare Binlogs to Upload + inputs: + targetType: inline + script: | + New-Item -ItemType Directory $(Build.SourcesDirectory)/PostBuildLogs/${{parameters.StageLabel}}/${{parameters.JobLabel}}/ + Move-Item -Path $(Build.SourcesDirectory)/artifacts/log/Debug/* $(Build.SourcesDirectory)/PostBuildLogs/${{parameters.StageLabel}}/${{parameters.JobLabel}}/ + continueOnError: true + condition: always() + +- task: 1ES.PublishBuildArtifacts@1 + displayName: Publish Logs + inputs: + PathtoPublish: '$(Build.SourcesDirectory)/PostBuildLogs' + PublishLocation: Container + ArtifactName: PostBuildLogs + continueOnError: true + condition: always() diff --git a/eng/common/templates-official/steps/retain-build.yml b/eng/common/templates-official/steps/retain-build.yml new file mode 100644 index 000000000..83d97a26a --- /dev/null +++ b/eng/common/templates-official/steps/retain-build.yml @@ -0,0 +1,28 @@ +parameters: + # Optional azure devops PAT with build execute permissions for the build's organization, + # only needed if the build that should be retained ran on a different organization than + # the pipeline where this template is executing from + Token: '' + # Optional BuildId to retain, defaults to the current running build + BuildId: '' + # Azure devops Organization URI for the build in the https://dev.azure.com/ format. + # Defaults to the organization the current pipeline is running on + AzdoOrgUri: '$(System.CollectionUri)' + # Azure devops project for the build. Defaults to the project the current pipeline is running on + AzdoProject: '$(System.TeamProject)' + +steps: + - task: powershell@2 + inputs: + targetType: 'filePath' + filePath: eng/common/retain-build.ps1 + pwsh: true + arguments: > + -AzdoOrgUri: ${{parameters.AzdoOrgUri}} + -AzdoProject ${{parameters.AzdoProject}} + -Token ${{coalesce(parameters.Token, '$env:SYSTEM_ACCESSTOKEN') }} + -BuildId ${{coalesce(parameters.BuildId, '$env:BUILD_ID')}} + displayName: Enable permanent build retention + env: + SYSTEM_ACCESSTOKEN: $(System.AccessToken) + BUILD_ID: $(Build.BuildId) \ No newline at end of file diff --git a/eng/common/templates-official/steps/send-to-helix.yml b/eng/common/templates-official/steps/send-to-helix.yml new file mode 100644 index 000000000..3eb7e2d5f --- /dev/null +++ b/eng/common/templates-official/steps/send-to-helix.yml @@ -0,0 +1,91 @@ +# Please remember to update the documentation if you make changes to these parameters! +parameters: + HelixSource: 'pr/default' # required -- sources must start with pr/, official/, prodcon/, or agent/ + HelixType: 'tests/default/' # required -- Helix telemetry which identifies what type of data this is; should include "test" for clarity and must end in '/' + HelixBuild: $(Build.BuildNumber) # required -- the build number Helix will use to identify this -- automatically set to the AzDO build number + HelixTargetQueues: '' # required -- semicolon-delimited list of Helix queues to test on; see https://helix.dot.net/ for a list of queues + HelixAccessToken: '' # required -- access token to make Helix API requests; should be provided by the appropriate variable group + HelixConfiguration: '' # optional -- additional property attached to a job + HelixPreCommands: '' # optional -- commands to run before Helix work item execution + HelixPostCommands: '' # optional -- commands to run after Helix work item execution + WorkItemDirectory: '' # optional -- a payload directory to zip up and send to Helix; requires WorkItemCommand; incompatible with XUnitProjects + WorkItemCommand: '' # optional -- a command to execute on the payload; requires WorkItemDirectory; incompatible with XUnitProjects + WorkItemTimeout: '' # optional -- a timeout in TimeSpan.Parse-ready value (e.g. 00:02:00) for the work item command; requires WorkItemDirectory; incompatible with XUnitProjects + CorrelationPayloadDirectory: '' # optional -- a directory to zip up and send to Helix as a correlation payload + XUnitProjects: '' # optional -- semicolon-delimited list of XUnitProjects to parse and send to Helix; requires XUnitRuntimeTargetFramework, XUnitPublishTargetFramework, XUnitRunnerVersion, and IncludeDotNetCli=true + XUnitWorkItemTimeout: '' # optional -- the workitem timeout in seconds for all workitems created from the xUnit projects specified by XUnitProjects + XUnitPublishTargetFramework: '' # optional -- framework to use to publish your xUnit projects + XUnitRuntimeTargetFramework: '' # optional -- framework to use for the xUnit console runner + XUnitRunnerVersion: '' # optional -- version of the xUnit nuget package you wish to use on Helix; required for XUnitProjects + IncludeDotNetCli: false # optional -- true will download a version of the .NET CLI onto the Helix machine as a correlation payload; requires DotNetCliPackageType and DotNetCliVersion + DotNetCliPackageType: '' # optional -- either 'sdk', 'runtime' or 'aspnetcore-runtime'; determines whether the sdk or runtime will be sent to Helix; see https://raw.githubusercontent.com/dotnet/core/main/release-notes/releases-index.json + DotNetCliVersion: '' # optional -- version of the CLI to send to Helix; based on this: https://raw.githubusercontent.com/dotnet/core/main/release-notes/releases-index.json + WaitForWorkItemCompletion: true # optional -- true will make the task wait until work items have been completed and fail the build if work items fail. False is "fire and forget." + IsExternal: false # [DEPRECATED] -- doesn't do anything, jobs are external if HelixAccessToken is empty and Creator is set + HelixBaseUri: 'https://helix.dot.net/' # optional -- sets the Helix API base URI (allows targeting https://helix.int-dot.net ) + Creator: '' # optional -- if the build is external, use this to specify who is sending the job + DisplayNamePrefix: 'Run Tests' # optional -- rename the beginning of the displayName of the steps in AzDO + condition: succeeded() # optional -- condition for step to execute; defaults to succeeded() + continueOnError: false # optional -- determines whether to continue the build if the step errors; defaults to false + +steps: + - powershell: 'powershell "$env:BUILD_SOURCESDIRECTORY\eng\common\msbuild.ps1 $env:BUILD_SOURCESDIRECTORY\eng\common\helixpublish.proj /restore /p:TreatWarningsAsErrors=false /t:Test /bl:$env:BUILD_SOURCESDIRECTORY\artifacts\log\$env:BuildConfig\SendToHelix.binlog"' + displayName: ${{ parameters.DisplayNamePrefix }} (Windows) + env: + BuildConfig: $(_BuildConfig) + HelixSource: ${{ parameters.HelixSource }} + HelixType: ${{ parameters.HelixType }} + HelixBuild: ${{ parameters.HelixBuild }} + HelixConfiguration: ${{ parameters.HelixConfiguration }} + HelixTargetQueues: ${{ parameters.HelixTargetQueues }} + HelixAccessToken: ${{ parameters.HelixAccessToken }} + HelixPreCommands: ${{ parameters.HelixPreCommands }} + HelixPostCommands: ${{ parameters.HelixPostCommands }} + WorkItemDirectory: ${{ parameters.WorkItemDirectory }} + WorkItemCommand: ${{ parameters.WorkItemCommand }} + WorkItemTimeout: ${{ parameters.WorkItemTimeout }} + CorrelationPayloadDirectory: ${{ parameters.CorrelationPayloadDirectory }} + XUnitProjects: ${{ parameters.XUnitProjects }} + XUnitWorkItemTimeout: ${{ parameters.XUnitWorkItemTimeout }} + XUnitPublishTargetFramework: ${{ parameters.XUnitPublishTargetFramework }} + XUnitRuntimeTargetFramework: ${{ parameters.XUnitRuntimeTargetFramework }} + XUnitRunnerVersion: ${{ parameters.XUnitRunnerVersion }} + IncludeDotNetCli: ${{ parameters.IncludeDotNetCli }} + DotNetCliPackageType: ${{ parameters.DotNetCliPackageType }} + DotNetCliVersion: ${{ parameters.DotNetCliVersion }} + WaitForWorkItemCompletion: ${{ parameters.WaitForWorkItemCompletion }} + HelixBaseUri: ${{ parameters.HelixBaseUri }} + Creator: ${{ parameters.Creator }} + SYSTEM_ACCESSTOKEN: $(System.AccessToken) + condition: and(${{ parameters.condition }}, eq(variables['Agent.Os'], 'Windows_NT')) + continueOnError: ${{ parameters.continueOnError }} + - script: $BUILD_SOURCESDIRECTORY/eng/common/msbuild.sh $BUILD_SOURCESDIRECTORY/eng/common/helixpublish.proj /restore /p:TreatWarningsAsErrors=false /t:Test /bl:$BUILD_SOURCESDIRECTORY/artifacts/log/$BuildConfig/SendToHelix.binlog + displayName: ${{ parameters.DisplayNamePrefix }} (Unix) + env: + BuildConfig: $(_BuildConfig) + HelixSource: ${{ parameters.HelixSource }} + HelixType: ${{ parameters.HelixType }} + HelixBuild: ${{ parameters.HelixBuild }} + HelixConfiguration: ${{ parameters.HelixConfiguration }} + HelixTargetQueues: ${{ parameters.HelixTargetQueues }} + HelixAccessToken: ${{ parameters.HelixAccessToken }} + HelixPreCommands: ${{ parameters.HelixPreCommands }} + HelixPostCommands: ${{ parameters.HelixPostCommands }} + WorkItemDirectory: ${{ parameters.WorkItemDirectory }} + WorkItemCommand: ${{ parameters.WorkItemCommand }} + WorkItemTimeout: ${{ parameters.WorkItemTimeout }} + CorrelationPayloadDirectory: ${{ parameters.CorrelationPayloadDirectory }} + XUnitProjects: ${{ parameters.XUnitProjects }} + XUnitWorkItemTimeout: ${{ parameters.XUnitWorkItemTimeout }} + XUnitPublishTargetFramework: ${{ parameters.XUnitPublishTargetFramework }} + XUnitRuntimeTargetFramework: ${{ parameters.XUnitRuntimeTargetFramework }} + XUnitRunnerVersion: ${{ parameters.XUnitRunnerVersion }} + IncludeDotNetCli: ${{ parameters.IncludeDotNetCli }} + DotNetCliPackageType: ${{ parameters.DotNetCliPackageType }} + DotNetCliVersion: ${{ parameters.DotNetCliVersion }} + WaitForWorkItemCompletion: ${{ parameters.WaitForWorkItemCompletion }} + HelixBaseUri: ${{ parameters.HelixBaseUri }} + Creator: ${{ parameters.Creator }} + SYSTEM_ACCESSTOKEN: $(System.AccessToken) + condition: and(${{ parameters.condition }}, ne(variables['Agent.Os'], 'Windows_NT')) + continueOnError: ${{ parameters.continueOnError }} diff --git a/eng/common/templates-official/steps/source-build.yml b/eng/common/templates-official/steps/source-build.yml new file mode 100644 index 000000000..829f17c34 --- /dev/null +++ b/eng/common/templates-official/steps/source-build.yml @@ -0,0 +1,129 @@ +parameters: + # This template adds arcade-powered source-build to CI. + + # This is a 'steps' template, and is intended for advanced scenarios where the existing build + # infra has a careful build methodology that must be followed. For example, a repo + # (dotnet/runtime) might choose to clone the GitHub repo only once and store it as a pipeline + # artifact for all subsequent jobs to use, to reduce dependence on a strong network connection to + # GitHub. Using this steps template leaves room for that infra to be included. + + # Defines the platform on which to run the steps. See 'eng/common/templates-official/job/source-build.yml' + # for details. The entire object is described in the 'job' template for simplicity, even though + # the usage of the properties on this object is split between the 'job' and 'steps' templates. + platform: {} + +steps: +# Build. Keep it self-contained for simple reusability. (No source-build-specific job variables.) +- script: | + set -x + df -h + + # If building on the internal project, the artifact feeds variable may be available (usually only if needed) + # In that case, call the feed setup script to add internal feeds corresponding to public ones. + # In addition, add an msbuild argument to copy the WIP from the repo to the target build location. + # This is because SetupNuGetSources.sh will alter the current NuGet.config file, and we need to preserve those + # changes. + internalRestoreArgs= + if [ '$(dn-bot-dnceng-artifact-feeds-rw)' != '$''(dn-bot-dnceng-artifact-feeds-rw)' ]; then + # Temporarily work around https://github.com/dotnet/arcade/issues/7709 + chmod +x $(Build.SourcesDirectory)/eng/common/SetupNugetSources.sh + $(Build.SourcesDirectory)/eng/common/SetupNugetSources.sh $(Build.SourcesDirectory)/NuGet.config $(dn-bot-dnceng-artifact-feeds-rw) + internalRestoreArgs='/p:CopyWipIntoInnerSourceBuildRepo=true' + + # The 'Copy WIP' feature of source build uses git stash to apply changes from the original repo. + # This only works if there is a username/email configured, which won't be the case in most CI runs. + git config --get user.email + if [ $? -ne 0 ]; then + git config user.email dn-bot@microsoft.com + git config user.name dn-bot + fi + fi + + # If building on the internal project, the internal storage variable may be available (usually only if needed) + # In that case, add variables to allow the download of internal runtimes if the specified versions are not found + # in the default public locations. + internalRuntimeDownloadArgs= + if [ '$(dotnetbuilds-internal-container-read-token-base64)' != '$''(dotnetbuilds-internal-container-read-token-base64)' ]; then + internalRuntimeDownloadArgs='/p:DotNetRuntimeSourceFeed=https://dotnetbuilds.blob.core.windows.net/internal /p:DotNetRuntimeSourceFeedKey=$(dotnetbuilds-internal-container-read-token-base64) --runtimesourcefeed https://dotnetbuilds.blob.core.windows.net/internal --runtimesourcefeedkey $(dotnetbuilds-internal-container-read-token-base64)' + fi + + buildConfig=Release + # Check if AzDO substitutes in a build config from a variable, and use it if so. + if [ '$(_BuildConfig)' != '$''(_BuildConfig)' ]; then + buildConfig='$(_BuildConfig)' + fi + + officialBuildArgs= + if [ '${{ and(ne(variables['System.TeamProject'], 'public'), notin(variables['Build.Reason'], 'PullRequest')) }}' = 'True' ]; then + officialBuildArgs='/p:DotNetPublishUsingPipelines=true /p:OfficialBuildId=$(BUILD.BUILDNUMBER)' + fi + + targetRidArgs= + if [ '${{ parameters.platform.targetRID }}' != '' ]; then + targetRidArgs='/p:TargetRid=${{ parameters.platform.targetRID }}' + fi + + runtimeOsArgs= + if [ '${{ parameters.platform.runtimeOS }}' != '' ]; then + runtimeOsArgs='/p:RuntimeOS=${{ parameters.platform.runtimeOS }}' + fi + + baseOsArgs= + if [ '${{ parameters.platform.baseOS }}' != '' ]; then + baseOsArgs='/p:BaseOS=${{ parameters.platform.baseOS }}' + fi + + publishArgs= + if [ '${{ parameters.platform.skipPublishValidation }}' != 'true' ]; then + publishArgs='--publish' + fi + + assetManifestFileName=SourceBuild_RidSpecific.xml + if [ '${{ parameters.platform.name }}' != '' ]; then + assetManifestFileName=SourceBuild_${{ parameters.platform.name }}.xml + fi + + ${{ coalesce(parameters.platform.buildScript, './build.sh') }} --ci \ + --configuration $buildConfig \ + --restore --build --pack $publishArgs -bl \ + $officialBuildArgs \ + $internalRuntimeDownloadArgs \ + $internalRestoreArgs \ + $targetRidArgs \ + $runtimeOsArgs \ + $baseOsArgs \ + /p:SourceBuildNonPortable=${{ parameters.platform.nonPortable }} \ + /p:ArcadeBuildFromSource=true \ + /p:AssetManifestFileName=$assetManifestFileName + displayName: Build + +# Upload build logs for diagnosis. +- task: CopyFiles@2 + displayName: Prepare BuildLogs staging directory + inputs: + SourceFolder: '$(Build.SourcesDirectory)' + Contents: | + **/*.log + **/*.binlog + artifacts/source-build/self/prebuilt-report/** + TargetFolder: '$(Build.StagingDirectory)/BuildLogs' + CleanTargetFolder: true + continueOnError: true + condition: succeededOrFailed() + +- task: 1ES.PublishPipelineArtifact@1 + displayName: Publish BuildLogs + inputs: + targetPath: '$(Build.StagingDirectory)/BuildLogs' + artifactName: BuildLogs_SourceBuild_${{ parameters.platform.name }}_Attempt$(System.JobAttempt) + continueOnError: true + condition: succeededOrFailed() + +# Manually inject component detection so that we can ignore the source build upstream cache, which contains +# a nupkg cache of input packages (a local feed). +# This path must match the upstream cache path in property 'CurrentRepoSourceBuiltNupkgCacheDir' +# in src\Microsoft.DotNet.Arcade.Sdk\tools\SourceBuild\SourceBuildArcade.targets +- task: ComponentGovernanceComponentDetection@0 + displayName: Component Detection (Exclude upstream cache) + inputs: + ignoreDirectories: '$(Build.SourcesDirectory)/artifacts/source-build/self/src/artifacts/obj/source-built-upstream-cache' diff --git a/eng/common/templates-official/variables/pool-providers.yml b/eng/common/templates-official/variables/pool-providers.yml new file mode 100644 index 000000000..beab7d1bf --- /dev/null +++ b/eng/common/templates-official/variables/pool-providers.yml @@ -0,0 +1,45 @@ +# Select a pool provider based off branch name. Anything with branch name containing 'release' must go into an -Svc pool, +# otherwise it should go into the "normal" pools. This separates out the queueing and billing of released branches. + +# Motivation: +# Once a given branch of a repository's output has been officially "shipped" once, it is then considered to be COGS +# (Cost of goods sold) and should be moved to a servicing pool provider. This allows both separation of queueing +# (allowing release builds and main PR builds to not intefere with each other) and billing (required for COGS. +# Additionally, the pool provider name itself may be subject to change when the .NET Core Engineering Services +# team needs to move resources around and create new and potentially differently-named pools. Using this template +# file from an Arcade-ified repo helps guard against both having to update one's release/* branches and renaming. + +# How to use: +# This yaml assumes your shipped product branches use the naming convention "release/..." (which many do). +# If we find alternate naming conventions in broad usage it can be added to the condition below. +# +# First, import the template in an arcade-ified repo to pick up the variables, e.g.: +# +# variables: +# - template: /eng/common/templates-official/variables/pool-providers.yml +# +# ... then anywhere specifying the pool provider use the runtime variables, +# $(DncEngInternalBuildPool) +# +# pool: +# name: $(DncEngInternalBuildPool) +# image: 1es-windows-2022-pt + +variables: + # Coalesce the target and source branches so we know when a PR targets a release branch + # If these variables are somehow missing, fall back to main (tends to have more capacity) + + # Any new -Svc alternative pools should have variables added here to allow for splitting work + + - name: DncEngInternalBuildPool + value: $[ + replace( + replace( + eq(contains(coalesce(variables['System.PullRequest.TargetBranch'], variables['Build.SourceBranch'], 'refs/heads/main'), 'release'), 'true'), + True, + 'NetCore1ESPool-Svc-Internal' + ), + False, + 'NetCore1ESPool-Internal' + ) + ] \ No newline at end of file diff --git a/eng/common/templates-official/variables/sdl-variables.yml b/eng/common/templates-official/variables/sdl-variables.yml new file mode 100644 index 000000000..dbdd66d4a --- /dev/null +++ b/eng/common/templates-official/variables/sdl-variables.yml @@ -0,0 +1,7 @@ +variables: +# The Guardian version specified in 'eng/common/sdl/packages.config'. This value must be kept in +# sync with the packages.config file. +- name: DefaultGuardianVersion + value: 0.109.0 +- name: GuardianPackagesConfigFile + value: $(Build.SourcesDirectory)\eng\common\sdl\packages.config \ No newline at end of file diff --git a/eng/common/templates/job/job.yml b/eng/common/templates/job/job.yml index e24ca2f46..8ec5c4f2d 100644 --- a/eng/common/templates/job/job.yml +++ b/eng/common/templates/job/job.yml @@ -15,6 +15,7 @@ parameters: timeoutInMinutes: '' variables: [] workspace: '' + templateContext: '' # Job base template specific parameters # See schema documentation - https://github.com/dotnet/arcade/blob/master/Documentation/AzureDevOps/TemplateSchema.md @@ -68,6 +69,9 @@ jobs: ${{ if ne(parameters.timeoutInMinutes, '') }}: timeoutInMinutes: ${{ parameters.timeoutInMinutes }} + ${{ if ne(parameters.templateContext, '') }}: + templateContext: ${{ parameters.templateContext }} + variables: - ${{ if ne(parameters.enableTelemetry, 'false') }}: - name: DOTNET_CLI_TELEMETRY_PROFILE diff --git a/eng/common/templates/steps/generate-sbom.yml b/eng/common/templates/steps/generate-sbom.yml index a06373f38..2b21eae42 100644 --- a/eng/common/templates/steps/generate-sbom.yml +++ b/eng/common/templates/steps/generate-sbom.yml @@ -5,7 +5,7 @@ # IgnoreDirectories - Directories to ignore for SBOM generation. This will be passed through to the CG component detector. parameters: - PackageVersion: 7.0.0 + PackageVersion: 8.0.0 BuildDropPath: '$(Build.SourcesDirectory)/artifacts' PackageName: '.NET' ManifestDirPath: $(Build.ArtifactStagingDirectory)/sbom diff --git a/global.json b/global.json index 0813d72cd..df7568b26 100644 --- a/global.json +++ b/global.json @@ -3,8 +3,8 @@ "dotnet": "8.0.101" }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "8.0.0-beta.24113.2", - "Microsoft.DotNet.SharedFramework.Sdk": "8.0.0-beta.24113.2", + "Microsoft.DotNet.Arcade.Sdk": "8.0.0-beta.24165.4", + "Microsoft.DotNet.SharedFramework.Sdk": "8.0.0-beta.24165.4", "Microsoft.Build.NoTargets": "3.7.0", "Microsoft.Build.Traversal": "3.4.0" } From 7b2449821b96f37db5e9673240c5686e829994bc Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Tue, 19 Mar 2024 20:35:00 +0000 Subject: [PATCH 125/222] Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-wpf build Microsoft.DotNet.Wpf.GitHub , Microsoft.DotNet.Wpf.ProjectTemplates , Microsoft.NET.Sdk.WindowsDesktop From Version 8.0.4-servicing.24161.8 -> To Version 8.0.4-servicing.24168.11 Dependency coherency updates Microsoft.Private.Winforms,Microsoft.Internal.Runtime.WindowsDesktop.Transport,Microsoft.Private.Winforms,Microsoft.NETCore.App.Ref,Microsoft.Private.Winforms,VS.Redist.Common.NetCore.SharedFramework.x64.8.0,Microsoft.Private.Winforms,Microsoft.NETCore.App.Runtime.win-x64,Microsoft.Dotnet.WinForms.ProjectTemplates,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,System.Drawing.Common From Version 8.0.4-servicing.24157.9 -> To Version 8.0.4-servicing.24164.3 (parent: Microsoft.DotNet.Wpf.GitHub --- NuGet.config | 12 ++++-------- eng/Version.Details.xml | 38 +++++++++++++++++++------------------- eng/Versions.props | 16 ++++++++-------- 3 files changed, 31 insertions(+), 35 deletions(-) diff --git a/NuGet.config b/NuGet.config index 536200eb3..f48fc6ce6 100644 --- a/NuGet.config +++ b/NuGet.config @@ -9,12 +9,10 @@ - - - + - + @@ -27,12 +25,10 @@ - - - + - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 0e2326d4b..6325527a6 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,41 +1,41 @@ - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 9f4b1f5d664afdfc80e1508ab7ed099dff210fbd + 38f2042434044be9a09065b23b7ef342a313a498 - + https://dev.azure.com/dnceng/internal/_git/dotnet-winforms - b376f387d33bbfe5fda9da6077ea1b9105c732d8 + f37bd9d71f3baa2b2f47389aa2d2fa17324d714b - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - 8537295cb0637acfc62befc1459244d3bfdb70d4 + 3e809dd609fe55ed129b89efaec03baa86ff539d - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - 8537295cb0637acfc62befc1459244d3bfdb70d4 + 3e809dd609fe55ed129b89efaec03baa86ff539d - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 9f4b1f5d664afdfc80e1508ab7ed099dff210fbd + 38f2042434044be9a09065b23b7ef342a313a498 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 9f4b1f5d664afdfc80e1508ab7ed099dff210fbd + 38f2042434044be9a09065b23b7ef342a313a498 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 9f4b1f5d664afdfc80e1508ab7ed099dff210fbd + 38f2042434044be9a09065b23b7ef342a313a498 - + https://dev.azure.com/dnceng/internal/_git/dotnet-winforms - b376f387d33bbfe5fda9da6077ea1b9105c732d8 + f37bd9d71f3baa2b2f47389aa2d2fa17324d714b - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - 8537295cb0637acfc62befc1459244d3bfdb70d4 + 3e809dd609fe55ed129b89efaec03baa86ff539d https://dev.azure.com/dnceng/internal/_git/dotnet-runtime @@ -147,7 +147,7 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-winforms - b376f387d33bbfe5fda9da6077ea1b9105c732d8 + f37bd9d71f3baa2b2f47389aa2d2fa17324d714b diff --git a/eng/Versions.props b/eng/Versions.props index 1697d7524..e9fcb882b 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -25,9 +25,9 @@ 6.2.4 - 8.0.3-servicing.24114.23 - 8.0.3 - 8.0.3 + 8.0.4-servicing.24163.26 + 8.0.4 + 8.0.4 8.0.0 5.0.0 8.0.0 @@ -61,15 +61,15 @@ 8.0.0 8.0.0 8.0.0 - 8.0.3-servicing.24114.23 + 8.0.4-servicing.24163.26 4.10.0 - 8.0.4-servicing.24157.9 - 8.0.4-servicing.24157.9 + 8.0.4-servicing.24164.3 + 8.0.4-servicing.24164.3 8.0.4 - 8.0.4-servicing.24161.8 - 8.0.4-servicing.24161.8 + 8.0.4-servicing.24168.11 + 8.0.4-servicing.24168.11 From dfc2cd4c8d048392b2eb15ceff7ee46828e4c264 Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Tue, 19 Mar 2024 21:04:20 +0000 Subject: [PATCH 126/222] Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-wpf build Microsoft.DotNet.Wpf.GitHub , Microsoft.DotNet.Wpf.ProjectTemplates , Microsoft.NET.Sdk.WindowsDesktop From Version 8.0.4-servicing.24168.11 -> To Version 8.0.4-servicing.24169.6 Dependency coherency updates Microsoft.Private.Winforms,Microsoft.Internal.Runtime.WindowsDesktop.Transport,Microsoft.Private.Winforms,Microsoft.NETCore.App.Ref,Microsoft.Private.Winforms,VS.Redist.Common.NetCore.SharedFramework.x64.8.0,Microsoft.Private.Winforms,Microsoft.NETCore.App.Runtime.win-x64,Microsoft.Dotnet.WinForms.ProjectTemplates,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,System.Drawing.Common From Version 8.0.4-servicing.24164.3 -> To Version 8.0.4-servicing.24168.13 (parent: Microsoft.DotNet.Wpf.GitHub --- NuGet.config | 8 ++++---- eng/Version.Details.xml | 34 +++++++++++++++++----------------- eng/Versions.props | 12 ++++++------ 3 files changed, 27 insertions(+), 27 deletions(-) diff --git a/NuGet.config b/NuGet.config index f48fc6ce6..3395abedc 100644 --- a/NuGet.config +++ b/NuGet.config @@ -9,10 +9,10 @@ - + - + @@ -25,10 +25,10 @@ - + - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 6325527a6..f0b3cbb1c 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,41 +1,41 @@ - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 38f2042434044be9a09065b23b7ef342a313a498 + a1a9440b48374c6d400287abbb56a4ac54d9b02f - + https://dev.azure.com/dnceng/internal/_git/dotnet-winforms - f37bd9d71f3baa2b2f47389aa2d2fa17324d714b + fbf1a1e892c2c37066093d856d8c23f7adff536f - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - 3e809dd609fe55ed129b89efaec03baa86ff539d + 98cf51b0da3a060fd77c04128d4fcb6ba82076f0 - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - 3e809dd609fe55ed129b89efaec03baa86ff539d + 98cf51b0da3a060fd77c04128d4fcb6ba82076f0 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 38f2042434044be9a09065b23b7ef342a313a498 + a1a9440b48374c6d400287abbb56a4ac54d9b02f - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 38f2042434044be9a09065b23b7ef342a313a498 + a1a9440b48374c6d400287abbb56a4ac54d9b02f https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 38f2042434044be9a09065b23b7ef342a313a498 + a1a9440b48374c6d400287abbb56a4ac54d9b02f - + https://dev.azure.com/dnceng/internal/_git/dotnet-winforms - f37bd9d71f3baa2b2f47389aa2d2fa17324d714b + fbf1a1e892c2c37066093d856d8c23f7adff536f - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - 3e809dd609fe55ed129b89efaec03baa86ff539d + 98cf51b0da3a060fd77c04128d4fcb6ba82076f0 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime @@ -147,7 +147,7 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-winforms - f37bd9d71f3baa2b2f47389aa2d2fa17324d714b + fbf1a1e892c2c37066093d856d8c23f7adff536f diff --git a/eng/Versions.props b/eng/Versions.props index e9fcb882b..abc245194 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -25,7 +25,7 @@ 6.2.4 - 8.0.4-servicing.24163.26 + 8.0.4-servicing.24168.10 8.0.4 8.0.4 8.0.0 @@ -61,15 +61,15 @@ 8.0.0 8.0.0 8.0.0 - 8.0.4-servicing.24163.26 + 8.0.4-servicing.24168.10 4.10.0 - 8.0.4-servicing.24164.3 - 8.0.4-servicing.24164.3 + 8.0.4-servicing.24168.13 + 8.0.4-servicing.24168.13 8.0.4 - 8.0.4-servicing.24168.11 - 8.0.4-servicing.24168.11 + 8.0.4-servicing.24169.6 + 8.0.4-servicing.24169.6 From 011c07ef238848fca04bed76dc8cff1d23c9aa3a Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Tue, 19 Mar 2024 23:51:52 +0000 Subject: [PATCH 127/222] Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-wpf build Microsoft.DotNet.Wpf.GitHub , Microsoft.DotNet.Wpf.ProjectTemplates , Microsoft.NET.Sdk.WindowsDesktop From Version 8.0.4-servicing.24169.6 -> To Version 8.0.4-servicing.24169.8 Dependency coherency updates Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Dotnet.WinForms.ProjectTemplates,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,System.Drawing.Common From Version 8.0.4-servicing.24168.13 -> To Version 8.0.4-servicing.24169.7 (parent: Microsoft.DotNet.Wpf.GitHub --- NuGet.config | 4 ++-- eng/Version.Details.xml | 22 +++++++++++----------- eng/Versions.props | 8 ++++---- 3 files changed, 17 insertions(+), 17 deletions(-) diff --git a/NuGet.config b/NuGet.config index 3395abedc..1d260c524 100644 --- a/NuGet.config +++ b/NuGet.config @@ -12,7 +12,7 @@ - + @@ -28,7 +28,7 @@ - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index f0b3cbb1c..dd6d6cb65 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -5,17 +5,17 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime a1a9440b48374c6d400287abbb56a4ac54d9b02f - + https://dev.azure.com/dnceng/internal/_git/dotnet-winforms - fbf1a1e892c2c37066093d856d8c23f7adff536f + 1575d7056e8952d90f592553e9f00661bc94e81a - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - 98cf51b0da3a060fd77c04128d4fcb6ba82076f0 + 29ccbeca12c26d35acfea8fd4033168fdc2edcb8 - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - 98cf51b0da3a060fd77c04128d4fcb6ba82076f0 + 29ccbeca12c26d35acfea8fd4033168fdc2edcb8 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime @@ -29,13 +29,13 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime a1a9440b48374c6d400287abbb56a4ac54d9b02f - + https://dev.azure.com/dnceng/internal/_git/dotnet-winforms - fbf1a1e892c2c37066093d856d8c23f7adff536f + 1575d7056e8952d90f592553e9f00661bc94e81a - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - 98cf51b0da3a060fd77c04128d4fcb6ba82076f0 + 29ccbeca12c26d35acfea8fd4033168fdc2edcb8 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime @@ -147,7 +147,7 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-winforms - fbf1a1e892c2c37066093d856d8c23f7adff536f + 1575d7056e8952d90f592553e9f00661bc94e81a diff --git a/eng/Versions.props b/eng/Versions.props index abc245194..86aea139e 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -65,11 +65,11 @@ 4.10.0 - 8.0.4-servicing.24168.13 - 8.0.4-servicing.24168.13 + 8.0.4-servicing.24169.7 + 8.0.4-servicing.24169.7 8.0.4 - 8.0.4-servicing.24169.6 - 8.0.4-servicing.24169.6 + 8.0.4-servicing.24169.8 + 8.0.4-servicing.24169.8 From 0227640cc6e96cefda6c5204cbce6cdfae705451 Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Wed, 20 Mar 2024 03:01:05 +0000 Subject: [PATCH 128/222] Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-wpf build Microsoft.DotNet.Wpf.GitHub , Microsoft.DotNet.Wpf.ProjectTemplates , Microsoft.NET.Sdk.WindowsDesktop From Version 8.0.4-servicing.24169.8 -> To Version 8.0.4-servicing.24169.10 Dependency coherency updates Microsoft.Private.Winforms,Microsoft.Internal.Runtime.WindowsDesktop.Transport,Microsoft.Private.Winforms,Microsoft.NETCore.App.Ref,Microsoft.Private.Winforms,VS.Redist.Common.NetCore.SharedFramework.x64.8.0,Microsoft.Private.Winforms,Microsoft.NETCore.App.Runtime.win-x64,Microsoft.Dotnet.WinForms.ProjectTemplates,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,System.Drawing.Common From Version 8.0.4-servicing.24169.7 -> To Version 8.0.4-servicing.24169.11 (parent: Microsoft.DotNet.Wpf.GitHub --- NuGet.config | 8 ++++---- eng/Version.Details.xml | 34 +++++++++++++++++----------------- eng/Versions.props | 12 ++++++------ 3 files changed, 27 insertions(+), 27 deletions(-) diff --git a/NuGet.config b/NuGet.config index 1d260c524..913e699a9 100644 --- a/NuGet.config +++ b/NuGet.config @@ -9,10 +9,10 @@ - + - + @@ -25,10 +25,10 @@ - + - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index dd6d6cb65..1a1152c35 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,41 +1,41 @@ - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - a1a9440b48374c6d400287abbb56a4ac54d9b02f + 2d7eea252964e69be94cb9c847b371b23e4dd470 - + https://dev.azure.com/dnceng/internal/_git/dotnet-winforms - 1575d7056e8952d90f592553e9f00661bc94e81a + 41a4bd690229661e3ec74276ce3f93863b22435b - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - 29ccbeca12c26d35acfea8fd4033168fdc2edcb8 + ebbf01f54996755566db36e2e962ba6364da2ecc - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - 29ccbeca12c26d35acfea8fd4033168fdc2edcb8 + ebbf01f54996755566db36e2e962ba6364da2ecc https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - a1a9440b48374c6d400287abbb56a4ac54d9b02f + 2d7eea252964e69be94cb9c847b371b23e4dd470 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - a1a9440b48374c6d400287abbb56a4ac54d9b02f + 2d7eea252964e69be94cb9c847b371b23e4dd470 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - a1a9440b48374c6d400287abbb56a4ac54d9b02f + 2d7eea252964e69be94cb9c847b371b23e4dd470 - + https://dev.azure.com/dnceng/internal/_git/dotnet-winforms - 1575d7056e8952d90f592553e9f00661bc94e81a + 41a4bd690229661e3ec74276ce3f93863b22435b - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - 29ccbeca12c26d35acfea8fd4033168fdc2edcb8 + ebbf01f54996755566db36e2e962ba6364da2ecc https://dev.azure.com/dnceng/internal/_git/dotnet-runtime @@ -147,7 +147,7 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-winforms - 1575d7056e8952d90f592553e9f00661bc94e81a + 41a4bd690229661e3ec74276ce3f93863b22435b diff --git a/eng/Versions.props b/eng/Versions.props index 86aea139e..9f4e01b69 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -25,7 +25,7 @@ 6.2.4 - 8.0.4-servicing.24168.10 + 8.0.4-servicing.24169.9 8.0.4 8.0.4 8.0.0 @@ -61,15 +61,15 @@ 8.0.0 8.0.0 8.0.0 - 8.0.4-servicing.24168.10 + 8.0.4-servicing.24169.9 4.10.0 - 8.0.4-servicing.24169.7 - 8.0.4-servicing.24169.7 + 8.0.4-servicing.24169.11 + 8.0.4-servicing.24169.11 8.0.4 - 8.0.4-servicing.24169.8 - 8.0.4-servicing.24169.8 + 8.0.4-servicing.24169.10 + 8.0.4-servicing.24169.10 From 24a1a3122f2a60fb4a9f4f9f7e6c865477f5adde Mon Sep 17 00:00:00 2001 From: vseanreesermsft <78103370+vseanreesermsft@users.noreply.github.com> Date: Tue, 2 Apr 2024 14:11:20 -0700 Subject: [PATCH 129/222] Update branding to 8.0.5 (#4303) --- eng/Versions.props | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eng/Versions.props b/eng/Versions.props index 5915ec87b..e48f985a9 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -2,7 +2,7 @@ 8 0 - 4 + 5 servicing From ad329b2ed182ca723307397abe2dddf7dce3b412 Mon Sep 17 00:00:00 2001 From: Loni Tra Date: Tue, 2 Apr 2024 15:30:08 -0700 Subject: [PATCH 130/222] [release/8.0] Migrate to 1ES Pipeline Template (#4258) * convert to 1es pipeline template * re-add some conditionals and remove unused template * remove unused variables * remove unneeded tasks --- azure-pipelines-PR.yml | 60 +----- azure-pipelines.yml | 180 +++++++++--------- .../jobs/prepare-signed-artifacts-PR.yml | 63 ------ .../jobs/prepare-signed-artifacts.yml | 38 ++-- eng/pipelines/jobs/windows-build-PR.yml | 6 - eng/pipelines/jobs/windows-build.yml | 146 +++++++------- .../steps/upload-job-artifacts-PR.yml | 21 -- eng/pipelines/steps/upload-job-artifacts.yml | 39 ++-- 8 files changed, 189 insertions(+), 364 deletions(-) delete mode 100644 eng/pipelines/jobs/prepare-signed-artifacts-PR.yml diff --git a/azure-pipelines-PR.yml b/azure-pipelines-PR.yml index 25dae4a8b..07f8c7003 100644 --- a/azure-pipelines-PR.yml +++ b/azure-pipelines-PR.yml @@ -30,21 +30,9 @@ variables: - name: PostBuildSign value: true - # Set the target blob feed for package publish during official and validation builds. - - name: _DotNetArtifactsCategory - value: .NETCore - - name: _DotNetValidationArtifactsCategory - value: .NETCoreValidation - # Produce test-signed build for PR and Public builds - - ${{ if or(eq(variables['System.TeamProject'], 'public'), in(variables['Build.Reason'], 'PullRequest')) }}: - - name: SignType - value: test - - # Set up non-PR build from internal project - - ${{ if and(ne(variables['System.TeamProject'], 'public'), notin(variables['Build.Reason'], 'PullRequest')) }}: - - name: SignType - value: $[ coalesce(variables.OfficialSignType, 'real') ] + - name: SignType + value: test stages: - stage: Build @@ -67,47 +55,3 @@ stages: parameters: name: win_arm64 targetArchitecture: arm64 - -- ${{ if and(ne(variables['System.TeamProject'], 'public'), notin(variables['Build.Reason'], 'PullRequest')) }}: - - stage: PrepareForPublish - displayName: Prepare for Publish - dependsOn: Build - jobs: - # Prep artifacts: sign them and upload pipeline artifacts expected by stages-based publishing. - - template: /eng/pipelines/jobs/prepare-signed-artifacts-PR.yml - parameters: - PublishRidAgnosticPackagesFromJobName: win_x64 - # Publish to Build Asset Registry in order to generate the ReleaseConfigs artifact. - - template: /eng/common/templates/job/publish-build-assets.yml - parameters: - publishUsingPipelines: true - dependsOn: PrepareSignedArtifacts - pool: - name: NetCore1ESPool-Internal - demands: ImageOverride -equals windows.vs2022preview.amd64 - - # Stages-based publishing entry point - - template: /eng/common/templates/post-build/post-build.yml - parameters: - publishingInfraVersion: 3 - validateDependsOn: - - PrepareForPublish - enableSymbolValidation: false - enableSigningValidation: false - enableNugetValidation: false - enableSourceLinkValidation: false - - SDLValidationParameters: - enable: false - params: >- - -SourceToolsList @("policheck","credscan") - -TsaInstanceURL https://devdiv.visualstudio.com/ - -TsaProjectName DEVDIV - -TsaNotificationEmail wffteam@microsoft.com - -TsaCodebaseAdmin REDMOND\advolker - -TsaBugAreaPath "DevDiv\NET Fundamentals\WindowsDesktop" - -TsaIterationPath DevDiv - -TsaRepositoryName WindowsDesktop - -TsaCodebaseName WindowsDesktop - -TsaOnboard $True - -TsaPublish $True diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 704761628..b32b413ae 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -6,108 +6,106 @@ trigger: - release/* - internal/release/* - experimental/* - -pr: -- main -- release/* -- experimental/* - name: $(Date:yyyyMMdd)$(Rev:.r) variables: - - name: TeamName - value: dotnet-core-acquisition +- name: TeamName + value: dotnet-core-acquisition # Skip Running CI tests - - name: SkipTests - value: false +- name: SkipTests + value: false # Set Official Build Id - - name: OfficialBuildId - value: $(Build.BuildNumber) - - ${{ if or(startswith(variables['Build.SourceBranch'], 'refs/heads/release/'), startswith(variables['Build.SourceBranch'], 'refs/heads/internal/release/'), eq(variables['Build.Reason'], 'Manual')) }}: - - name: PostBuildSign - value: false - - ${{ else }}: - - name: PostBuildSign - value: true - - # Set the target blob feed for package publish during official and validation builds. - - name: _DotNetArtifactsCategory - value: .NETCore - - name: _DotNetValidationArtifactsCategory - value: .NETCoreValidation +- name: OfficialBuildId + value: $(Build.BuildNumber) +- ${{ if or(startswith(variables['Build.SourceBranch'], 'refs/heads/release/'), startswith(variables['Build.SourceBranch'], 'refs/heads/internal/release/'), eq(variables['Build.Reason'], 'Manual')) }}: + - name: PostBuildSign + value: false +- ${{ else }}: + - name: PostBuildSign + value: true - # Produce test-signed build for PR and Public builds - - ${{ if or(eq(variables['System.TeamProject'], 'public'), in(variables['Build.Reason'], 'PullRequest')) }}: - - name: SignType - value: test +# Set up non-PR build from internal project +- name: SignType + value: $[ coalesce(variables.OfficialSignType, 'real') ] - # Set up non-PR build from internal project - - ${{ if and(ne(variables['System.TeamProject'], 'public'), notin(variables['Build.Reason'], 'PullRequest')) }}: - - name: SignType - value: $[ coalesce(variables.OfficialSignType, 'real') ] +resources: + repositories: + - repository: 1ESPipelineTemplates + type: git + name: 1ESPipelineTemplates/1ESPipelineTemplates + ref: refs/tags/release +extends: + template: v1/1ES.Official.PipelineTemplate.yml@1ESPipelineTemplates + parameters: + featureFlags: + autoBaseline: true + pool: + name: NetCore1ESPool-Internal + image: 1es-windows-2022-pt + os: windows + customBuildTags: + - ES365AIMigrationTooling + stages: + - stage: Build + jobs: -stages: -- stage: Build - jobs: + # Windows x64 + - template: /eng/pipelines/jobs/windows-build.yml@self + parameters: + name: win_x64 + targetArchitecture: x64 - # Windows x64 - - template: /eng/pipelines/jobs/windows-build.yml - parameters: - name: win_x64 - targetArchitecture: x64 + # Windows x86 + - template: /eng/pipelines/jobs/windows-build.yml@self + parameters: + name: win_x86 + targetArchitecture: x86 - # Windows x86 - - template: /eng/pipelines/jobs/windows-build.yml - parameters: - name: win_x86 - targetArchitecture: x86 + # Windows arm64 + - template: /eng/pipelines/jobs/windows-build.yml@self + parameters: + name: win_arm64 + targetArchitecture: arm64 - # Windows arm64 - - template: /eng/pipelines/jobs/windows-build.yml - parameters: - name: win_arm64 - targetArchitecture: arm64 + - stage: PrepareForPublish + displayName: Prepare for Publish + dependsOn: Build + jobs: + # Prep artifacts: sign them and upload pipeline artifacts expected by stages-based publishing. + - template: /eng/pipelines/jobs/prepare-signed-artifacts.yml@self + parameters: + PublishRidAgnosticPackagesFromJobName: win_x64 + # Publish to Build Asset Registry in order to generate the ReleaseConfigs artifact. + - template: /eng/common/templates-official/job/publish-build-assets.yml@self + parameters: + publishUsingPipelines: true + dependsOn: PrepareSignedArtifacts + pool: + name: NetCore1ESPool-Internal + demands: ImageOverride -equals windows.vs2022preview.amd64 -- ${{ if and(ne(variables['System.TeamProject'], 'public'), notin(variables['Build.Reason'], 'PullRequest')) }}: - - stage: PrepareForPublish - displayName: Prepare for Publish - dependsOn: Build - jobs: - # Prep artifacts: sign them and upload pipeline artifacts expected by stages-based publishing. - - template: /eng/pipelines/jobs/prepare-signed-artifacts.yml - parameters: - PublishRidAgnosticPackagesFromJobName: win_x64 - # Publish to Build Asset Registry in order to generate the ReleaseConfigs artifact. - - template: /eng/common/templates/job/publish-build-assets.yml + # Stages-based publishing entry point + - template: /eng/common/templates-official/post-build/post-build.yml@self parameters: - publishUsingPipelines: true - dependsOn: PrepareSignedArtifacts - pool: - name: NetCore1ESPool-Internal - demands: ImageOverride -equals windows.vs2022preview.amd64 - - # Stages-based publishing entry point - - template: /eng/common/templates/post-build/post-build.yml - parameters: - publishingInfraVersion: 3 - validateDependsOn: - - PrepareForPublish - enableSymbolValidation: false - enableSigningValidation: false - enableNugetValidation: false - enableSourceLinkValidation: false + publishingInfraVersion: 3 + validateDependsOn: + - PrepareForPublish + enableSymbolValidation: false + enableSigningValidation: false + enableNugetValidation: false + enableSourceLinkValidation: false - SDLValidationParameters: - enable: false - params: >- - -SourceToolsList @("policheck","credscan") - -TsaInstanceURL https://devdiv.visualstudio.com/ - -TsaProjectName DEVDIV - -TsaNotificationEmail wffteam@microsoft.com - -TsaCodebaseAdmin REDMOND\advolker - -TsaBugAreaPath "DevDiv\NET Fundamentals\WindowsDesktop" - -TsaIterationPath DevDiv - -TsaRepositoryName WindowsDesktop - -TsaCodebaseName WindowsDesktop - -TsaOnboard $True - -TsaPublish $True + SDLValidationParameters: + enable: false + params: >- + -SourceToolsList @("policheck","credscan") + -TsaInstanceURL https://devdiv.visualstudio.com/ + -TsaProjectName DEVDIV + -TsaNotificationEmail wffteam@microsoft.com + -TsaCodebaseAdmin REDMOND\advolker + -TsaBugAreaPath "DevDiv\NET Fundamentals\WindowsDesktop" + -TsaIterationPath DevDiv + -TsaRepositoryName WindowsDesktop + -TsaCodebaseName WindowsDesktop + -TsaOnboard $True + -TsaPublish $True \ No newline at end of file diff --git a/eng/pipelines/jobs/prepare-signed-artifacts-PR.yml b/eng/pipelines/jobs/prepare-signed-artifacts-PR.yml deleted file mode 100644 index 4165403d6..000000000 --- a/eng/pipelines/jobs/prepare-signed-artifacts-PR.yml +++ /dev/null @@ -1,63 +0,0 @@ -parameters: - dependsOn: [] - PublishRidAgnosticPackagesFromJobName: '' - -jobs: -- job: PrepareSignedArtifacts - displayName: Prepare Signed Artifacts - dependsOn: ${{ parameters.dependsOn }} - pool: - name: NetCore1ESPool-Svc-Internal - demands: ImageOverride -equals windows.vs2019.amd64 - # Double the default timeout. - timeoutInMinutes: 120 - workspace: - clean: all - - steps: - - - ${{ if and(ne(variables['System.TeamProject'], 'public'), notin(variables['Build.Reason'], 'PullRequest')) }}: - - task: NuGetAuthenticate@0 - - - task: MicroBuildSigningPlugin@2 - displayName: Install MicroBuild plugin for Signing - inputs: - signType: $(SignType) - zipSources: false - feedSource: https://dnceng.pkgs.visualstudio.com/_packaging/MicroBuildToolset/nuget/v3/index.json - condition: and(succeeded(), - in(variables['SignType'], 'real', 'test')) - - - task: DownloadBuildArtifacts@0 - displayName: Download IntermediateUnsignedArtifacts - inputs: - artifactName: IntermediateUnsignedArtifacts - downloadPath: $(Build.SourcesDirectory)\artifacts\PackageDownload - - - script: > - build.cmd -ci - -projects $(Build.SourcesDirectory)\src\publish\prepare-artifacts.proj - -c Release - /p:PublishRidAgnosticPackagesFromJobName=${{ parameters.PublishRidAgnosticPackagesFromJobName }} - /p:SignType=$(SignType) - /p:DotNetSignType=$(SignType) - /bl:$(Build.SourcesDirectory)\prepare-artifacts.binlog - displayName: Prepare artifacts and upload to build - - - task: CopyFiles@2 - displayName: Copy Files to $(Build.StagingDirectory)\BuildLogs - inputs: - SourceFolder: '$(Build.SourcesDirectory)' - Contents: | - **/*.log - **/*.binlog - TargetFolder: '$(Build.StagingDirectory)\BuildLogs' - continueOnError: true - condition: succeededOrFailed() - - - task: PublishBuildArtifacts@1 - displayName: Publish Artifact BuildLogs - inputs: - PathtoPublish: '$(Build.StagingDirectory)\BuildLogs' - ArtifactName: Logs-PrepareSignedArtifacts - condition: succeededOrFailed() \ No newline at end of file diff --git a/eng/pipelines/jobs/prepare-signed-artifacts.yml b/eng/pipelines/jobs/prepare-signed-artifacts.yml index 4165403d6..9f9aea399 100644 --- a/eng/pipelines/jobs/prepare-signed-artifacts.yml +++ b/eng/pipelines/jobs/prepare-signed-artifacts.yml @@ -6,28 +6,27 @@ jobs: - job: PrepareSignedArtifacts displayName: Prepare Signed Artifacts dependsOn: ${{ parameters.dependsOn }} - pool: - name: NetCore1ESPool-Svc-Internal - demands: ImageOverride -equals windows.vs2019.amd64 # Double the default timeout. timeoutInMinutes: 120 workspace: clean: all - + templateContext: + outputs: + - output: pipelineArtifact + displayName: 'Publish Artifact BuildLogs' + condition: succeededOrFailed() + targetPath: '$(Build.StagingDirectory)\BuildLogs' + artifactName: Logs-PrepareSignedArtifacts steps: + - task: NuGetAuthenticate@1 - - ${{ if and(ne(variables['System.TeamProject'], 'public'), notin(variables['Build.Reason'], 'PullRequest')) }}: - - task: NuGetAuthenticate@0 - - - task: MicroBuildSigningPlugin@2 - displayName: Install MicroBuild plugin for Signing - inputs: - signType: $(SignType) - zipSources: false - feedSource: https://dnceng.pkgs.visualstudio.com/_packaging/MicroBuildToolset/nuget/v3/index.json - condition: and(succeeded(), - in(variables['SignType'], 'real', 'test')) - + - task: MicroBuildSigningPlugin@2 + displayName: Install MicroBuild plugin for Signing + inputs: + signType: $(SignType) + zipSources: false + feedSource: https://dnceng.pkgs.visualstudio.com/_packaging/MicroBuildToolset/nuget/v3/index.json + condition: and(succeeded(), in(variables['SignType'], 'real', 'test')) - task: DownloadBuildArtifacts@0 displayName: Download IntermediateUnsignedArtifacts inputs: @@ -53,11 +52,4 @@ jobs: **/*.binlog TargetFolder: '$(Build.StagingDirectory)\BuildLogs' continueOnError: true - condition: succeededOrFailed() - - - task: PublishBuildArtifacts@1 - displayName: Publish Artifact BuildLogs - inputs: - PathtoPublish: '$(Build.StagingDirectory)\BuildLogs' - ArtifactName: Logs-PrepareSignedArtifacts condition: succeededOrFailed() \ No newline at end of file diff --git a/eng/pipelines/jobs/windows-build-PR.yml b/eng/pipelines/jobs/windows-build-PR.yml index 2f2c06bf0..e01ef6c73 100644 --- a/eng/pipelines/jobs/windows-build-PR.yml +++ b/eng/pipelines/jobs/windows-build-PR.yml @@ -78,12 +78,6 @@ jobs: $(_InternalRuntimeDownloadArgs) displayName: Build - # Generate SBOM for the internal leg only - - ${{ if and(ne(variables['System.TeamProject'], 'public'), notin(variables['Build.Reason'], 'PullRequest')) }}: - - template: ..\..\common\templates\steps\generate-sbom.yml - parameters: - name: Generate_SBOM_${{ parameters.name }} - - template: /eng/pipelines/steps/upload-job-artifacts-PR.yml parameters: name: ${{ parameters.name }} \ No newline at end of file diff --git a/eng/pipelines/jobs/windows-build.yml b/eng/pipelines/jobs/windows-build.yml index 077204dc6..57bb3dc8c 100644 --- a/eng/pipelines/jobs/windows-build.yml +++ b/eng/pipelines/jobs/windows-build.yml @@ -6,84 +6,82 @@ parameters: timeoutInMinutes: 120 jobs: - - job: ${{ parameters.name }} - displayName: ${{ parameters.displayName }} - timeoutInMinutes: ${{ parameters.timeoutInMinutes }} - pool: - # Use a hosted pool when possible. - ${{ if eq(variables['System.TeamProject'], 'public') }}: - vmImage: 'windows-2019' - ${{ if ne(variables['System.TeamProject'], 'public') }}: - name: NetCore1ESPool-Internal - demands: ImageOverride -equals windows.vs2019.amd64 - strategy: - matrix: - Debug: - _BuildConfig: Debug - Release: - _BuildConfig: Release - workspace: - clean: all - variables: - - name: CommonMSBuildArgs - value: >- - -c $(_BuildConfig) - /p:OfficialBuildId=$(OfficialBuildId) - /p:TargetArchitecture=${{ parameters.targetArchitecture }} - /p:SkipTests=${{ parameters.skipTests }} - - name: MsbuildSigningArguments - value: /p:DotNetSignType=$(SignType) - - name: TargetArchitecture - value: ${{ parameters.targetArchitecture }} - - ${{ if eq(variables['System.TeamProject'], 'public') }}: - - name: _InternalRuntimeDownloadArgs - value: '' - - ${{ if ne(variables['System.TeamProject'], 'public') }}: - - group: DotNet-MSRC-Storage - - name: _InternalRuntimeDownloadArgs - value: >- - /p:DotNetRuntimeSourceFeed=https://dotnetclimsrc.blob.core.windows.net/dotnet - /p:DotNetRuntimeSourceFeedKey=$(dotnetclimsrc-read-sas-token-base64) +- job: ${{ parameters.name }} + displayName: ${{ parameters.displayName }} + timeoutInMinutes: ${{ parameters.timeoutInMinutes }} + strategy: + matrix: + Debug: + _BuildConfig: Debug + Release: + _BuildConfig: Release + workspace: + clean: all + variables: + - name: CommonMSBuildArgs + value: >- + -c $(_BuildConfig) + /p:OfficialBuildId=$(OfficialBuildId) + /p:TargetArchitecture=${{ parameters.targetArchitecture }} + /p:SkipTests=${{ parameters.skipTests }} + - name: MsbuildSigningArguments + value: /p:DotNetSignType=$(SignType) + - name: TargetArchitecture + value: ${{ parameters.targetArchitecture }} + - group: DotNet-MSRC-Storage + - name: _InternalRuntimeDownloadArgs + value: >- + /p:DotNetRuntimeSourceFeed=https://dotnetclimsrc.blob.core.windows.net/dotnet + /p:DotNetRuntimeSourceFeedKey=$(dotnetclimsrc-read-sas-token-base64) + templateContext: + outputs: + - output: buildArtifacts + displayName: 'Publish Artifacts' + condition: and(succeeded(), eq(variables._BuildConfig, 'Release')) + PathtoPublish: '$(Build.StagingDirectory)/Artifacts' + ArtifactName: IntermediateUnsignedArtifacts + ArtifactType: container + - output: pipelineArtifact + displayName: 'Publish BuildLogs' + condition: succeededOrFailed() + targetPath: '$(Build.StagingDirectory)/BuildLogs' + artifactName: Logs-${{ parameters.name }}-$(_BuildConfig) + steps: + - task: NuGetAuthenticate@1 - steps: - - ${{ if ne(variables['System.TeamProject'], 'public') }}: - - task: NuGetAuthenticate@0 + - task: PowerShell@2 + displayName: Setup Private Feeds Credentials + inputs: + filePath: $(Build.SourcesDirectory)/eng/common/SetupNugetSources.ps1 + arguments: -ConfigFile $(Build.SourcesDirectory)/NuGet.config -Password $Env:Token + env: + Token: $(dn-bot-dnceng-artifact-feeds-rw) - - task: PowerShell@2 - displayName: Setup Private Feeds Credentials - inputs: - filePath: $(Build.SourcesDirectory)/eng/common/SetupNugetSources.ps1 - arguments: -ConfigFile $(Build.SourcesDirectory)/NuGet.config -Password $Env:Token - env: - Token: $(dn-bot-dnceng-artifact-feeds-rw) - - - task: MicroBuildSigningPlugin@2 - displayName: Install MicroBuild plugin for Signing - inputs: - signType: $(SignType) - zipSources: false - feedSource: https://dnceng.pkgs.visualstudio.com/_packaging/MicroBuildToolset/nuget/v3/index.json - continueOnError: false - condition: and(succeeded(), - in(variables['SignType'], 'real', 'test')) + - task: MicroBuildSigningPlugin@2 + displayName: Install MicroBuild plugin for Signing + inputs: + signType: $(SignType) + zipSources: false + feedSource: https://dnceng.pkgs.visualstudio.com/_packaging/MicroBuildToolset/nuget/v3/index.json + continueOnError: false + condition: and(succeeded(), in(variables['SignType'], 'real', 'test')) # NuGet's http cache lasts 30 minutes. If we're on a static machine, this may interfere with # auto-update PRs by preventing the CI build from fetching the new version. Delete the cache. - - powershell: Remove-Item -Recurse -ErrorAction Ignore "$env:LocalAppData\NuGet\v3-cache" - displayName: Clear NuGet http cache (if exists) + - powershell: Remove-Item -Recurse -ErrorAction Ignore "$env:LocalAppData\NuGet\v3-cache" + displayName: Clear NuGet http cache (if exists) - - script: >- - build.cmd -ci -test - $(CommonMSBuildArgs) - $(MsbuildSigningArguments) - $(_InternalRuntimeDownloadArgs) - displayName: Build + - script: >- + build.cmd -ci -test + $(CommonMSBuildArgs) + $(MsbuildSigningArguments) + $(_InternalRuntimeDownloadArgs) + displayName: Build - # Generate SBOM for the internal leg only - - ${{ if and(ne(variables['System.TeamProject'], 'public'), notin(variables['Build.Reason'], 'PullRequest')) }}: - - template: ..\..\common\templates\steps\generate-sbom.yml - parameters: - name: Generate_SBOM_${{ parameters.name }} + # Generate SBOM + - template: /eng/common/templates-official/steps/generate-sbom.yml@self + parameters: + name: Generate_SBOM_${{ parameters.name }} - - template: /eng/pipelines/steps/upload-job-artifacts.yml - parameters: - name: ${{ parameters.name }} \ No newline at end of file + - template: /eng/pipelines/steps/upload-job-artifacts.yml@self + parameters: + name: ${{ parameters.name }} \ No newline at end of file diff --git a/eng/pipelines/steps/upload-job-artifacts-PR.yml b/eng/pipelines/steps/upload-job-artifacts-PR.yml index efc02a202..83cfaea11 100644 --- a/eng/pipelines/steps/upload-job-artifacts-PR.yml +++ b/eng/pipelines/steps/upload-job-artifacts-PR.yml @@ -2,27 +2,6 @@ parameters: name: '' steps: -# Upload build outputs as build artifacts only if internal and not PR, to save storage space. -- ${{ if and(ne(variables['System.TeamProject'], 'public'), notin(variables['Build.Reason'], 'PullRequest')) }}: - - task: CopyFiles@2 - displayName: Prepare job-specific Artifacts subdirectory - inputs: - SourceFolder: '$(Build.SourcesDirectory)/artifacts/packages/$(_BuildConfig)' - Contents: | - Shipping/**/* - NonShipping/**/* - TargetFolder: '$(Build.StagingDirectory)/Artifacts/${{ parameters.name }}' - CleanTargetFolder: true - condition: and(succeeded(), eq(variables._BuildConfig, 'Release')) - - - task: PublishBuildArtifacts@1 - displayName: Publish Artifacts - inputs: - pathToPublish: '$(Build.StagingDirectory)/Artifacts' - artifactName: IntermediateUnsignedArtifacts - artifactType: container - condition: and(succeeded(), eq(variables._BuildConfig, 'Release')) - # Always upload test outputs and build logs. - task: PublishTestResults@2 displayName: Publish Test Results diff --git a/eng/pipelines/steps/upload-job-artifacts.yml b/eng/pipelines/steps/upload-job-artifacts.yml index efc02a202..368969596 100644 --- a/eng/pipelines/steps/upload-job-artifacts.yml +++ b/eng/pipelines/steps/upload-job-artifacts.yml @@ -2,26 +2,17 @@ parameters: name: '' steps: -# Upload build outputs as build artifacts only if internal and not PR, to save storage space. -- ${{ if and(ne(variables['System.TeamProject'], 'public'), notin(variables['Build.Reason'], 'PullRequest')) }}: - - task: CopyFiles@2 - displayName: Prepare job-specific Artifacts subdirectory - inputs: - SourceFolder: '$(Build.SourcesDirectory)/artifacts/packages/$(_BuildConfig)' - Contents: | - Shipping/**/* - NonShipping/**/* - TargetFolder: '$(Build.StagingDirectory)/Artifacts/${{ parameters.name }}' - CleanTargetFolder: true - condition: and(succeeded(), eq(variables._BuildConfig, 'Release')) - - - task: PublishBuildArtifacts@1 - displayName: Publish Artifacts - inputs: - pathToPublish: '$(Build.StagingDirectory)/Artifacts' - artifactName: IntermediateUnsignedArtifacts - artifactType: container - condition: and(succeeded(), eq(variables._BuildConfig, 'Release')) +# Upload build outputs as build artifacts. +- task: CopyFiles@2 + displayName: Prepare job-specific Artifacts subdirectory + inputs: + SourceFolder: '$(Build.SourcesDirectory)/artifacts/packages/$(_BuildConfig)' + Contents: | + Shipping/**/* + NonShipping/**/* + TargetFolder: '$(Build.StagingDirectory)/Artifacts/${{ parameters.name }}' + CleanTargetFolder: true + condition: and(succeeded(), eq(variables._BuildConfig, 'Release')) # Always upload test outputs and build logs. - task: PublishTestResults@2 @@ -45,12 +36,4 @@ steps: TargetFolder: '$(Build.StagingDirectory)/BuildLogs' CleanTargetFolder: true continueOnError: true - condition: succeededOrFailed() - -- task: PublishBuildArtifacts@1 - displayName: Publish BuildLogs - inputs: - PathtoPublish: '$(Build.StagingDirectory)/BuildLogs' - ArtifactName: Logs-${{ parameters.name }}-$(_BuildConfig) - continueOnError: true condition: succeededOrFailed() \ No newline at end of file From 66c7a0fa23cc02d97edeffc56fc0c592168de35f Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Wed, 10 Apr 2024 18:52:02 +0000 Subject: [PATCH 131/222] [release/8.0] Update dependencies from dotnet/arcade (#4322) [release/8.0] Update dependencies from dotnet/arcade --- NuGet.config | 6 +++-- eng/Version.Details.xml | 24 +++++++++---------- eng/Versions.props | 8 +++---- eng/common/native/init-compiler.sh | 2 +- eng/common/templates-official/job/job.yml | 3 ++- .../templates-official/job/onelocbuild.yml | 2 +- .../job/publish-build-assets.yml | 4 ++-- .../templates-official/job/source-build.yml | 2 +- .../job/source-index-stage1.yml | 2 +- .../post-build/post-build.yml | 10 ++++---- .../steps/component-governance.yml | 2 +- .../variables/pool-providers.yml | 2 +- .../templates/steps/component-governance.yml | 2 +- global.json | 4 ++-- 14 files changed, 38 insertions(+), 35 deletions(-) diff --git a/NuGet.config b/NuGet.config index 913e699a9..1104fc96b 100644 --- a/NuGet.config +++ b/NuGet.config @@ -9,10 +9,11 @@ - + + @@ -25,9 +26,10 @@ - + + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 1a1152c35..180318926 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -151,29 +151,29 @@ - + https://github.com/dotnet/arcade - f311667e0587f19c3fa9553a909975662107a351 + 188340e12c0a372b1681ad6a5e72c608021efdba - + https://github.com/dotnet/arcade - f311667e0587f19c3fa9553a909975662107a351 + 188340e12c0a372b1681ad6a5e72c608021efdba - + https://github.com/dotnet/arcade - f311667e0587f19c3fa9553a909975662107a351 + 188340e12c0a372b1681ad6a5e72c608021efdba - + https://github.com/dotnet/arcade - f311667e0587f19c3fa9553a909975662107a351 + 188340e12c0a372b1681ad6a5e72c608021efdba - + https://github.com/dotnet/arcade - f311667e0587f19c3fa9553a909975662107a351 + 188340e12c0a372b1681ad6a5e72c608021efdba - + https://github.com/dotnet/arcade - f311667e0587f19c3fa9553a909975662107a351 + 188340e12c0a372b1681ad6a5e72c608021efdba diff --git a/eng/Versions.props b/eng/Versions.props index 4260ae3fc..802604d95 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -12,10 +12,10 @@ - 8.0.0-beta.24165.4 - 8.0.0-beta.24165.4 - 8.0.0-beta.24165.4 - 8.0.0-beta.24165.4 + 8.0.0-beta.24204.3 + 8.0.0-beta.24204.3 + 8.0.0-beta.24204.3 + 8.0.0-beta.24204.3 4.5.0 4.8.6 diff --git a/eng/common/native/init-compiler.sh b/eng/common/native/init-compiler.sh index f5c1ec7ea..2d5660642 100644 --- a/eng/common/native/init-compiler.sh +++ b/eng/common/native/init-compiler.sh @@ -63,7 +63,7 @@ if [ -z "$CLR_CC" ]; then # Set default versions if [ -z "$majorVersion" ]; then # note: gcc (all versions) and clang versions higher than 6 do not have minor version in file name, if it is zero. - if [ "$compiler" = "clang" ]; then versions="17 16 15 14 13 12 11 10 9 8 7 6.0 5.0 4.0 3.9 3.8 3.7 3.6 3.5" + if [ "$compiler" = "clang" ]; then versions="18 17 16 15 14 13 12 11 10 9 8 7 6.0 5.0 4.0 3.9 3.8 3.7 3.6 3.5" elif [ "$compiler" = "gcc" ]; then versions="13 12 11 10 9 8 7 6 5 4.9"; fi for version in $versions; do diff --git a/eng/common/templates-official/job/job.yml b/eng/common/templates-official/job/job.yml index a2709d105..1f035fee7 100644 --- a/eng/common/templates-official/job/job.yml +++ b/eng/common/templates-official/job/job.yml @@ -128,7 +128,7 @@ jobs: - ${{ if and(eq(parameters.runAsPublic, 'false'), ne(variables['System.TeamProject'], 'public'), notin(variables['Build.Reason'], 'PullRequest')) }}: - ${{ if eq(parameters.enableMicrobuild, 'true') }}: - - task: MicroBuildSigningPlugin@3 + - task: MicroBuildSigningPlugin@4 displayName: Install MicroBuild plugin inputs: signType: $(_SignType) @@ -136,6 +136,7 @@ jobs: feedSource: https://dnceng.pkgs.visualstudio.com/_packaging/MicroBuildToolset/nuget/v3/index.json env: TeamName: $(_TeamName) + MicroBuildOutputFolderOverride: '$(Agent.TempDirectory)' continueOnError: ${{ parameters.continueOnError }} condition: and(succeeded(), in(variables['_SignType'], 'real', 'test'), eq(variables['Agent.Os'], 'Windows_NT')) diff --git a/eng/common/templates-official/job/onelocbuild.yml b/eng/common/templates-official/job/onelocbuild.yml index ba9ba4930..52b4d05d3 100644 --- a/eng/common/templates-official/job/onelocbuild.yml +++ b/eng/common/templates-official/job/onelocbuild.yml @@ -56,7 +56,7 @@ jobs: # If it's not devdiv, it's dnceng ${{ if ne(variables['System.TeamProject'], 'DevDiv') }}: name: $(DncEngInternalBuildPool) - image: 1es-windows-2022-pt + image: 1es-windows-2022 os: windows steps: diff --git a/eng/common/templates-official/job/publish-build-assets.yml b/eng/common/templates-official/job/publish-build-assets.yml index 53138622f..589ac80a1 100644 --- a/eng/common/templates-official/job/publish-build-assets.yml +++ b/eng/common/templates-official/job/publish-build-assets.yml @@ -60,8 +60,8 @@ jobs: os: windows # If it's not devdiv, it's dnceng ${{ if ne(variables['System.TeamProject'], 'DevDiv') }}: - name: $(DncEngInternalBuildPool) - image: 1es-windows-2022-pt + name: NetCore1ESPool-Publishing-Internal + image: windows.vs2019.amd64 os: windows steps: - ${{ if and(eq(parameters.runAsPublic, 'false'), ne(variables['System.TeamProject'], 'public'), notin(variables['Build.Reason'], 'PullRequest')) }}: diff --git a/eng/common/templates-official/job/source-build.yml b/eng/common/templates-official/job/source-build.yml index 8aba3b44b..f193dfbe2 100644 --- a/eng/common/templates-official/job/source-build.yml +++ b/eng/common/templates-official/job/source-build.yml @@ -52,7 +52,7 @@ jobs: ${{ 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-pt + image: 1es-mariner-2 os: linux ${{ if ne(parameters.platform.pool, '') }}: diff --git a/eng/common/templates-official/job/source-index-stage1.yml b/eng/common/templates-official/job/source-index-stage1.yml index 4b6337391..f0513aee5 100644 --- a/eng/common/templates-official/job/source-index-stage1.yml +++ b/eng/common/templates-official/job/source-index-stage1.yml @@ -33,7 +33,7 @@ jobs: demands: ImageOverride -equals windows.vs2019.amd64.open ${{ if eq(variables['System.TeamProject'], 'internal') }}: name: $(DncEngInternalBuildPool) - image: 1es-windows-2022-pt + image: windows.vs2022.amd64 os: windows steps: diff --git a/eng/common/templates-official/post-build/post-build.yml b/eng/common/templates-official/post-build/post-build.yml index 5c98fe1c0..da1f40958 100644 --- a/eng/common/templates-official/post-build/post-build.yml +++ b/eng/common/templates-official/post-build/post-build.yml @@ -110,7 +110,7 @@ stages: # If it's not devdiv, it's dnceng ${{ else }}: name: $(DncEngInternalBuildPool) - image: 1es-windows-2022-pt + image: 1es-windows-2022 os: windows steps: @@ -150,7 +150,7 @@ stages: # If it's not devdiv, it's dnceng ${{ else }}: name: $(DncEngInternalBuildPool) - image: 1es-windows-2022-pt + image: 1es-windows-2022 os: windows steps: - template: setup-maestro-vars.yml @@ -208,7 +208,7 @@ stages: # If it's not devdiv, it's dnceng ${{ else }}: name: $(DncEngInternalBuildPool) - image: 1es-windows-2022-pt + image: 1es-windows-2022 os: windows steps: - template: setup-maestro-vars.yml @@ -261,8 +261,8 @@ stages: os: windows # If it's not devdiv, it's dnceng ${{ else }}: - name: $(DncEngInternalBuildPool) - image: 1es-windows-2022-pt + name: NetCore1ESPool-Publishing-Internal + image: windows.vs2019.amd64 os: windows steps: - template: setup-maestro-vars.yml diff --git a/eng/common/templates-official/steps/component-governance.yml b/eng/common/templates-official/steps/component-governance.yml index 0ecec47b0..cbba05967 100644 --- a/eng/common/templates-official/steps/component-governance.yml +++ b/eng/common/templates-official/steps/component-governance.yml @@ -4,7 +4,7 @@ parameters: steps: - ${{ if eq(parameters.disableComponentGovernance, 'true') }}: - - script: "echo ##vso[task.setvariable variable=skipComponentGovernanceDetection]true" + - script: echo "##vso[task.setvariable variable=skipComponentGovernanceDetection]true" displayName: Set skipComponentGovernanceDetection variable - ${{ if ne(parameters.disableComponentGovernance, 'true') }}: - task: ComponentGovernanceComponentDetection@0 diff --git a/eng/common/templates-official/variables/pool-providers.yml b/eng/common/templates-official/variables/pool-providers.yml index beab7d1bf..1f308b24e 100644 --- a/eng/common/templates-official/variables/pool-providers.yml +++ b/eng/common/templates-official/variables/pool-providers.yml @@ -23,7 +23,7 @@ # # pool: # name: $(DncEngInternalBuildPool) -# image: 1es-windows-2022-pt +# image: 1es-windows-2022 variables: # Coalesce the target and source branches so we know when a PR targets a release branch diff --git a/eng/common/templates/steps/component-governance.yml b/eng/common/templates/steps/component-governance.yml index 0ecec47b0..cbba05967 100644 --- a/eng/common/templates/steps/component-governance.yml +++ b/eng/common/templates/steps/component-governance.yml @@ -4,7 +4,7 @@ parameters: steps: - ${{ if eq(parameters.disableComponentGovernance, 'true') }}: - - script: "echo ##vso[task.setvariable variable=skipComponentGovernanceDetection]true" + - script: echo "##vso[task.setvariable variable=skipComponentGovernanceDetection]true" displayName: Set skipComponentGovernanceDetection variable - ${{ if ne(parameters.disableComponentGovernance, 'true') }}: - task: ComponentGovernanceComponentDetection@0 diff --git a/global.json b/global.json index df7568b26..ecb8a32e7 100644 --- a/global.json +++ b/global.json @@ -3,8 +3,8 @@ "dotnet": "8.0.101" }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "8.0.0-beta.24165.4", - "Microsoft.DotNet.SharedFramework.Sdk": "8.0.0-beta.24165.4", + "Microsoft.DotNet.Arcade.Sdk": "8.0.0-beta.24204.3", + "Microsoft.DotNet.SharedFramework.Sdk": "8.0.0-beta.24204.3", "Microsoft.Build.NoTargets": "3.7.0", "Microsoft.Build.Traversal": "3.4.0" } From 6139b3281c5dd72654ae5edcbeb6b7e42019e7c1 Mon Sep 17 00:00:00 2001 From: DotNet Bot Date: Tue, 16 Apr 2024 23:01:11 +0000 Subject: [PATCH 132/222] Merged PR 38995: [internal/release/8.0] Update dependencies from dnceng/internal/dotnet-wpf This pull request updates the following dependencies [marker]: <> (Begin:Coherency Updates) ## Coherency Updates The following updates ensure that dependencies with a *CoherentParentDependency* attribute were produced in a build used as input to the parent dependency's build. See [Dependency Description Format](https://github.com/dotnet/arcade/blob/master/Documentation/DependencyDescriptionFormat.md#dependency-description-overview) [DependencyUpdate]: <> (Begin) - **Coherency Updates**: - **Microsoft.Private.Winforms**: from 8.0.4-servicing.24169.11 to 8.0.5-servicing.24216.11 (parent: Microsoft.DotNet.Wpf.GitHub) - **Microsoft.Internal.Runtime.WindowsDesktop.Transport**: from 8.0.4-servicing.24169.9 to 8.0.5-servicing.24215.24 (parent: Microsoft.Private.Winforms) - **Microsoft.Private.Winforms**: from 8.0.4-servicing.24169.11 to 8.0.5-servicing.24216.11 (parent: Microsoft.DotNet.Wpf.GitHub) - **Microsoft.NETCore.App.Ref**: from 8.0.4 to 8.0.5 (parent: Microsoft.Private.Winforms) - **Microsoft.Private.Winforms**: from 8.0.4-servicing.24169.11 to 8.0.5-servicing.24216.11 (parent: Microsoft.DotNet.Wpf.GitHub) - **VS.Redist.Common.NetCore.SharedFramework.x64.8.0**: from 8.0.4-servicing.24169.9 to 8.0.5-servicing.24215.24 (parent: Microsoft.Private.Winforms) - **Microsoft.Private.Winforms**: from 8.0.4-servicing.24169.11 to 8.0.5-servicing.24216.11 (parent: Microsoft.DotNet.Wpf.GitHub) - **Microsoft.NETCore.App.Runtime.win-x64**: from 8.0.4 to 8.0.5 (parent: Microsoft.Private.Winforms) - **Microsoft.Dotnet.WinForms.ProjectTemplates**: from 8.0.4-servicing.24169.11 to 8.0.5-servicing.24216.11 (parent: Microsoft.DotNet.Wpf.GitHub) - **Microsoft.Private.Winforms**: from 8.0.4-servicing.24169.11 to 8.0.5-servicing.24216.11 (parent: Microsoft.DotNet.Wpf.GitHub) - **Microsoft.Private.Winforms**: from 8.0.4-servicing.24169.11 to 8.0.5-servicing.24216.11 (parent: Microsoft.DotNet.Wpf.GitHub) - **Microsoft.Private.Winforms**: from 8.0.4-servicing.24169.11 to 8.0.5-servicing.24216.11 (parent: Microsoft.DotNet.Wpf.GitHub) - **Microsoft.Private.Winforms**: from 8.0.4-servicing.24169.11 to 8.0.5-servicing.24216.11 (parent: Microsoft.DotNet.Wpf.GitHub) - **Microsoft.Private.Winforms**: from 8.0.4-servicing.24169.11 to 8.0.5-servicing.24216.11 (parent: Microsoft.DotNet.Wpf.GitHub) - **Microsoft.Private.Winforms**: from 8.0.4-servicing.24169.11 to 8.0.5-servicing.24216.11 (parent: Microsoft.DotNet.Wpf.GitHub) - **Microsoft.Private.Winforms**: from 8.0.4-servicing.24169.11 to 8.0.5-servicing.24216.11 (parent: Microsoft.DotNet.Wpf.GitHub) - **Microsoft.Private.Winforms**: from 8.0.4-servicing.24169.11 to 8.0.5-servicing.24216.11 (parent: Microsoft.DotNet.Wpf.GitHub) - **Microsoft.Private.Winforms**: from 8.0.4-servicing.24169.11 to 8.0.5-servicing.24216.11 (parent: Microsoft.DotNet.Wpf.GitHub) - **Microsoft.Private.Winforms**: from 8.0.4-servicing.24169.11 to 8.0.5-servicing.24216.11 (parent: Micr... --- NuGet.config | 10 ++++------ eng/Version.Details.xml | 44 ++++++++++++++++++++--------------------- eng/Versions.props | 20 +++++++++---------- 3 files changed, 36 insertions(+), 38 deletions(-) diff --git a/NuGet.config b/NuGet.config index 1104fc96b..99e50cdf7 100644 --- a/NuGet.config +++ b/NuGet.config @@ -9,11 +9,10 @@ + - - - + @@ -26,11 +25,10 @@ + - - - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 180318926..b6506ce60 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,41 +1,41 @@ - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 2d7eea252964e69be94cb9c847b371b23e4dd470 + dfd075b97471bd97ea70066a299d1fe92af90352 - + https://dev.azure.com/dnceng/internal/_git/dotnet-winforms - 41a4bd690229661e3ec74276ce3f93863b22435b + d27f6ffa6ece96c4242bbac3fcd6e30bac2b5a09 - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - ebbf01f54996755566db36e2e962ba6364da2ecc + cc1110ec8199d855f62b16511d2b4b08f46de853 - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - ebbf01f54996755566db36e2e962ba6364da2ecc + cc1110ec8199d855f62b16511d2b4b08f46de853 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 2d7eea252964e69be94cb9c847b371b23e4dd470 + dfd075b97471bd97ea70066a299d1fe92af90352 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 2d7eea252964e69be94cb9c847b371b23e4dd470 + dfd075b97471bd97ea70066a299d1fe92af90352 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 2d7eea252964e69be94cb9c847b371b23e4dd470 + dfd075b97471bd97ea70066a299d1fe92af90352 - + https://dev.azure.com/dnceng/internal/_git/dotnet-winforms - 41a4bd690229661e3ec74276ce3f93863b22435b + d27f6ffa6ece96c4242bbac3fcd6e30bac2b5a09 - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - ebbf01f54996755566db36e2e962ba6364da2ecc + cc1110ec8199d855f62b16511d2b4b08f46de853 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime @@ -113,9 +113,9 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime 5535e31a712343a63f5d7d796cd874e563e5ac14 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 5535e31a712343a63f5d7d796cd874e563e5ac14 + dfd075b97471bd97ea70066a299d1fe92af90352 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime @@ -145,9 +145,9 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime 5535e31a712343a63f5d7d796cd874e563e5ac14 - + https://dev.azure.com/dnceng/internal/_git/dotnet-winforms - 41a4bd690229661e3ec74276ce3f93863b22435b + d27f6ffa6ece96c4242bbac3fcd6e30bac2b5a09 diff --git a/eng/Versions.props b/eng/Versions.props index 802604d95..51f7aaede 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -25,9 +25,9 @@ 6.2.4 - 8.0.4-servicing.24169.9 - 8.0.4 - 8.0.4 + 8.0.5-servicing.24215.24 + 8.0.5 + 8.0.5 8.0.0 5.0.0 8.0.0 @@ -53,7 +53,7 @@ 5.0.0 8.0.0 8.0.0 - 8.0.0 + 8.0.1 8.0.0 5.0.0 8.0.0 @@ -61,15 +61,15 @@ 8.0.0 8.0.0 8.0.0 - 8.0.4-servicing.24169.9 + 8.0.5-servicing.24215.24 4.10.0 - 8.0.4-servicing.24169.11 - 8.0.4-servicing.24169.11 - 8.0.4 + 8.0.5-servicing.24216.11 + 8.0.5-servicing.24216.11 + 8.0.5 - 8.0.4-servicing.24169.10 - 8.0.4-servicing.24169.10 + 8.0.5-servicing.24216.5 + 8.0.5-servicing.24216.5 From dda23bbe00c4a4bfdd3732783f0cce37c11a4f40 Mon Sep 17 00:00:00 2001 From: DotNet Bot Date: Wed, 17 Apr 2024 21:32:20 +0000 Subject: [PATCH 133/222] Merged PR 39051: [internal/release/8.0] Update dependencies from dnceng/internal/dotnet-wpf This pull request updates the following dependencies [marker]: <> (Begin:Coherency Updates) ## Coherency Updates The following updates ensure that dependencies with a *CoherentParentDependency* attribute were produced in a build used as input to the parent dependency's build. See [Dependency Description Format](https://github.com/dotnet/arcade/blob/master/Documentation/DependencyDescriptionFormat.md#dependency-description-overview) [DependencyUpdate]: <> (Begin) - **Coherency Updates**: - **Microsoft.Private.Winforms**: from 8.0.5-servicing.24216.11 to 8.0.5-servicing.24217.4 (parent: Microsoft.DotNet.Wpf.GitHub) - **Microsoft.Internal.Runtime.WindowsDesktop.Transport**: from 8.0.5-servicing.24215.24 to 8.0.5-servicing.24216.15 (parent: Microsoft.Private.Winforms) - **Microsoft.Private.Winforms**: from 8.0.5-servicing.24216.11 to 8.0.5-servicing.24217.4 (parent: Microsoft.DotNet.Wpf.GitHub) - **Microsoft.NETCore.App.Ref**: from 8.0.5 to 8.0.5 (parent: Microsoft.Private.Winforms) - **Microsoft.Private.Winforms**: from 8.0.5-servicing.24216.11 to 8.0.5-servicing.24217.4 (parent: Microsoft.DotNet.Wpf.GitHub) - **VS.Redist.Common.NetCore.SharedFramework.x64.8.0**: from 8.0.5-servicing.24215.24 to 8.0.5-servicing.24216.15 (parent: Microsoft.Private.Winforms) - **Microsoft.Private.Winforms**: from 8.0.5-servicing.24216.11 to 8.0.5-servicing.24217.4 (parent: Microsoft.DotNet.Wpf.GitHub) - **Microsoft.NETCore.App.Runtime.win-x64**: from 8.0.5 to 8.0.5 (parent: Microsoft.Private.Winforms) - **Microsoft.Dotnet.WinForms.ProjectTemplates**: from 8.0.5-servicing.24216.11 to 8.0.5-servicing.24217.4 (parent: Microsoft.DotNet.Wpf.GitHub) - **Microsoft.Private.Winforms**: from 8.0.5-servicing.24216.11 to 8.0.5-servicing.24217.4 (parent: Microsoft.DotNet.Wpf.GitHub) - **Microsoft.Private.Winforms**: from 8.0.5-servicing.24216.11 to 8.0.5-servicing.24217.4 (parent: Microsoft.DotNet.Wpf.GitHub) - **Microsoft.Private.Winforms**: from 8.0.5-servicing.24216.11 to 8.0.5-servicing.24217.4 (parent: Microsoft.DotNet.Wpf.GitHub) - **Microsoft.Private.Winforms**: from 8.0.5-servicing.24216.11 to 8.0.5-servicing.24217.4 (parent: Microsoft.DotNet.Wpf.GitHub) - **Microsoft.Private.Winforms**: from 8.0.5-servicing.24216.11 to 8.0.5-servicing.24217.4 (parent: Microsoft.DotNet.Wpf.GitHub) - **Microsoft.Private.Winforms**: from 8.0.5-servicing.24216.11 to 8.0.5-servicing.24217.4 (parent: Microsoft.DotNet.Wpf.GitHub) - **Microsoft.Private.Winforms**: from 8.0.5-servicing.24216.11 to 8.0.5-servicing.24217.4 (parent: Microsoft.DotNet.Wpf.GitHub) - **Microsoft.Private.Winforms**: from 8.0.5-servicing.24216.11 to 8.0.5-servicing.24217.4 (parent: Microsoft.DotNet.Wpf.GitHub) - **Microsoft.Private.Winforms**: from 8.0.5-servicing.24216.11 to 8.0.5-servicing.24217.4 (parent: Microsoft.DotNet.Wpf.GitHub) - **Microsoft.Private.Winforms**: from 8.0.5-servicing.24216.11 to 8.0.5-servicing.24217.4 (parent: Microsoft.DotNet.... --- NuGet.config | 8 ++++---- eng/Version.Details.xml | 36 ++++++++++++++++++------------------ eng/Versions.props | 12 ++++++------ 3 files changed, 28 insertions(+), 28 deletions(-) diff --git a/NuGet.config b/NuGet.config index 99e50cdf7..e3c2127b9 100644 --- a/NuGet.config +++ b/NuGet.config @@ -9,10 +9,10 @@ - + - + @@ -25,10 +25,10 @@ - + - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index b6506ce60..69fd61ec3 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,41 +1,41 @@ - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - dfd075b97471bd97ea70066a299d1fe92af90352 + 087e15321bb712ef6fe8b0ba6f8bd12facf92629 - + https://dev.azure.com/dnceng/internal/_git/dotnet-winforms - d27f6ffa6ece96c4242bbac3fcd6e30bac2b5a09 + 6c37c986b6c8fc0669b38a03a03445a75b8227a6 - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - cc1110ec8199d855f62b16511d2b4b08f46de853 + b5af29a8f41f880f38fd015c6bcb7aeb816fcef6 - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - cc1110ec8199d855f62b16511d2b4b08f46de853 + b5af29a8f41f880f38fd015c6bcb7aeb816fcef6 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - dfd075b97471bd97ea70066a299d1fe92af90352 + 087e15321bb712ef6fe8b0ba6f8bd12facf92629 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - dfd075b97471bd97ea70066a299d1fe92af90352 + 087e15321bb712ef6fe8b0ba6f8bd12facf92629 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - dfd075b97471bd97ea70066a299d1fe92af90352 + 087e15321bb712ef6fe8b0ba6f8bd12facf92629 - + https://dev.azure.com/dnceng/internal/_git/dotnet-winforms - d27f6ffa6ece96c4242bbac3fcd6e30bac2b5a09 + 6c37c986b6c8fc0669b38a03a03445a75b8227a6 - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - cc1110ec8199d855f62b16511d2b4b08f46de853 + b5af29a8f41f880f38fd015c6bcb7aeb816fcef6 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime @@ -115,7 +115,7 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - dfd075b97471bd97ea70066a299d1fe92af90352 + 087e15321bb712ef6fe8b0ba6f8bd12facf92629 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime @@ -147,7 +147,7 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-winforms - d27f6ffa6ece96c4242bbac3fcd6e30bac2b5a09 + 6c37c986b6c8fc0669b38a03a03445a75b8227a6 diff --git a/eng/Versions.props b/eng/Versions.props index 51f7aaede..10d6f8340 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -25,7 +25,7 @@ 6.2.4 - 8.0.5-servicing.24215.24 + 8.0.5-servicing.24216.15 8.0.5 8.0.5 8.0.0 @@ -61,15 +61,15 @@ 8.0.0 8.0.0 8.0.0 - 8.0.5-servicing.24215.24 + 8.0.5-servicing.24216.15 4.10.0 - 8.0.5-servicing.24216.11 - 8.0.5-servicing.24216.11 + 8.0.5-servicing.24217.4 + 8.0.5-servicing.24217.4 8.0.5 - 8.0.5-servicing.24216.5 - 8.0.5-servicing.24216.5 + 8.0.5-servicing.24217.2 + 8.0.5-servicing.24217.2 From e60652d2159fd9dafc3cf57ed95baa342ecc5ccc Mon Sep 17 00:00:00 2001 From: vseanreesermsft <78103370+vseanreesermsft@users.noreply.github.com> Date: Wed, 1 May 2024 16:14:43 -0700 Subject: [PATCH 134/222] Update branding to 8.0.6 (#4360) --- eng/Versions.props | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eng/Versions.props b/eng/Versions.props index 802604d95..5d09a881d 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -2,7 +2,7 @@ 8 0 - 5 + 6 servicing From 55ff4ccbbbeaa9a77789e6ceff3f3e5ed27dd605 Mon Sep 17 00:00:00 2001 From: Loni Tra Date: Wed, 1 May 2024 16:20:27 -0700 Subject: [PATCH 135/222] [release/8.0] Remove -pt images (#4328) remove -pt --- azure-pipelines.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index b32b413ae..fc6ce8ff8 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -41,7 +41,7 @@ extends: autoBaseline: true pool: name: NetCore1ESPool-Internal - image: 1es-windows-2022-pt + image: 1es-windows-2022 os: windows customBuildTags: - ES365AIMigrationTooling @@ -108,4 +108,4 @@ extends: -TsaRepositoryName WindowsDesktop -TsaCodebaseName WindowsDesktop -TsaOnboard $True - -TsaPublish $True \ No newline at end of file + -TsaPublish $True From 3be0ae8d5094a7c58c5bc3ecb8e7c284ede9aae3 Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Thu, 16 May 2024 21:11:29 +0000 Subject: [PATCH 136/222] Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-wpf build 20240516.5 Microsoft.DotNet.Wpf.GitHub , Microsoft.DotNet.Wpf.ProjectTemplates , Microsoft.NET.Sdk.WindowsDesktop From Version 8.0.5-servicing.24217.2 -> To Version 8.0.6-servicing.24266.5 Dependency coherency updates Microsoft.Private.Winforms,Microsoft.Internal.Runtime.WindowsDesktop.Transport,Microsoft.Private.Winforms,Microsoft.NETCore.App.Ref,Microsoft.Private.Winforms,VS.Redist.Common.NetCore.SharedFramework.x64.8.0,Microsoft.Private.Winforms,Microsoft.NETCore.App.Runtime.win-x64,Microsoft.Dotnet.WinForms.ProjectTemplates,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,System.Security.Cryptography.Xml,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,System.Drawing.Common From Version 8.0.5-servicing.24217.4 -> To Version 8.0.6-servicing.24266.2 (parent: Microsoft.DotNet.Wpf.GitHub --- NuGet.config | 8 ++++---- eng/Version.Details.xml | 42 ++++++++++++++++++++--------------------- eng/Versions.props | 18 +++++++++--------- 3 files changed, 34 insertions(+), 34 deletions(-) diff --git a/NuGet.config b/NuGet.config index e3c2127b9..5d00bcaf0 100644 --- a/NuGet.config +++ b/NuGet.config @@ -9,10 +9,10 @@ - + - + @@ -25,10 +25,10 @@ - + - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 69fd61ec3..faad07c53 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,41 +1,41 @@ - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 087e15321bb712ef6fe8b0ba6f8bd12facf92629 + fa5b0d8f4a8b424732cc992158aa92842f8a2846 - + https://dev.azure.com/dnceng/internal/_git/dotnet-winforms - 6c37c986b6c8fc0669b38a03a03445a75b8227a6 + 4e8a67279888e260abf0cf5b027cc16ea7069799 - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - b5af29a8f41f880f38fd015c6bcb7aeb816fcef6 + c7a8451f8a664f44336c013032414c4a9ca4dc42 - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - b5af29a8f41f880f38fd015c6bcb7aeb816fcef6 + c7a8451f8a664f44336c013032414c4a9ca4dc42 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 087e15321bb712ef6fe8b0ba6f8bd12facf92629 + fa5b0d8f4a8b424732cc992158aa92842f8a2846 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 087e15321bb712ef6fe8b0ba6f8bd12facf92629 + fa5b0d8f4a8b424732cc992158aa92842f8a2846 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 087e15321bb712ef6fe8b0ba6f8bd12facf92629 + fa5b0d8f4a8b424732cc992158aa92842f8a2846 - + https://dev.azure.com/dnceng/internal/_git/dotnet-winforms - 6c37c986b6c8fc0669b38a03a03445a75b8227a6 + 4e8a67279888e260abf0cf5b027cc16ea7069799 - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - b5af29a8f41f880f38fd015c6bcb7aeb816fcef6 + c7a8451f8a664f44336c013032414c4a9ca4dc42 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime @@ -115,7 +115,7 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 087e15321bb712ef6fe8b0ba6f8bd12facf92629 + fa5b0d8f4a8b424732cc992158aa92842f8a2846 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime @@ -145,9 +145,9 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime 5535e31a712343a63f5d7d796cd874e563e5ac14 - + https://dev.azure.com/dnceng/internal/_git/dotnet-winforms - 6c37c986b6c8fc0669b38a03a03445a75b8227a6 + 4e8a67279888e260abf0cf5b027cc16ea7069799 diff --git a/eng/Versions.props b/eng/Versions.props index f32bee34c..5bc923f01 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -25,9 +25,9 @@ 6.2.4 - 8.0.5-servicing.24216.15 - 8.0.5 - 8.0.5 + 8.0.6-servicing.24253.6 + 8.0.6 + 8.0.6 8.0.0 5.0.0 8.0.0 @@ -61,15 +61,15 @@ 8.0.0 8.0.0 8.0.0 - 8.0.5-servicing.24216.15 + 8.0.6-servicing.24253.6 4.10.0 - 8.0.5-servicing.24217.4 - 8.0.5-servicing.24217.4 - 8.0.5 + 8.0.6-servicing.24266.2 + 8.0.6-servicing.24266.2 + 8.0.6 - 8.0.5-servicing.24217.2 - 8.0.5-servicing.24217.2 + 8.0.6-servicing.24266.5 + 8.0.6-servicing.24266.5 From a21642719e67d008451bea6e2bd4cecb0a5944f1 Mon Sep 17 00:00:00 2001 From: Sean Reeser Date: Thu, 16 May 2024 17:36:48 -0700 Subject: [PATCH 137/222] Update branding to 8.0.7 --- eng/Versions.props | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eng/Versions.props b/eng/Versions.props index 5d09a881d..edfa59f97 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -2,7 +2,7 @@ 8 0 - 6 + 7 servicing From 7fc51460e63a6e9f1f473e2d1d4d96fcef99a3f9 Mon Sep 17 00:00:00 2001 From: DotNet Bot Date: Fri, 17 May 2024 23:15:12 +0000 Subject: [PATCH 138/222] Merged PR 39702: [internal/release/8.0] Update dependencies from dnceng/internal/dotnet-wpf This pull request updates the following dependencies [marker]: <> (Begin:05a9f0d5-ba2f-4c32-efac-08dbd545292d) ## From https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - **Subscription**: 05a9f0d5-ba2f-4c32-efac-08dbd545292d - **Build**: 20240517.12 - **Date Produced**: May 17, 2024 9:32:16 PM UTC - **Commit**: eea757d15dbc77041d9295e55dc45d18d7f7ed83 - **Branch**: refs/heads/internal/release/8.0 [DependencyUpdate]: <> (Begin) - **Updates**: - **Microsoft.DotNet.Wpf.GitHub**: [from 8.0.6-servicing.24266.5 to 8.0.7-servicing.24267.12][1] - **Microsoft.DotNet.Wpf.ProjectTemplates**: [from 8.0.6-servicing.24266.5 to 8.0.7-servicing.24267.12][1] - **Microsoft.NET.Sdk.WindowsDesktop**: [from 8.0.6-servicing.24266.5 to 8.0.7-servicing.24267.12][1] [1]: https://dev.azure.com/dnceng/internal/_git/dotnet-wpf/branches?baseVersion=GCc7a8451f8a664f44336c013032414c4a9ca4dc42&targetVersion=GCeea757d15dbc77041d9295e55dc45d18d7f7ed83&_a=files [DependencyUpdate]: <> (End) [marker]: <> (End:05a9f0d5-ba2f-4c32-efac-08dbd545292d) --- eng/Version.Details.xml | 12 ++++++------ eng/Versions.props | 4 ++-- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index faad07c53..bb6197dfb 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -9,13 +9,13 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-winforms 4e8a67279888e260abf0cf5b027cc16ea7069799 - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - c7a8451f8a664f44336c013032414c4a9ca4dc42 + eea757d15dbc77041d9295e55dc45d18d7f7ed83 - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - c7a8451f8a664f44336c013032414c4a9ca4dc42 + eea757d15dbc77041d9295e55dc45d18d7f7ed83 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime @@ -33,9 +33,9 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-winforms 4e8a67279888e260abf0cf5b027cc16ea7069799 - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - c7a8451f8a664f44336c013032414c4a9ca4dc42 + eea757d15dbc77041d9295e55dc45d18d7f7ed83 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime diff --git a/eng/Versions.props b/eng/Versions.props index 5bc923f01..8a393d233 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -69,7 +69,7 @@ 8.0.6-servicing.24266.2 8.0.6 - 8.0.6-servicing.24266.5 - 8.0.6-servicing.24266.5 + 8.0.7-servicing.24267.12 + 8.0.7-servicing.24267.12 From cff6eb48ac2d72c138112f86e98fcdba13ed79e6 Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Sat, 18 May 2024 23:14:09 +0000 Subject: [PATCH 139/222] Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-wpf build 20240518.1 Microsoft.DotNet.Wpf.GitHub , Microsoft.DotNet.Wpf.ProjectTemplates , Microsoft.NET.Sdk.WindowsDesktop From Version 8.0.7-servicing.24267.12 -> To Version 8.0.7-servicing.24268.1 Dependency coherency updates Microsoft.Private.Winforms,Microsoft.Internal.Runtime.WindowsDesktop.Transport,Microsoft.Private.Winforms,Microsoft.NETCore.App.Ref,Microsoft.Private.Winforms,VS.Redist.Common.NetCore.SharedFramework.x64.8.0,Microsoft.Private.Winforms,Microsoft.NETCore.App.Runtime.win-x64,Microsoft.Dotnet.WinForms.ProjectTemplates,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,System.Security.Cryptography.Xml,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,System.Drawing.Common From Version 8.0.6-servicing.24266.2 -> To Version 8.0.6-servicing.24267.11 (parent: Microsoft.DotNet.Wpf.GitHub --- NuGet.config | 8 ++++---- eng/Version.Details.xml | 40 ++++++++++++++++++++-------------------- eng/Versions.props | 16 ++++++++-------- 3 files changed, 32 insertions(+), 32 deletions(-) diff --git a/NuGet.config b/NuGet.config index 5d00bcaf0..2c17f9ff2 100644 --- a/NuGet.config +++ b/NuGet.config @@ -9,10 +9,10 @@ - + - + @@ -25,10 +25,10 @@ - + - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index bb6197dfb..0a7a8540b 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,41 +1,41 @@ - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - fa5b0d8f4a8b424732cc992158aa92842f8a2846 + cb4ec67fd1784497c953f65bfc390eb8bfdf6c6b - + https://dev.azure.com/dnceng/internal/_git/dotnet-winforms - 4e8a67279888e260abf0cf5b027cc16ea7069799 + 0fb8cdb031a9a70521cc5e7fdb25e0cd7cd03786 - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - eea757d15dbc77041d9295e55dc45d18d7f7ed83 + adccabf2ff002505d4dcc3019508647f0953f885 - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - eea757d15dbc77041d9295e55dc45d18d7f7ed83 + adccabf2ff002505d4dcc3019508647f0953f885 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - fa5b0d8f4a8b424732cc992158aa92842f8a2846 + cb4ec67fd1784497c953f65bfc390eb8bfdf6c6b - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - fa5b0d8f4a8b424732cc992158aa92842f8a2846 + cb4ec67fd1784497c953f65bfc390eb8bfdf6c6b - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - fa5b0d8f4a8b424732cc992158aa92842f8a2846 + cb4ec67fd1784497c953f65bfc390eb8bfdf6c6b - + https://dev.azure.com/dnceng/internal/_git/dotnet-winforms - 4e8a67279888e260abf0cf5b027cc16ea7069799 + 0fb8cdb031a9a70521cc5e7fdb25e0cd7cd03786 - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - eea757d15dbc77041d9295e55dc45d18d7f7ed83 + adccabf2ff002505d4dcc3019508647f0953f885 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime @@ -115,7 +115,7 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - fa5b0d8f4a8b424732cc992158aa92842f8a2846 + cb4ec67fd1784497c953f65bfc390eb8bfdf6c6b https://dev.azure.com/dnceng/internal/_git/dotnet-runtime @@ -147,7 +147,7 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-winforms - 4e8a67279888e260abf0cf5b027cc16ea7069799 + 0fb8cdb031a9a70521cc5e7fdb25e0cd7cd03786 diff --git a/eng/Versions.props b/eng/Versions.props index 8a393d233..772d5175d 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -25,9 +25,9 @@ 6.2.4 - 8.0.6-servicing.24253.6 - 8.0.6 - 8.0.6 + 8.0.7-servicing.24267.24 + 8.0.7 + 8.0.7 8.0.0 5.0.0 8.0.0 @@ -61,15 +61,15 @@ 8.0.0 8.0.0 8.0.0 - 8.0.6-servicing.24253.6 + 8.0.7-servicing.24267.24 4.10.0 - 8.0.6-servicing.24266.2 - 8.0.6-servicing.24266.2 + 8.0.6-servicing.24267.11 + 8.0.6-servicing.24267.11 8.0.6 - 8.0.7-servicing.24267.12 - 8.0.7-servicing.24267.12 + 8.0.7-servicing.24268.1 + 8.0.7-servicing.24268.1 From 1bdc0ef7858a9ba0619559f0d6f0b39c0db3c7a5 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Mon, 20 May 2024 04:43:05 +0000 Subject: [PATCH 140/222] [release/8.0] Update dependencies from dotnet/arcade (#4396) Update dependencies from https://github.com/dotnet/arcade build 20240516.3 Microsoft.DotNet.Arcade.Sdk , Microsoft.DotNet.Build.Tasks.Archives , Microsoft.DotNet.Build.Tasks.Feed , Microsoft.DotNet.Build.Tasks.Installers , Microsoft.DotNet.SharedFramework.Sdk , Microsoft.DotNet.VersionTools.Tasks From Version 8.0.0-beta.24204.3 -> To Version 8.0.0-beta.24266.3 Co-authored-by: dotnet-maestro[bot] --- NuGet.config | 6 --- eng/Version.Details.xml | 24 ++++----- eng/Versions.props | 8 +-- .../job/source-index-stage1.yml | 49 +++++++++++++------ .../templates/job/source-index-stage1.yml | 44 ++++++++++++----- global.json | 4 +- 6 files changed, 82 insertions(+), 53 deletions(-) diff --git a/NuGet.config b/NuGet.config index 1104fc96b..1bd49f5bf 100644 --- a/NuGet.config +++ b/NuGet.config @@ -11,9 +11,6 @@ - - - @@ -28,9 +25,6 @@ - - - diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 180318926..8882f2bfa 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -151,29 +151,29 @@ - + https://github.com/dotnet/arcade - 188340e12c0a372b1681ad6a5e72c608021efdba + e6f70c7dd528f05cd28cec2a179d58c22e91d9ac - + https://github.com/dotnet/arcade - 188340e12c0a372b1681ad6a5e72c608021efdba + e6f70c7dd528f05cd28cec2a179d58c22e91d9ac - + https://github.com/dotnet/arcade - 188340e12c0a372b1681ad6a5e72c608021efdba + e6f70c7dd528f05cd28cec2a179d58c22e91d9ac - + https://github.com/dotnet/arcade - 188340e12c0a372b1681ad6a5e72c608021efdba + e6f70c7dd528f05cd28cec2a179d58c22e91d9ac - + https://github.com/dotnet/arcade - 188340e12c0a372b1681ad6a5e72c608021efdba + e6f70c7dd528f05cd28cec2a179d58c22e91d9ac - + https://github.com/dotnet/arcade - 188340e12c0a372b1681ad6a5e72c608021efdba + e6f70c7dd528f05cd28cec2a179d58c22e91d9ac diff --git a/eng/Versions.props b/eng/Versions.props index 5d09a881d..56a4b2c81 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -12,10 +12,10 @@ - 8.0.0-beta.24204.3 - 8.0.0-beta.24204.3 - 8.0.0-beta.24204.3 - 8.0.0-beta.24204.3 + 8.0.0-beta.24266.3 + 8.0.0-beta.24266.3 + 8.0.0-beta.24266.3 + 8.0.0-beta.24266.3 4.5.0 4.8.6 diff --git a/eng/common/templates-official/job/source-index-stage1.yml b/eng/common/templates-official/job/source-index-stage1.yml index f0513aee5..43ee0c202 100644 --- a/eng/common/templates-official/job/source-index-stage1.yml +++ b/eng/common/templates-official/job/source-index-stage1.yml @@ -1,6 +1,7 @@ parameters: runAsPublic: false - sourceIndexPackageVersion: 1.0.1-20230228.2 + sourceIndexUploadPackageVersion: 2.0.0-20240502.12 + sourceIndexProcessBinlogPackageVersion: 1.0.1-20240129.2 sourceIndexPackageSource: https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet-tools/nuget/v3/index.json sourceIndexBuildCommand: powershell -NoLogo -NoProfile -ExecutionPolicy Bypass -Command "eng/common/build.ps1 -restore -build -binarylog -ci" preSteps: [] @@ -14,15 +15,15 @@ jobs: dependsOn: ${{ parameters.dependsOn }} condition: ${{ parameters.condition }} variables: - - name: SourceIndexPackageVersion - value: ${{ parameters.sourceIndexPackageVersion }} + - name: SourceIndexUploadPackageVersion + value: ${{ parameters.sourceIndexUploadPackageVersion }} + - name: SourceIndexProcessBinlogPackageVersion + value: ${{ parameters.sourceIndexProcessBinlogPackageVersion }} - name: SourceIndexPackageSource value: ${{ parameters.sourceIndexPackageSource }} - name: BinlogPath value: ${{ parameters.binlogPath }} - - ${{ if and(eq(parameters.runAsPublic, 'false'), ne(variables['System.TeamProject'], 'public'), notin(variables['Build.Reason'], 'PullRequest')) }}: - - group: source-dot-net stage1 variables - - template: /eng/common/templates-official/variables/pool-providers.yml + - template: /eng/common/templates/variables/pool-providers.yml ${{ if ne(parameters.pool, '') }}: pool: ${{ parameters.pool }} @@ -33,24 +34,23 @@ jobs: demands: ImageOverride -equals windows.vs2019.amd64.open ${{ if eq(variables['System.TeamProject'], 'internal') }}: name: $(DncEngInternalBuildPool) - image: windows.vs2022.amd64 - os: windows + demands: ImageOverride -equals windows.vs2019.amd64 steps: - ${{ each preStep in parameters.preSteps }}: - ${{ preStep }} - task: UseDotNet@2 - displayName: Use .NET Core SDK 6 + displayName: Use .NET 8 SDK inputs: packageType: sdk - version: 6.0.x + version: 8.0.x installationPath: $(Agent.TempDirectory)/dotnet workingDirectory: $(Agent.TempDirectory) - script: | - $(Agent.TempDirectory)/dotnet/dotnet tool install BinLogToSln --version $(SourceIndexPackageVersion) --add-source $(SourceIndexPackageSource) --tool-path $(Agent.TempDirectory)/.source-index/tools - $(Agent.TempDirectory)/dotnet/dotnet tool install UploadIndexStage1 --version $(SourceIndexPackageVersion) --add-source $(SourceIndexPackageSource) --tool-path $(Agent.TempDirectory)/.source-index/tools + $(Agent.TempDirectory)/dotnet/dotnet tool install BinLogToSln --version $(sourceIndexProcessBinlogPackageVersion) --add-source $(SourceIndexPackageSource) --tool-path $(Agent.TempDirectory)/.source-index/tools + $(Agent.TempDirectory)/dotnet/dotnet tool install UploadIndexStage1 --version $(sourceIndexUploadPackageVersion) --add-source $(SourceIndexPackageSource) --tool-path $(Agent.TempDirectory)/.source-index/tools displayName: Download 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) @@ -62,7 +62,24 @@ jobs: displayName: Process Binlog into indexable sln - ${{ if and(eq(parameters.runAsPublic, 'false'), ne(variables['System.TeamProject'], 'public'), notin(variables['Build.Reason'], 'PullRequest')) }}: - - script: $(Agent.TempDirectory)/.source-index/tools/UploadIndexStage1 -i .source-index/stage1output -n $(Build.Repository.Name) - displayName: Upload stage1 artifacts to source index - env: - BLOB_CONTAINER_URL: $(source-dot-net-stage1-blob-container-url) + - task: AzureCLI@2 + displayName: Get stage 1 auth token + inputs: + azureSubscription: 'SourceDotNet Stage1 Publish' + addSpnToEnvironment: true + scriptType: 'ps' + scriptLocation: 'inlineScript' + inlineScript: | + echo "##vso[task.setvariable variable=ARM_CLIENT_ID]$env:servicePrincipalId" + echo "##vso[task.setvariable variable=ARM_ID_TOKEN]$env:idToken" + echo "##vso[task.setvariable variable=ARM_TENANT_ID]$env:tenantId" + + - script: | + echo "Client ID: $(ARM_CLIENT_ID)" + echo "ID Token: $(ARM_ID_TOKEN)" + echo "Tenant ID: $(ARM_TENANT_ID)" + az login --service-principal -u $(ARM_CLIENT_ID) --tenant $(ARM_TENANT_ID) --allow-no-subscriptions --federated-token $(ARM_ID_TOKEN) + displayName: "Login to Azure" + + - script: $(Agent.TempDirectory)/.source-index/tools/UploadIndexStage1 -i .source-index/stage1output -n $(Build.Repository.Name) -s netsourceindexstage1 -b stage1 + displayName: Upload stage1 artifacts to source index \ No newline at end of file diff --git a/eng/common/templates/job/source-index-stage1.yml b/eng/common/templates/job/source-index-stage1.yml index b98202aa0..43ee0c202 100644 --- a/eng/common/templates/job/source-index-stage1.yml +++ b/eng/common/templates/job/source-index-stage1.yml @@ -1,6 +1,7 @@ parameters: runAsPublic: false - sourceIndexPackageVersion: 1.0.1-20230228.2 + sourceIndexUploadPackageVersion: 2.0.0-20240502.12 + sourceIndexProcessBinlogPackageVersion: 1.0.1-20240129.2 sourceIndexPackageSource: https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet-tools/nuget/v3/index.json sourceIndexBuildCommand: powershell -NoLogo -NoProfile -ExecutionPolicy Bypass -Command "eng/common/build.ps1 -restore -build -binarylog -ci" preSteps: [] @@ -14,14 +15,14 @@ jobs: dependsOn: ${{ parameters.dependsOn }} condition: ${{ parameters.condition }} variables: - - name: SourceIndexPackageVersion - value: ${{ parameters.sourceIndexPackageVersion }} + - name: SourceIndexUploadPackageVersion + value: ${{ parameters.sourceIndexUploadPackageVersion }} + - name: SourceIndexProcessBinlogPackageVersion + value: ${{ parameters.sourceIndexProcessBinlogPackageVersion }} - name: SourceIndexPackageSource value: ${{ parameters.sourceIndexPackageSource }} - name: BinlogPath value: ${{ parameters.binlogPath }} - - ${{ if and(eq(parameters.runAsPublic, 'false'), ne(variables['System.TeamProject'], 'public'), notin(variables['Build.Reason'], 'PullRequest')) }}: - - group: source-dot-net stage1 variables - template: /eng/common/templates/variables/pool-providers.yml ${{ if ne(parameters.pool, '') }}: @@ -40,16 +41,16 @@ jobs: - ${{ preStep }} - task: UseDotNet@2 - displayName: Use .NET Core SDK 6 + displayName: Use .NET 8 SDK inputs: packageType: sdk - version: 6.0.x + version: 8.0.x installationPath: $(Agent.TempDirectory)/dotnet workingDirectory: $(Agent.TempDirectory) - script: | - $(Agent.TempDirectory)/dotnet/dotnet tool install BinLogToSln --version $(SourceIndexPackageVersion) --add-source $(SourceIndexPackageSource) --tool-path $(Agent.TempDirectory)/.source-index/tools - $(Agent.TempDirectory)/dotnet/dotnet tool install UploadIndexStage1 --version $(SourceIndexPackageVersion) --add-source $(SourceIndexPackageSource) --tool-path $(Agent.TempDirectory)/.source-index/tools + $(Agent.TempDirectory)/dotnet/dotnet tool install BinLogToSln --version $(sourceIndexProcessBinlogPackageVersion) --add-source $(SourceIndexPackageSource) --tool-path $(Agent.TempDirectory)/.source-index/tools + $(Agent.TempDirectory)/dotnet/dotnet tool install UploadIndexStage1 --version $(sourceIndexUploadPackageVersion) --add-source $(SourceIndexPackageSource) --tool-path $(Agent.TempDirectory)/.source-index/tools displayName: Download 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) @@ -61,7 +62,24 @@ jobs: displayName: Process Binlog into indexable sln - ${{ if and(eq(parameters.runAsPublic, 'false'), ne(variables['System.TeamProject'], 'public'), notin(variables['Build.Reason'], 'PullRequest')) }}: - - script: $(Agent.TempDirectory)/.source-index/tools/UploadIndexStage1 -i .source-index/stage1output -n $(Build.Repository.Name) - displayName: Upload stage1 artifacts to source index - env: - BLOB_CONTAINER_URL: $(source-dot-net-stage1-blob-container-url) + - task: AzureCLI@2 + displayName: Get stage 1 auth token + inputs: + azureSubscription: 'SourceDotNet Stage1 Publish' + addSpnToEnvironment: true + scriptType: 'ps' + scriptLocation: 'inlineScript' + inlineScript: | + echo "##vso[task.setvariable variable=ARM_CLIENT_ID]$env:servicePrincipalId" + echo "##vso[task.setvariable variable=ARM_ID_TOKEN]$env:idToken" + echo "##vso[task.setvariable variable=ARM_TENANT_ID]$env:tenantId" + + - script: | + echo "Client ID: $(ARM_CLIENT_ID)" + echo "ID Token: $(ARM_ID_TOKEN)" + echo "Tenant ID: $(ARM_TENANT_ID)" + az login --service-principal -u $(ARM_CLIENT_ID) --tenant $(ARM_TENANT_ID) --allow-no-subscriptions --federated-token $(ARM_ID_TOKEN) + displayName: "Login to Azure" + + - script: $(Agent.TempDirectory)/.source-index/tools/UploadIndexStage1 -i .source-index/stage1output -n $(Build.Repository.Name) -s netsourceindexstage1 -b stage1 + displayName: Upload stage1 artifacts to source index \ No newline at end of file diff --git a/global.json b/global.json index ecb8a32e7..e9e55c871 100644 --- a/global.json +++ b/global.json @@ -3,8 +3,8 @@ "dotnet": "8.0.101" }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "8.0.0-beta.24204.3", - "Microsoft.DotNet.SharedFramework.Sdk": "8.0.0-beta.24204.3", + "Microsoft.DotNet.Arcade.Sdk": "8.0.0-beta.24266.3", + "Microsoft.DotNet.SharedFramework.Sdk": "8.0.0-beta.24266.3", "Microsoft.Build.NoTargets": "3.7.0", "Microsoft.Build.Traversal": "3.4.0" } From 1dff72a6367e88a6f172d40605143191c645bfc0 Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Mon, 20 May 2024 17:20:23 +0000 Subject: [PATCH 141/222] Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-wpf build 20240520.5 Microsoft.DotNet.Wpf.GitHub , Microsoft.DotNet.Wpf.ProjectTemplates , Microsoft.NET.Sdk.WindowsDesktop From Version 8.0.7-servicing.24268.1 -> To Version 8.0.7-servicing.24270.5 Dependency coherency updates Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Dotnet.WinForms.ProjectTemplates,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,System.Drawing.Common From Version 8.0.6-servicing.24267.11 -> To Version 8.0.7-servicing.24269.16 (parent: Microsoft.DotNet.Wpf.GitHub --- NuGet.config | 4 ++-- eng/Version.Details.xml | 24 ++++++++++++------------ eng/Versions.props | 10 +++++----- 3 files changed, 19 insertions(+), 19 deletions(-) diff --git a/NuGet.config b/NuGet.config index 2c17f9ff2..d7301dca0 100644 --- a/NuGet.config +++ b/NuGet.config @@ -12,7 +12,7 @@ - + @@ -28,7 +28,7 @@ - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 0a7a8540b..1e9e9f137 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -5,17 +5,17 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime cb4ec67fd1784497c953f65bfc390eb8bfdf6c6b - + https://dev.azure.com/dnceng/internal/_git/dotnet-winforms - 0fb8cdb031a9a70521cc5e7fdb25e0cd7cd03786 + 75693baf659b4a98a29d70c69a86de8752bf5c03 - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - adccabf2ff002505d4dcc3019508647f0953f885 + fa1c8aad672d662a6c58833c2bab3dd7dc72e245 - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - adccabf2ff002505d4dcc3019508647f0953f885 + fa1c8aad672d662a6c58833c2bab3dd7dc72e245 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime @@ -29,13 +29,13 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime cb4ec67fd1784497c953f65bfc390eb8bfdf6c6b - + https://dev.azure.com/dnceng/internal/_git/dotnet-winforms - 0fb8cdb031a9a70521cc5e7fdb25e0cd7cd03786 + 75693baf659b4a98a29d70c69a86de8752bf5c03 - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - adccabf2ff002505d4dcc3019508647f0953f885 + fa1c8aad672d662a6c58833c2bab3dd7dc72e245 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime @@ -145,9 +145,9 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime 5535e31a712343a63f5d7d796cd874e563e5ac14 - + https://dev.azure.com/dnceng/internal/_git/dotnet-winforms - 0fb8cdb031a9a70521cc5e7fdb25e0cd7cd03786 + 75693baf659b4a98a29d70c69a86de8752bf5c03 diff --git a/eng/Versions.props b/eng/Versions.props index 772d5175d..2057a158e 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -65,11 +65,11 @@ 4.10.0 - 8.0.6-servicing.24267.11 - 8.0.6-servicing.24267.11 - 8.0.6 + 8.0.7-servicing.24269.16 + 8.0.7-servicing.24269.16 + 8.0.7 - 8.0.7-servicing.24268.1 - 8.0.7-servicing.24268.1 + 8.0.7-servicing.24270.5 + 8.0.7-servicing.24270.5 From a81793a82de3704e50d1567bfaa69527cabad5b6 Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Mon, 20 May 2024 18:21:29 +0000 Subject: [PATCH 142/222] Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-wpf build 20240520.8 Microsoft.DotNet.Wpf.GitHub , Microsoft.DotNet.Wpf.ProjectTemplates , Microsoft.NET.Sdk.WindowsDesktop From Version 8.0.7-servicing.24270.5 -> To Version 8.0.7-servicing.24270.8 --- eng/Version.Details.xml | 12 ++++++------ eng/Versions.props | 4 ++-- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 44ade7e20..a43ae9dfa 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -9,13 +9,13 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-winforms 75693baf659b4a98a29d70c69a86de8752bf5c03 - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - fa1c8aad672d662a6c58833c2bab3dd7dc72e245 + 6c96e5e2b40908998ba65dac3171b90d6b3ca775 - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - fa1c8aad672d662a6c58833c2bab3dd7dc72e245 + 6c96e5e2b40908998ba65dac3171b90d6b3ca775 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime @@ -33,9 +33,9 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-winforms 75693baf659b4a98a29d70c69a86de8752bf5c03 - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - fa1c8aad672d662a6c58833c2bab3dd7dc72e245 + 6c96e5e2b40908998ba65dac3171b90d6b3ca775 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime diff --git a/eng/Versions.props b/eng/Versions.props index 16542de49..a8befca9a 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -69,7 +69,7 @@ 8.0.7-servicing.24269.16 8.0.7 - 8.0.7-servicing.24270.5 - 8.0.7-servicing.24270.5 + 8.0.7-servicing.24270.8 + 8.0.7-servicing.24270.8 From 9b1c6dfad3937192a288253103a7fd73d1dacf3a Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Tue, 21 May 2024 17:03:04 +0000 Subject: [PATCH 143/222] Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-wpf build 20240521.5 Microsoft.DotNet.Wpf.GitHub , Microsoft.DotNet.Wpf.ProjectTemplates , Microsoft.NET.Sdk.WindowsDesktop From Version 8.0.7-servicing.24270.8 -> To Version 8.0.7-servicing.24271.5 Dependency coherency updates Microsoft.Private.Winforms,Microsoft.Internal.Runtime.WindowsDesktop.Transport,Microsoft.Private.Winforms,Microsoft.NETCore.App.Ref,Microsoft.Private.Winforms,VS.Redist.Common.NetCore.SharedFramework.x64.8.0,Microsoft.Private.Winforms,Microsoft.NETCore.App.Runtime.win-x64,Microsoft.Dotnet.WinForms.ProjectTemplates,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,System.Security.Cryptography.Xml,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,System.Drawing.Common From Version 8.0.7-servicing.24269.16 -> To Version 8.0.7-servicing.24270.8 (parent: Microsoft.DotNet.Wpf.GitHub --- NuGet.config | 8 ++++---- eng/Version.Details.xml | 36 ++++++++++++++++++------------------ eng/Versions.props | 12 ++++++------ 3 files changed, 28 insertions(+), 28 deletions(-) diff --git a/NuGet.config b/NuGet.config index d7301dca0..27e7363d6 100644 --- a/NuGet.config +++ b/NuGet.config @@ -9,10 +9,10 @@ - + - + @@ -25,10 +25,10 @@ - + - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index a43ae9dfa..78d92614a 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,41 +1,41 @@ - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - cb4ec67fd1784497c953f65bfc390eb8bfdf6c6b + 63d80966a9f0d15e057d0d146702405b19c82533 - + https://dev.azure.com/dnceng/internal/_git/dotnet-winforms - 75693baf659b4a98a29d70c69a86de8752bf5c03 + b41338c372f491d19532b30fd3c6b609f963aa92 - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - 6c96e5e2b40908998ba65dac3171b90d6b3ca775 + 7db8d5b8559d931e0b5555b7d3eec6c083dd6e59 - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - 6c96e5e2b40908998ba65dac3171b90d6b3ca775 + 7db8d5b8559d931e0b5555b7d3eec6c083dd6e59 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - cb4ec67fd1784497c953f65bfc390eb8bfdf6c6b + 63d80966a9f0d15e057d0d146702405b19c82533 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - cb4ec67fd1784497c953f65bfc390eb8bfdf6c6b + 63d80966a9f0d15e057d0d146702405b19c82533 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - cb4ec67fd1784497c953f65bfc390eb8bfdf6c6b + 63d80966a9f0d15e057d0d146702405b19c82533 - + https://dev.azure.com/dnceng/internal/_git/dotnet-winforms - 75693baf659b4a98a29d70c69a86de8752bf5c03 + b41338c372f491d19532b30fd3c6b609f963aa92 - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - 6c96e5e2b40908998ba65dac3171b90d6b3ca775 + 7db8d5b8559d931e0b5555b7d3eec6c083dd6e59 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime @@ -115,7 +115,7 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - cb4ec67fd1784497c953f65bfc390eb8bfdf6c6b + 63d80966a9f0d15e057d0d146702405b19c82533 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime @@ -147,7 +147,7 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-winforms - 75693baf659b4a98a29d70c69a86de8752bf5c03 + b41338c372f491d19532b30fd3c6b609f963aa92 diff --git a/eng/Versions.props b/eng/Versions.props index a8befca9a..858a9a2d6 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -25,7 +25,7 @@ 6.2.4 - 8.0.7-servicing.24267.24 + 8.0.7-servicing.24270.14 8.0.7 8.0.7 8.0.0 @@ -61,15 +61,15 @@ 8.0.0 8.0.0 8.0.0 - 8.0.7-servicing.24267.24 + 8.0.7-servicing.24270.14 4.10.0 - 8.0.7-servicing.24269.16 - 8.0.7-servicing.24269.16 + 8.0.7-servicing.24270.8 + 8.0.7-servicing.24270.8 8.0.7 - 8.0.7-servicing.24270.8 - 8.0.7-servicing.24270.8 + 8.0.7-servicing.24271.5 + 8.0.7-servicing.24271.5 From 6686ac7720555dfb809027c3840a38b7b79fb6ba Mon Sep 17 00:00:00 2001 From: Matt Mitchell Date: Thu, 6 Jun 2024 15:16:16 -0700 Subject: [PATCH 144/222] [release/8.0] Remove references to obsolete storage account variables (#4436) Remove references to obsolete storage account variables --- eng/pipelines/jobs/windows-build-PR.yml | 10 ---------- eng/pipelines/jobs/windows-build.yml | 6 ------ 2 files changed, 16 deletions(-) diff --git a/eng/pipelines/jobs/windows-build-PR.yml b/eng/pipelines/jobs/windows-build-PR.yml index e01ef6c73..d5cb45f24 100644 --- a/eng/pipelines/jobs/windows-build-PR.yml +++ b/eng/pipelines/jobs/windows-build-PR.yml @@ -35,15 +35,6 @@ jobs: value: /p:DotNetSignType=$(SignType) - name: TargetArchitecture value: ${{ parameters.targetArchitecture }} - - ${{ if eq(variables['System.TeamProject'], 'public') }}: - - name: _InternalRuntimeDownloadArgs - value: '' - - ${{ if ne(variables['System.TeamProject'], 'public') }}: - - group: DotNet-MSRC-Storage - - name: _InternalRuntimeDownloadArgs - value: >- - /p:DotNetRuntimeSourceFeed=https://dotnetclimsrc.blob.core.windows.net/dotnet - /p:DotNetRuntimeSourceFeedKey=$(dotnetclimsrc-read-sas-token-base64) steps: - ${{ if ne(variables['System.TeamProject'], 'public') }}: @@ -75,7 +66,6 @@ jobs: build.cmd -ci -test $(CommonMSBuildArgs) $(MsbuildSigningArguments) - $(_InternalRuntimeDownloadArgs) displayName: Build - template: /eng/pipelines/steps/upload-job-artifacts-PR.yml diff --git a/eng/pipelines/jobs/windows-build.yml b/eng/pipelines/jobs/windows-build.yml index 57bb3dc8c..f263b2d5f 100644 --- a/eng/pipelines/jobs/windows-build.yml +++ b/eng/pipelines/jobs/windows-build.yml @@ -28,11 +28,6 @@ jobs: value: /p:DotNetSignType=$(SignType) - name: TargetArchitecture value: ${{ parameters.targetArchitecture }} - - group: DotNet-MSRC-Storage - - name: _InternalRuntimeDownloadArgs - value: >- - /p:DotNetRuntimeSourceFeed=https://dotnetclimsrc.blob.core.windows.net/dotnet - /p:DotNetRuntimeSourceFeedKey=$(dotnetclimsrc-read-sas-token-base64) templateContext: outputs: - output: buildArtifacts @@ -74,7 +69,6 @@ jobs: build.cmd -ci -test $(CommonMSBuildArgs) $(MsbuildSigningArguments) - $(_InternalRuntimeDownloadArgs) displayName: Build # Generate SBOM From 5968e003a1be7052fd5f52b529a47bb718ce86e6 Mon Sep 17 00:00:00 2001 From: DotNet Bot Date: Wed, 12 Jun 2024 21:44:38 +0000 Subject: [PATCH 145/222] Merged PR 40324: [internal/release/8.0] Update dependencies from dnceng/internal/dotnet-wpf This pull request updates the following dependencies [marker]: <> (Begin:Coherency Updates) ## Coherency Updates The following updates ensure that dependencies with a *CoherentParentDependency* attribute were produced in a build used as input to the parent dependency's build. See [Dependency Description Format](https://github.com/dotnet/arcade/blob/master/Documentation/DependencyDescriptionFormat.md#dependency-description-overview) [DependencyUpdate]: <> (Begin) - **Coherency Updates**: - **Microsoft.Private.Winforms**: from 8.0.7-servicing.24270.8 to 8.0.7-servicing.24311.4 (parent: Microsoft.DotNet.Wpf.GitHub) - **Microsoft.Internal.Runtime.WindowsDesktop.Transport**: from 8.0.7-servicing.24270.14 to 8.0.7-servicing.24311.13 (parent: Microsoft.Private.Winforms) - **Microsoft.Private.Winforms**: from 8.0.7-servicing.24270.8 to 8.0.7-servicing.24311.4 (parent: Microsoft.DotNet.Wpf.GitHub) - **Microsoft.NETCore.App.Ref**: from 8.0.7 to 8.0.7 (parent: Microsoft.Private.Winforms) - **Microsoft.Private.Winforms**: from 8.0.7-servicing.24270.8 to 8.0.7-servicing.24311.4 (parent: Microsoft.DotNet.Wpf.GitHub) - **VS.Redist.Common.NetCore.SharedFramework.x64.8.0**: from 8.0.7-servicing.24270.14 to 8.0.7-servicing.24311.13 (parent: Microsoft.Private.Winforms) - **Microsoft.Private.Winforms**: from 8.0.7-servicing.24270.8 to 8.0.7-servicing.24311.4 (parent: Microsoft.DotNet.Wpf.GitHub) - **Microsoft.NETCore.App.Runtime.win-x64**: from 8.0.7 to 8.0.7 (parent: Microsoft.Private.Winforms) - **Microsoft.Dotnet.WinForms.ProjectTemplates**: from 8.0.7-servicing.24270.8 to 8.0.7-servicing.24311.4 (parent: Microsoft.DotNet.Wpf.GitHub) - **Microsoft.Private.Winforms**: from 8.0.7-servicing.24270.8 to 8.0.7-servicing.24311.4 (parent: Microsoft.DotNet.Wpf.GitHub) - **Microsoft.Private.Winforms**: from 8.0.7-servicing.24270.8 to 8.0.7-servicing.24311.4 (parent: Microsoft.DotNet.Wpf.GitHub) - **Microsoft.Private.Winforms**: from 8.0.7-servicing.24270.8 to 8.0.7-servicing.24311.4 (parent: Microsoft.DotNet.Wpf.GitHub) - **Microsoft.Private.Winforms**: from 8.0.7-servicing.24270.8 to 8.0.7-servicing.24311.4 (parent: Microsoft.DotNet.Wpf.GitHub) - **Microsoft.Private.Winforms**: from 8.0.7-servicing.24270.8 to 8.0.7-servicing.24311.4 (parent: Microsoft.DotNet.Wpf.GitHub) - **Microsoft.Private.Winforms**: from 8.0.7-servicing.24270.8 to 8.0.7-servicing.24311.4 (parent: Microsoft.DotNet.Wpf.GitHub) - **Microsoft.Private.Winforms**: from 8.0.7-servicing.24270.8 to 8.0.7-servicing.24311.4 (parent: Microsoft.DotNet.Wpf.GitHub) - **Microsoft.Private.Winforms**: from 8.0.7-servicing.24270.8 to 8.0.7-servicing.24311.4 (parent: Microsoft.DotNet.Wpf.GitHub) - **Microsoft.Private.Winforms**: from 8.0.7-servicing.24270.8 to 8.0.7-servicing.24311.4 (parent: Microsoft.DotNet.Wpf.GitHub) - **Microsoft.Private.Winforms**: from 8.0.7-servicing.24270.8 to 8.0.7-servicing.24311.4 (parent: Microsoft.DotNet.Wpf.GitHub) ... --- NuGet.config | 8 ++++---- eng/Version.Details.xml | 36 ++++++++++++++++++------------------ eng/Versions.props | 12 ++++++------ 3 files changed, 28 insertions(+), 28 deletions(-) diff --git a/NuGet.config b/NuGet.config index 27e7363d6..0d0341b7f 100644 --- a/NuGet.config +++ b/NuGet.config @@ -9,10 +9,10 @@ - + - + @@ -25,10 +25,10 @@ - + - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 78d92614a..9d3123d5f 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,41 +1,41 @@ - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 63d80966a9f0d15e057d0d146702405b19c82533 + e0b6a8149721f5d4f4bc8fe2ae8d39543a503b1d - + https://dev.azure.com/dnceng/internal/_git/dotnet-winforms - b41338c372f491d19532b30fd3c6b609f963aa92 + 706e61ff5705f6b87ecdde0d7338006eba3467c5 - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - 7db8d5b8559d931e0b5555b7d3eec6c083dd6e59 + b10cd0c3e35e17582d9f2b8079daf7c115e0bf53 - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - 7db8d5b8559d931e0b5555b7d3eec6c083dd6e59 + b10cd0c3e35e17582d9f2b8079daf7c115e0bf53 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 63d80966a9f0d15e057d0d146702405b19c82533 + e0b6a8149721f5d4f4bc8fe2ae8d39543a503b1d - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 63d80966a9f0d15e057d0d146702405b19c82533 + e0b6a8149721f5d4f4bc8fe2ae8d39543a503b1d https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 63d80966a9f0d15e057d0d146702405b19c82533 + e0b6a8149721f5d4f4bc8fe2ae8d39543a503b1d - + https://dev.azure.com/dnceng/internal/_git/dotnet-winforms - b41338c372f491d19532b30fd3c6b609f963aa92 + 706e61ff5705f6b87ecdde0d7338006eba3467c5 - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - 7db8d5b8559d931e0b5555b7d3eec6c083dd6e59 + b10cd0c3e35e17582d9f2b8079daf7c115e0bf53 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime @@ -115,7 +115,7 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 63d80966a9f0d15e057d0d146702405b19c82533 + e0b6a8149721f5d4f4bc8fe2ae8d39543a503b1d https://dev.azure.com/dnceng/internal/_git/dotnet-runtime @@ -147,7 +147,7 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-winforms - b41338c372f491d19532b30fd3c6b609f963aa92 + 706e61ff5705f6b87ecdde0d7338006eba3467c5 diff --git a/eng/Versions.props b/eng/Versions.props index 858a9a2d6..d437632bb 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -25,7 +25,7 @@ 6.2.4 - 8.0.7-servicing.24270.14 + 8.0.7-servicing.24311.13 8.0.7 8.0.7 8.0.0 @@ -61,15 +61,15 @@ 8.0.0 8.0.0 8.0.0 - 8.0.7-servicing.24270.14 + 8.0.7-servicing.24311.13 4.10.0 - 8.0.7-servicing.24270.8 - 8.0.7-servicing.24270.8 + 8.0.7-servicing.24311.4 + 8.0.7-servicing.24311.4 8.0.7 - 8.0.7-servicing.24271.5 - 8.0.7-servicing.24271.5 + 8.0.7-servicing.24312.2 + 8.0.7-servicing.24312.2 From cd037cbc0f61f00ab22576102869b46a1924da13 Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Thu, 13 Jun 2024 21:45:08 +0000 Subject: [PATCH 146/222] Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-wpf build 20240613.3 Microsoft.DotNet.Wpf.GitHub , Microsoft.DotNet.Wpf.ProjectTemplates , Microsoft.NET.Sdk.WindowsDesktop From Version 8.0.7-servicing.24312.2 -> To Version 8.0.7-servicing.24313.3 Dependency coherency updates Microsoft.Private.Winforms,Microsoft.Internal.Runtime.WindowsDesktop.Transport,Microsoft.Private.Winforms,Microsoft.NETCore.App.Ref,Microsoft.Private.Winforms,VS.Redist.Common.NetCore.SharedFramework.x64.8.0,Microsoft.Private.Winforms,Microsoft.NETCore.App.Runtime.win-x64,Microsoft.Dotnet.WinForms.ProjectTemplates,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,System.Security.Cryptography.Xml,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,System.Drawing.Common From Version 8.0.7-servicing.24311.4 -> To Version 8.0.7-servicing.24313.2 (parent: Microsoft.DotNet.Wpf.GitHub --- NuGet.config | 8 ++++---- eng/Version.Details.xml | 36 ++++++++++++++++++------------------ eng/Versions.props | 12 ++++++------ 3 files changed, 28 insertions(+), 28 deletions(-) diff --git a/NuGet.config b/NuGet.config index 0d0341b7f..d291a3bac 100644 --- a/NuGet.config +++ b/NuGet.config @@ -9,10 +9,10 @@ - + - + @@ -25,10 +25,10 @@ - + - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 9d3123d5f..150a308dc 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,41 +1,41 @@ - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - e0b6a8149721f5d4f4bc8fe2ae8d39543a503b1d + cc6880ce36d783678284d36e8397fc30fda93c8a - + https://dev.azure.com/dnceng/internal/_git/dotnet-winforms - 706e61ff5705f6b87ecdde0d7338006eba3467c5 + bd8c5c8606471a9c43ce856d3454a1a14e2e389c - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - b10cd0c3e35e17582d9f2b8079daf7c115e0bf53 + 28dd9040cdd0ac1401ae854390cd40d8a7d711a8 - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - b10cd0c3e35e17582d9f2b8079daf7c115e0bf53 + 28dd9040cdd0ac1401ae854390cd40d8a7d711a8 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - e0b6a8149721f5d4f4bc8fe2ae8d39543a503b1d + cc6880ce36d783678284d36e8397fc30fda93c8a - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - e0b6a8149721f5d4f4bc8fe2ae8d39543a503b1d + cc6880ce36d783678284d36e8397fc30fda93c8a https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - e0b6a8149721f5d4f4bc8fe2ae8d39543a503b1d + cc6880ce36d783678284d36e8397fc30fda93c8a - + https://dev.azure.com/dnceng/internal/_git/dotnet-winforms - 706e61ff5705f6b87ecdde0d7338006eba3467c5 + bd8c5c8606471a9c43ce856d3454a1a14e2e389c - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - b10cd0c3e35e17582d9f2b8079daf7c115e0bf53 + 28dd9040cdd0ac1401ae854390cd40d8a7d711a8 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime @@ -115,7 +115,7 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - e0b6a8149721f5d4f4bc8fe2ae8d39543a503b1d + cc6880ce36d783678284d36e8397fc30fda93c8a https://dev.azure.com/dnceng/internal/_git/dotnet-runtime @@ -147,7 +147,7 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-winforms - 706e61ff5705f6b87ecdde0d7338006eba3467c5 + bd8c5c8606471a9c43ce856d3454a1a14e2e389c diff --git a/eng/Versions.props b/eng/Versions.props index d437632bb..039a83821 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -25,7 +25,7 @@ 6.2.4 - 8.0.7-servicing.24311.13 + 8.0.7-servicing.24312.14 8.0.7 8.0.7 8.0.0 @@ -61,15 +61,15 @@ 8.0.0 8.0.0 8.0.0 - 8.0.7-servicing.24311.13 + 8.0.7-servicing.24312.14 4.10.0 - 8.0.7-servicing.24311.4 - 8.0.7-servicing.24311.4 + 8.0.7-servicing.24313.2 + 8.0.7-servicing.24313.2 8.0.7 - 8.0.7-servicing.24312.2 - 8.0.7-servicing.24312.2 + 8.0.7-servicing.24313.3 + 8.0.7-servicing.24313.3 From 1ae78e14d1c4ea9836184af3b62172ca467d51b2 Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Fri, 14 Jun 2024 05:27:10 +0000 Subject: [PATCH 147/222] Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-wpf build 20240613.7 Microsoft.DotNet.Wpf.GitHub , Microsoft.DotNet.Wpf.ProjectTemplates , Microsoft.NET.Sdk.WindowsDesktop From Version 8.0.7-servicing.24312.2 -> To Version 8.0.7-servicing.24313.7 Dependency coherency updates Microsoft.Private.Winforms,Microsoft.Internal.Runtime.WindowsDesktop.Transport,Microsoft.Private.Winforms,Microsoft.NETCore.App.Ref,Microsoft.Private.Winforms,VS.Redist.Common.NetCore.SharedFramework.x64.8.0,Microsoft.Private.Winforms,Microsoft.NETCore.App.Runtime.win-x64,Microsoft.Dotnet.WinForms.ProjectTemplates,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,System.Security.Cryptography.Xml,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,System.Drawing.Common From Version 8.0.7-servicing.24311.4 -> To Version 8.0.7-servicing.24313.8 (parent: Microsoft.DotNet.Wpf.GitHub --- NuGet.config | 8 ++++---- eng/Version.Details.xml | 36 ++++++++++++++++++------------------ eng/Versions.props | 12 ++++++------ 3 files changed, 28 insertions(+), 28 deletions(-) diff --git a/NuGet.config b/NuGet.config index d291a3bac..4efaf4182 100644 --- a/NuGet.config +++ b/NuGet.config @@ -9,10 +9,10 @@ - + - + @@ -25,10 +25,10 @@ - + - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 150a308dc..ca7d35af3 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,41 +1,41 @@ - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - cc6880ce36d783678284d36e8397fc30fda93c8a + 2aade6beb02ea367fd97c4070a4198802fe61c03 - + https://dev.azure.com/dnceng/internal/_git/dotnet-winforms - bd8c5c8606471a9c43ce856d3454a1a14e2e389c + fdc20074cf1e48b8cf11fe6ac78f255b1fbfe611 - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - 28dd9040cdd0ac1401ae854390cd40d8a7d711a8 + 43bb8cc831c2658e1117415019264bfe6f644f94 - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - 28dd9040cdd0ac1401ae854390cd40d8a7d711a8 + 43bb8cc831c2658e1117415019264bfe6f644f94 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - cc6880ce36d783678284d36e8397fc30fda93c8a + 2aade6beb02ea367fd97c4070a4198802fe61c03 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - cc6880ce36d783678284d36e8397fc30fda93c8a + 2aade6beb02ea367fd97c4070a4198802fe61c03 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - cc6880ce36d783678284d36e8397fc30fda93c8a + 2aade6beb02ea367fd97c4070a4198802fe61c03 - + https://dev.azure.com/dnceng/internal/_git/dotnet-winforms - bd8c5c8606471a9c43ce856d3454a1a14e2e389c + fdc20074cf1e48b8cf11fe6ac78f255b1fbfe611 - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - 28dd9040cdd0ac1401ae854390cd40d8a7d711a8 + 43bb8cc831c2658e1117415019264bfe6f644f94 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime @@ -115,7 +115,7 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - cc6880ce36d783678284d36e8397fc30fda93c8a + 2aade6beb02ea367fd97c4070a4198802fe61c03 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime @@ -147,7 +147,7 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-winforms - bd8c5c8606471a9c43ce856d3454a1a14e2e389c + fdc20074cf1e48b8cf11fe6ac78f255b1fbfe611 diff --git a/eng/Versions.props b/eng/Versions.props index 039a83821..eecd539c4 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -25,7 +25,7 @@ 6.2.4 - 8.0.7-servicing.24312.14 + 8.0.7-servicing.24313.11 8.0.7 8.0.7 8.0.0 @@ -61,15 +61,15 @@ 8.0.0 8.0.0 8.0.0 - 8.0.7-servicing.24312.14 + 8.0.7-servicing.24313.11 4.10.0 - 8.0.7-servicing.24313.2 - 8.0.7-servicing.24313.2 + 8.0.7-servicing.24313.8 + 8.0.7-servicing.24313.8 8.0.7 - 8.0.7-servicing.24313.3 - 8.0.7-servicing.24313.3 + 8.0.7-servicing.24313.7 + 8.0.7-servicing.24313.7 From 28360e2ab993d086612b93a2108424ebabf7ca29 Mon Sep 17 00:00:00 2001 From: Sean Reeser Date: Tue, 2 Jul 2024 10:43:57 -0700 Subject: [PATCH 148/222] Update branding to 8.0.8 --- eng/Versions.props | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eng/Versions.props b/eng/Versions.props index 003fa8066..b495cfcce 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -2,7 +2,7 @@ 8 0 - 7 + 8 servicing From 1bb7decf3b6a1b69cd8e85f54662d830ce92f55f Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Thu, 11 Jul 2024 16:55:26 +0000 Subject: [PATCH 149/222] [release/8.0] Update dependencies from dotnet/arcade (#4503) [release/8.0] Update dependencies from dotnet/arcade --- NuGet.config | 16 +++++++ eng/Version.Details.xml | 24 +++++------ eng/Versions.props | 8 ++-- eng/common/post-build/publish-using-darc.ps1 | 15 +++---- .../job/publish-build-assets.yml | 21 +++++---- .../templates-official/job/source-build.yml | 8 ++++ .../job/source-index-stage1.yml | 16 +++---- .../templates-official/jobs/source-build.yml | 8 ++++ .../post-build/post-build.yml | 8 ++-- .../steps/enable-internal-runtimes.yml | 28 ++++++++++++ .../steps/get-delegation-sas.yml | 43 +++++++++++++++++++ .../steps/get-federated-access-token.yml | 28 ++++++++++++ .../templates/job/publish-build-assets.yml | 21 +++++---- eng/common/templates/job/source-build.yml | 8 ++++ .../templates/job/source-index-stage1.yml | 11 ++--- eng/common/templates/jobs/source-build.yml | 8 ++++ .../templates/post-build/post-build.yml | 8 ++-- .../post-build/setup-maestro-vars.yml | 28 ++++++------ .../steps/enable-internal-runtimes.yml | 28 ++++++++++++ .../templates/steps/get-delegation-sas.yml | 43 +++++++++++++++++++ .../steps/get-federated-access-token.yml | 28 ++++++++++++ global.json | 4 +- 22 files changed, 332 insertions(+), 78 deletions(-) create mode 100644 eng/common/templates-official/steps/enable-internal-runtimes.yml create mode 100644 eng/common/templates-official/steps/get-delegation-sas.yml create mode 100644 eng/common/templates-official/steps/get-federated-access-token.yml create mode 100644 eng/common/templates/steps/enable-internal-runtimes.yml create mode 100644 eng/common/templates/steps/get-delegation-sas.yml create mode 100644 eng/common/templates/steps/get-federated-access-token.yml diff --git a/NuGet.config b/NuGet.config index 4efaf4182..0152e5e5c 100644 --- a/NuGet.config +++ b/NuGet.config @@ -10,9 +10,17 @@ + + + + + + + + @@ -25,9 +33,17 @@ + + + + + + + + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index ca7d35af3..83264407c 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -151,29 +151,29 @@ - + https://github.com/dotnet/arcade - e6f70c7dd528f05cd28cec2a179d58c22e91d9ac + c9efa535175049eb9cba06cae1f8c3d5dbe768a9 - + https://github.com/dotnet/arcade - e6f70c7dd528f05cd28cec2a179d58c22e91d9ac + c9efa535175049eb9cba06cae1f8c3d5dbe768a9 - + https://github.com/dotnet/arcade - e6f70c7dd528f05cd28cec2a179d58c22e91d9ac + c9efa535175049eb9cba06cae1f8c3d5dbe768a9 - + https://github.com/dotnet/arcade - e6f70c7dd528f05cd28cec2a179d58c22e91d9ac + c9efa535175049eb9cba06cae1f8c3d5dbe768a9 - + https://github.com/dotnet/arcade - e6f70c7dd528f05cd28cec2a179d58c22e91d9ac + c9efa535175049eb9cba06cae1f8c3d5dbe768a9 - + https://github.com/dotnet/arcade - e6f70c7dd528f05cd28cec2a179d58c22e91d9ac + c9efa535175049eb9cba06cae1f8c3d5dbe768a9 diff --git a/eng/Versions.props b/eng/Versions.props index bc73eb504..9f9b42c8b 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -12,10 +12,10 @@ - 8.0.0-beta.24266.3 - 8.0.0-beta.24266.3 - 8.0.0-beta.24266.3 - 8.0.0-beta.24266.3 + 8.0.0-beta.24360.5 + 8.0.0-beta.24360.5 + 8.0.0-beta.24360.5 + 8.0.0-beta.24360.5 4.5.0 4.8.6 diff --git a/eng/common/post-build/publish-using-darc.ps1 b/eng/common/post-build/publish-using-darc.ps1 index 5a3a32ea8..238945cb5 100644 --- a/eng/common/post-build/publish-using-darc.ps1 +++ b/eng/common/post-build/publish-using-darc.ps1 @@ -2,7 +2,6 @@ param( [Parameter(Mandatory=$true)][int] $BuildId, [Parameter(Mandatory=$true)][int] $PublishingInfraVersion, [Parameter(Mandatory=$true)][string] $AzdoToken, - [Parameter(Mandatory=$true)][string] $MaestroToken, [Parameter(Mandatory=$false)][string] $MaestroApiEndPoint = 'https://maestro.dot.net', [Parameter(Mandatory=$true)][string] $WaitPublishingFinish, [Parameter(Mandatory=$false)][string] $ArtifactsPublishingAdditionalParameters, @@ -31,13 +30,13 @@ try { } & $darc add-build-to-channel ` - --id $buildId ` - --publishing-infra-version $PublishingInfraVersion ` - --default-channels ` - --source-branch main ` - --azdev-pat $AzdoToken ` - --bar-uri $MaestroApiEndPoint ` - --password $MaestroToken ` + --id $buildId ` + --publishing-infra-version $PublishingInfraVersion ` + --default-channels ` + --source-branch main ` + --azdev-pat "$AzdoToken" ` + --bar-uri "$MaestroApiEndPoint" ` + --ci ` @optionalParams if ($LastExitCode -ne 0) { diff --git a/eng/common/templates-official/job/publish-build-assets.yml b/eng/common/templates-official/job/publish-build-assets.yml index 589ac80a1..ba3e7df81 100644 --- a/eng/common/templates-official/job/publish-build-assets.yml +++ b/eng/common/templates-official/job/publish-build-assets.yml @@ -76,13 +76,16 @@ jobs: - task: NuGetAuthenticate@1 - - task: PowerShell@2 + - task: AzureCLI@2 displayName: Publish Build Assets inputs: - filePath: eng\common\sdk-task.ps1 - arguments: -task PublishBuildAssets -restore -msbuildEngine dotnet + azureSubscription: "Darc: Maestro Production" + scriptType: ps + scriptLocation: scriptPath + scriptPath: $(Build.SourcesDirectory)/eng/common/sdk-task.ps1 + arguments: > + -task PublishBuildAssets -restore -msbuildEngine dotnet /p:ManifestsPath='$(Build.StagingDirectory)/Download/AssetManifests' - /p:BuildAssetRegistryToken=$(MaestroAccessToken) /p:MaestroApiEndpoint=https://maestro-prod.westus2.cloudapp.azure.com /p:PublishUsingPipelines=${{ parameters.publishUsingPipelines }} /p:OfficialBuildId=$(Build.BuildNumber) @@ -137,14 +140,16 @@ jobs: BARBuildId: ${{ parameters.BARBuildId }} PromoteToChannelIds: ${{ parameters.PromoteToChannelIds }} - - task: PowerShell@2 + - task: AzureCLI@2 displayName: Publish Using Darc inputs: - filePath: $(Build.SourcesDirectory)/eng/common/post-build/publish-using-darc.ps1 - arguments: -BuildId $(BARBuildId) + azureSubscription: "Darc: Maestro Production" + scriptType: ps + scriptLocation: scriptPath + scriptPath: $(Build.SourcesDirectory)/eng/common/post-build/publish-using-darc.ps1 + arguments: -BuildId $(BARBuildId) -PublishingInfraVersion 3 -AzdoToken '$(publishing-dnceng-devdiv-code-r-build-re)' - -MaestroToken '$(MaestroApiAccessToken)' -WaitPublishingFinish true -ArtifactsPublishingAdditionalParameters '${{ parameters.artifactsPublishingAdditionalParameters }}' -SymbolPublishingAdditionalParameters '${{ parameters.symbolPublishingAdditionalParameters }}' diff --git a/eng/common/templates-official/job/source-build.yml b/eng/common/templates-official/job/source-build.yml index f193dfbe2..f983033bb 100644 --- a/eng/common/templates-official/job/source-build.yml +++ b/eng/common/templates-official/job/source-build.yml @@ -31,6 +31,12 @@ parameters: # container and pool. platform: {} + # If set to true and running on a non-public project, + # Internal blob storage locations will be enabled. + # This is not enabled by default because many repositories do not need internal sources + # and do not need to have the required service connections approved in the pipeline. + enableInternalSources: false + jobs: - job: ${{ parameters.jobNamePrefix }}_${{ parameters.platform.name }} displayName: Source-Build (${{ parameters.platform.name }}) @@ -62,6 +68,8 @@ jobs: clean: all steps: + - ${{ if eq(parameters.enableInternalSources, true) }}: + - template: /eng/common/templates-official/steps/enable-internal-runtimes.yml - template: /eng/common/templates-official/steps/source-build.yml parameters: platform: ${{ parameters.platform }} diff --git a/eng/common/templates-official/job/source-index-stage1.yml b/eng/common/templates-official/job/source-index-stage1.yml index 43ee0c202..60dfb6b2d 100644 --- a/eng/common/templates-official/job/source-index-stage1.yml +++ b/eng/common/templates-official/job/source-index-stage1.yml @@ -23,7 +23,7 @@ jobs: value: ${{ parameters.sourceIndexPackageSource }} - name: BinlogPath value: ${{ parameters.binlogPath }} - - template: /eng/common/templates/variables/pool-providers.yml + - template: /eng/common/templates-official/variables/pool-providers.yml ${{ if ne(parameters.pool, '') }}: pool: ${{ parameters.pool }} @@ -34,7 +34,8 @@ jobs: demands: ImageOverride -equals windows.vs2019.amd64.open ${{ if eq(variables['System.TeamProject'], 'internal') }}: name: $(DncEngInternalBuildPool) - demands: ImageOverride -equals windows.vs2019.amd64 + image: windows.vs2022.amd64 + os: windows steps: - ${{ each preStep in parameters.preSteps }}: @@ -70,16 +71,13 @@ jobs: scriptType: 'ps' scriptLocation: 'inlineScript' inlineScript: | - echo "##vso[task.setvariable variable=ARM_CLIENT_ID]$env:servicePrincipalId" - echo "##vso[task.setvariable variable=ARM_ID_TOKEN]$env:idToken" - echo "##vso[task.setvariable variable=ARM_TENANT_ID]$env:tenantId" + echo "##vso[task.setvariable variable=ARM_CLIENT_ID;issecret=true]$env:servicePrincipalId" + echo "##vso[task.setvariable variable=ARM_ID_TOKEN;issecret=true]$env:idToken" + echo "##vso[task.setvariable variable=ARM_TENANT_ID;issecret=true]$env:tenantId" - script: | - echo "Client ID: $(ARM_CLIENT_ID)" - echo "ID Token: $(ARM_ID_TOKEN)" - echo "Tenant ID: $(ARM_TENANT_ID)" az login --service-principal -u $(ARM_CLIENT_ID) --tenant $(ARM_TENANT_ID) --allow-no-subscriptions --federated-token $(ARM_ID_TOKEN) displayName: "Login to Azure" - script: $(Agent.TempDirectory)/.source-index/tools/UploadIndexStage1 -i .source-index/stage1output -n $(Build.Repository.Name) -s netsourceindexstage1 -b stage1 - displayName: Upload stage1 artifacts to source index \ No newline at end of file + displayName: Upload stage1 artifacts to source index diff --git a/eng/common/templates-official/jobs/source-build.yml b/eng/common/templates-official/jobs/source-build.yml index 08e5db9bb..5cf6a269c 100644 --- a/eng/common/templates-official/jobs/source-build.yml +++ b/eng/common/templates-official/jobs/source-build.yml @@ -21,6 +21,12 @@ parameters: # one job runs on 'defaultManagedPlatform'. platforms: [] + # If set to true and running on a non-public project, + # Internal nuget and blob storage locations will be enabled. + # This is not enabled by default because many repositories do not need internal sources + # and do not need to have the required service connections approved in the pipeline. + enableInternalSources: false + jobs: - ${{ if ne(parameters.allCompletedJobId, '') }}: @@ -38,9 +44,11 @@ jobs: parameters: jobNamePrefix: ${{ parameters.jobNamePrefix }} platform: ${{ platform }} + enableInternalSources: ${{ parameters.enableInternalSources }} - ${{ if eq(length(parameters.platforms), 0) }}: - template: /eng/common/templates-official/job/source-build.yml parameters: jobNamePrefix: ${{ parameters.jobNamePrefix }} platform: ${{ parameters.defaultManagedPlatform }} + enableInternalSources: ${{ parameters.enableInternalSources }} diff --git a/eng/common/templates-official/post-build/post-build.yml b/eng/common/templates-official/post-build/post-build.yml index da1f40958..0dfa387e7 100644 --- a/eng/common/templates-official/post-build/post-build.yml +++ b/eng/common/templates-official/post-build/post-build.yml @@ -272,14 +272,16 @@ stages: - task: NuGetAuthenticate@1 - - task: PowerShell@2 + - task: AzureCLI@2 displayName: Publish Using Darc inputs: - filePath: $(Build.SourcesDirectory)/eng/common/post-build/publish-using-darc.ps1 + azureSubscription: "Darc: Maestro Production" + scriptType: ps + scriptLocation: scriptPath + scriptPath: $(Build.SourcesDirectory)/eng/common/post-build/publish-using-darc.ps1 arguments: -BuildId $(BARBuildId) -PublishingInfraVersion ${{ parameters.publishingInfraVersion }} -AzdoToken '$(publishing-dnceng-devdiv-code-r-build-re)' - -MaestroToken '$(MaestroApiAccessToken)' -WaitPublishingFinish true -ArtifactsPublishingAdditionalParameters '${{ parameters.artifactsPublishingAdditionalParameters }}' -SymbolPublishingAdditionalParameters '${{ parameters.symbolPublishingAdditionalParameters }}' diff --git a/eng/common/templates-official/steps/enable-internal-runtimes.yml b/eng/common/templates-official/steps/enable-internal-runtimes.yml new file mode 100644 index 000000000..93a8394a6 --- /dev/null +++ b/eng/common/templates-official/steps/enable-internal-runtimes.yml @@ -0,0 +1,28 @@ +# Obtains internal runtime download credentials and populates the 'dotnetbuilds-internal-container-read-token-base64' +# variable with the base64-encoded SAS token, by default + +parameters: +- name: federatedServiceConnection + type: string + default: 'dotnetbuilds-internal-read' +- name: outputVariableName + type: string + default: 'dotnetbuilds-internal-container-read-token-base64' +- name: expiryInHours + type: number + default: 1 +- name: base64Encode + type: boolean + default: true + +steps: +- ${{ if ne(variables['System.TeamProject'], 'public') }}: + - template: /eng/common/templates-official/steps/get-delegation-sas.yml + parameters: + federatedServiceConnection: ${{ parameters.federatedServiceConnection }} + outputVariableName: ${{ parameters.outputVariableName }} + expiryInHours: ${{ parameters.expiryInHours }} + base64Encode: ${{ parameters.base64Encode }} + storageAccount: dotnetbuilds + container: internal + permissions: rl diff --git a/eng/common/templates-official/steps/get-delegation-sas.yml b/eng/common/templates-official/steps/get-delegation-sas.yml new file mode 100644 index 000000000..c0e8f9131 --- /dev/null +++ b/eng/common/templates-official/steps/get-delegation-sas.yml @@ -0,0 +1,43 @@ +parameters: +- name: federatedServiceConnection + type: string +- name: outputVariableName + type: string +- name: expiryInHours + type: number + default: 1 +- name: base64Encode + type: boolean + default: false +- name: storageAccount + type: string +- name: container + type: string +- name: permissions + type: string + default: 'rl' + +steps: +- task: AzureCLI@2 + displayName: 'Generate delegation SAS Token for ${{ parameters.storageAccount }}/${{ parameters.container }}' + inputs: + azureSubscription: ${{ parameters.federatedServiceConnection }} + scriptType: 'pscore' + scriptLocation: 'inlineScript' + inlineScript: | + # Calculate the expiration of the SAS token and convert to UTC + $expiry = (Get-Date).AddHours(${{ parameters.expiryInHours }}).ToUniversalTime().ToString("yyyy-MM-ddTHH:mm:ssZ") + + $sas = az storage container generate-sas --account-name ${{ parameters.storageAccount }} --name ${{ parameters.container }} --permissions ${{ parameters.permissions }} --expiry $expiry --auth-mode login --as-user -o tsv + + if ($LASTEXITCODE -ne 0) { + Write-Error "Failed to generate SAS token." + exit 1 + } + + if ('${{ parameters.base64Encode }}' -eq 'true') { + $sas = [Convert]::ToBase64String([System.Text.Encoding]::UTF8.GetBytes($sas)) + } + + Write-Host "Setting '${{ parameters.outputVariableName }}' with the access token value" + Write-Host "##vso[task.setvariable variable=${{ parameters.outputVariableName }};issecret=true]$sas" diff --git a/eng/common/templates-official/steps/get-federated-access-token.yml b/eng/common/templates-official/steps/get-federated-access-token.yml new file mode 100644 index 000000000..e3786cef6 --- /dev/null +++ b/eng/common/templates-official/steps/get-federated-access-token.yml @@ -0,0 +1,28 @@ +parameters: +- name: federatedServiceConnection + type: string +- name: outputVariableName + type: string +# Resource to get a token for. Common values include: +# - '499b84ac-1321-427f-aa17-267ca6975798' for Azure DevOps +# - 'https://storage.azure.com/' for storage +# Defaults to Azure DevOps +- name: resource + type: string + default: '499b84ac-1321-427f-aa17-267ca6975798' + +steps: +- task: AzureCLI@2 + displayName: 'Getting federated access token for feeds' + inputs: + azureSubscription: ${{ parameters.federatedServiceConnection }} + scriptType: 'pscore' + scriptLocation: 'inlineScript' + inlineScript: | + $accessToken = az account get-access-token --query accessToken --resource ${{ parameters.resource }} --output tsv + if ($LASTEXITCODE -ne 0) { + Write-Error "Failed to get access token for resource '${{ parameters.resource }}'" + exit 1 + } + Write-Host "Setting '${{ parameters.outputVariableName }}' with the access token value" + Write-Host "##vso[task.setvariable variable=${{ parameters.outputVariableName }};issecret=true]$accessToken" diff --git a/eng/common/templates/job/publish-build-assets.yml b/eng/common/templates/job/publish-build-assets.yml index 8ec0151de..57a41f0a3 100644 --- a/eng/common/templates/job/publish-build-assets.yml +++ b/eng/common/templates/job/publish-build-assets.yml @@ -74,13 +74,16 @@ jobs: - task: NuGetAuthenticate@1 - - task: PowerShell@2 + - task: AzureCLI@2 displayName: Publish Build Assets inputs: - filePath: eng\common\sdk-task.ps1 - arguments: -task PublishBuildAssets -restore -msbuildEngine dotnet + azureSubscription: "Darc: Maestro Production" + scriptType: ps + scriptLocation: scriptPath + scriptPath: $(Build.SourcesDirectory)/eng/common/sdk-task.ps1 + arguments: > + -task PublishBuildAssets -restore -msbuildEngine dotnet /p:ManifestsPath='$(Build.StagingDirectory)/Download/AssetManifests' - /p:BuildAssetRegistryToken=$(MaestroAccessToken) /p:MaestroApiEndpoint=https://maestro.dot.net /p:PublishUsingPipelines=${{ parameters.publishUsingPipelines }} /p:OfficialBuildId=$(Build.BuildNumber) @@ -133,14 +136,16 @@ jobs: BARBuildId: ${{ parameters.BARBuildId }} PromoteToChannelIds: ${{ parameters.PromoteToChannelIds }} - - task: PowerShell@2 + - task: AzureCLI@2 displayName: Publish Using Darc inputs: - filePath: $(Build.SourcesDirectory)/eng/common/post-build/publish-using-darc.ps1 - arguments: -BuildId $(BARBuildId) + azureSubscription: "Darc: Maestro Production" + scriptType: ps + scriptLocation: scriptPath + scriptPath: $(Build.SourcesDirectory)/eng/common/post-build/publish-using-darc.ps1 + arguments: -BuildId $(BARBuildId) -PublishingInfraVersion 3 -AzdoToken '$(publishing-dnceng-devdiv-code-r-build-re)' - -MaestroToken '$(MaestroApiAccessToken)' -WaitPublishingFinish true -ArtifactsPublishingAdditionalParameters '${{ parameters.artifactsPublishingAdditionalParameters }}' -SymbolPublishingAdditionalParameters '${{ parameters.symbolPublishingAdditionalParameters }}' diff --git a/eng/common/templates/job/source-build.yml b/eng/common/templates/job/source-build.yml index 8a3deef2b..c0ff472b6 100644 --- a/eng/common/templates/job/source-build.yml +++ b/eng/common/templates/job/source-build.yml @@ -31,6 +31,12 @@ parameters: # container and pool. platform: {} + # If set to true and running on a non-public project, + # Internal blob storage locations will be enabled. + # This is not enabled by default because many repositories do not need internal sources + # and do not need to have the required service connections approved in the pipeline. + enableInternalSources: false + jobs: - job: ${{ parameters.jobNamePrefix }}_${{ parameters.platform.name }} displayName: Source-Build (${{ parameters.platform.name }}) @@ -61,6 +67,8 @@ jobs: clean: all steps: + - ${{ if eq(parameters.enableInternalSources, true) }}: + - template: /eng/common/templates/steps/enable-internal-runtimes.yml - template: /eng/common/templates/steps/source-build.yml parameters: platform: ${{ parameters.platform }} diff --git a/eng/common/templates/job/source-index-stage1.yml b/eng/common/templates/job/source-index-stage1.yml index 43ee0c202..0b6bb89dc 100644 --- a/eng/common/templates/job/source-index-stage1.yml +++ b/eng/common/templates/job/source-index-stage1.yml @@ -70,16 +70,13 @@ jobs: scriptType: 'ps' scriptLocation: 'inlineScript' inlineScript: | - echo "##vso[task.setvariable variable=ARM_CLIENT_ID]$env:servicePrincipalId" - echo "##vso[task.setvariable variable=ARM_ID_TOKEN]$env:idToken" - echo "##vso[task.setvariable variable=ARM_TENANT_ID]$env:tenantId" + echo "##vso[task.setvariable variable=ARM_CLIENT_ID;issecret=true]$env:servicePrincipalId" + echo "##vso[task.setvariable variable=ARM_ID_TOKEN;issecret=true]$env:idToken" + echo "##vso[task.setvariable variable=ARM_TENANT_ID;issecret=true]$env:tenantId" - script: | - echo "Client ID: $(ARM_CLIENT_ID)" - echo "ID Token: $(ARM_ID_TOKEN)" - echo "Tenant ID: $(ARM_TENANT_ID)" az login --service-principal -u $(ARM_CLIENT_ID) --tenant $(ARM_TENANT_ID) --allow-no-subscriptions --federated-token $(ARM_ID_TOKEN) displayName: "Login to Azure" - script: $(Agent.TempDirectory)/.source-index/tools/UploadIndexStage1 -i .source-index/stage1output -n $(Build.Repository.Name) -s netsourceindexstage1 -b stage1 - displayName: Upload stage1 artifacts to source index \ No newline at end of file + displayName: Upload stage1 artifacts to source index diff --git a/eng/common/templates/jobs/source-build.yml b/eng/common/templates/jobs/source-build.yml index a15b07eb5..5f46bfa89 100644 --- a/eng/common/templates/jobs/source-build.yml +++ b/eng/common/templates/jobs/source-build.yml @@ -21,6 +21,12 @@ parameters: # one job runs on 'defaultManagedPlatform'. platforms: [] + # If set to true and running on a non-public project, + # Internal nuget and blob storage locations will be enabled. + # This is not enabled by default because many repositories do not need internal sources + # and do not need to have the required service connections approved in the pipeline. + enableInternalSources: false + jobs: - ${{ if ne(parameters.allCompletedJobId, '') }}: @@ -38,9 +44,11 @@ jobs: parameters: jobNamePrefix: ${{ parameters.jobNamePrefix }} platform: ${{ platform }} + enableInternalSources: ${{ parameters.enableInternalSources }} - ${{ if eq(length(parameters.platforms), 0) }}: - template: /eng/common/templates/job/source-build.yml parameters: jobNamePrefix: ${{ parameters.jobNamePrefix }} platform: ${{ parameters.defaultManagedPlatform }} + enableInternalSources: ${{ parameters.enableInternalSources }} diff --git a/eng/common/templates/post-build/post-build.yml b/eng/common/templates/post-build/post-build.yml index aba44a25a..2db493346 100644 --- a/eng/common/templates/post-build/post-build.yml +++ b/eng/common/templates/post-build/post-build.yml @@ -268,14 +268,16 @@ stages: - task: NuGetAuthenticate@1 - - task: PowerShell@2 + - task: AzureCLI@2 displayName: Publish Using Darc inputs: - filePath: $(Build.SourcesDirectory)/eng/common/post-build/publish-using-darc.ps1 + azureSubscription: "Darc: Maestro Production" + scriptType: ps + scriptLocation: scriptPath + scriptPath: $(Build.SourcesDirectory)/eng/common/post-build/publish-using-darc.ps1 arguments: -BuildId $(BARBuildId) -PublishingInfraVersion ${{ parameters.publishingInfraVersion }} -AzdoToken '$(publishing-dnceng-devdiv-code-r-build-re)' - -MaestroToken '$(MaestroApiAccessToken)' -WaitPublishingFinish true -ArtifactsPublishingAdditionalParameters '${{ parameters.artifactsPublishingAdditionalParameters }}' -SymbolPublishingAdditionalParameters '${{ parameters.symbolPublishingAdditionalParameters }}' diff --git a/eng/common/templates/post-build/setup-maestro-vars.yml b/eng/common/templates/post-build/setup-maestro-vars.yml index 0c87f149a..64b9abc68 100644 --- a/eng/common/templates/post-build/setup-maestro-vars.yml +++ b/eng/common/templates/post-build/setup-maestro-vars.yml @@ -11,13 +11,14 @@ steps: artifactName: ReleaseConfigs checkDownloadedFiles: true - - task: PowerShell@2 + - task: AzureCLI@2 name: setReleaseVars displayName: Set Release Configs Vars inputs: - targetType: inline - pwsh: true - script: | + azureSubscription: "Darc: Maestro Production" + scriptType: pscore + scriptLocation: inlineScript + inlineScript: | try { if (!$Env:PromoteToMaestroChannels -or $Env:PromoteToMaestroChannels.Trim() -eq '') { $Content = Get-Content $(Build.StagingDirectory)/ReleaseConfigs/ReleaseConfigs.txt @@ -31,15 +32,16 @@ steps: $AzureDevOpsBuildId = $Env:Build_BuildId } else { - $buildApiEndpoint = "${Env:MaestroApiEndPoint}/api/builds/${Env:BARBuildId}?api-version=${Env:MaestroApiVersion}" + . $(Build.SourcesDirectory)\eng\common\tools.ps1 + $darc = Get-Darc + $buildInfo = & $darc get-build ` + --id ${{ parameters.BARBuildId }} ` + --extended ` + --output-format json ` + --ci ` + | convertFrom-Json - $apiHeaders = New-Object 'System.Collections.Generic.Dictionary[[String],[String]]' - $apiHeaders.Add('Accept', 'application/json') - $apiHeaders.Add('Authorization',"Bearer ${Env:MAESTRO_API_TOKEN}") - - $buildInfo = try { Invoke-WebRequest -Method Get -Uri $buildApiEndpoint -Headers $apiHeaders | ConvertFrom-Json } catch { Write-Host "Error: $_" } - - $BarId = $Env:BARBuildId + $BarId = ${{ parameters.BARBuildId }} $Channels = $Env:PromoteToMaestroChannels -split "," $Channels = $Channels -join "][" $Channels = "[$Channels]" @@ -65,6 +67,4 @@ steps: exit 1 } env: - MAESTRO_API_TOKEN: $(MaestroApiAccessToken) - BARBuildId: ${{ parameters.BARBuildId }} PromoteToMaestroChannels: ${{ parameters.PromoteToChannelIds }} diff --git a/eng/common/templates/steps/enable-internal-runtimes.yml b/eng/common/templates/steps/enable-internal-runtimes.yml new file mode 100644 index 000000000..54dc9416c --- /dev/null +++ b/eng/common/templates/steps/enable-internal-runtimes.yml @@ -0,0 +1,28 @@ +# Obtains internal runtime download credentials and populates the 'dotnetbuilds-internal-container-read-token-base64' +# variable with the base64-encoded SAS token, by default + +parameters: +- name: federatedServiceConnection + type: string + default: 'dotnetbuilds-internal-read' +- name: outputVariableName + type: string + default: 'dotnetbuilds-internal-container-read-token-base64' +- name: expiryInHours + type: number + default: 1 +- name: base64Encode + type: boolean + default: true + +steps: +- ${{ if ne(variables['System.TeamProject'], 'public') }}: + - template: /eng/common/templates/steps/get-delegation-sas.yml + parameters: + federatedServiceConnection: ${{ parameters.federatedServiceConnection }} + outputVariableName: ${{ parameters.outputVariableName }} + expiryInHours: ${{ parameters.expiryInHours }} + base64Encode: ${{ parameters.base64Encode }} + storageAccount: dotnetbuilds + container: internal + permissions: rl diff --git a/eng/common/templates/steps/get-delegation-sas.yml b/eng/common/templates/steps/get-delegation-sas.yml new file mode 100644 index 000000000..c0e8f9131 --- /dev/null +++ b/eng/common/templates/steps/get-delegation-sas.yml @@ -0,0 +1,43 @@ +parameters: +- name: federatedServiceConnection + type: string +- name: outputVariableName + type: string +- name: expiryInHours + type: number + default: 1 +- name: base64Encode + type: boolean + default: false +- name: storageAccount + type: string +- name: container + type: string +- name: permissions + type: string + default: 'rl' + +steps: +- task: AzureCLI@2 + displayName: 'Generate delegation SAS Token for ${{ parameters.storageAccount }}/${{ parameters.container }}' + inputs: + azureSubscription: ${{ parameters.federatedServiceConnection }} + scriptType: 'pscore' + scriptLocation: 'inlineScript' + inlineScript: | + # Calculate the expiration of the SAS token and convert to UTC + $expiry = (Get-Date).AddHours(${{ parameters.expiryInHours }}).ToUniversalTime().ToString("yyyy-MM-ddTHH:mm:ssZ") + + $sas = az storage container generate-sas --account-name ${{ parameters.storageAccount }} --name ${{ parameters.container }} --permissions ${{ parameters.permissions }} --expiry $expiry --auth-mode login --as-user -o tsv + + if ($LASTEXITCODE -ne 0) { + Write-Error "Failed to generate SAS token." + exit 1 + } + + if ('${{ parameters.base64Encode }}' -eq 'true') { + $sas = [Convert]::ToBase64String([System.Text.Encoding]::UTF8.GetBytes($sas)) + } + + Write-Host "Setting '${{ parameters.outputVariableName }}' with the access token value" + Write-Host "##vso[task.setvariable variable=${{ parameters.outputVariableName }};issecret=true]$sas" diff --git a/eng/common/templates/steps/get-federated-access-token.yml b/eng/common/templates/steps/get-federated-access-token.yml new file mode 100644 index 000000000..c8c49cc0e --- /dev/null +++ b/eng/common/templates/steps/get-federated-access-token.yml @@ -0,0 +1,28 @@ +parameters: +- name: federatedServiceConnection + type: string +- name: outputVariableName + type: string +# Resource to get a token for. Common values include: +# - '499b84ac-1321-427f-aa17-267ca6975798' for Azure DevOps +# - 'https://storage.azure.com/' for storage +# Defaults to Azure DevOps +- name: resource + type: string + default: '499b84ac-1321-427f-aa17-267ca6975798' + +steps: +- task: AzureCLI@2 + displayName: 'Getting federated access token for feeds' + inputs: + azureSubscription: ${{ parameters.federatedServiceConnection }} + scriptType: 'pscore' + scriptLocation: 'inlineScript' + inlineScript: | + $accessToken = az account get-access-token --query accessToken --resource ${{ parameters.resource }} --output tsv + if ($LASTEXITCODE -ne 0) { + Write-Error "Failed to get access token for resource '${{ parameters.resource }}'" + exit 1 + } + Write-Host "Setting '${{ parameters.outputVariableName }}' with the access token value" + Write-Host "##vso[task.setvariable variable=${{ parameters.outputVariableName }};issecret=true]$accessToken" \ No newline at end of file diff --git a/global.json b/global.json index e9e55c871..d9d6b2139 100644 --- a/global.json +++ b/global.json @@ -3,8 +3,8 @@ "dotnet": "8.0.101" }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "8.0.0-beta.24266.3", - "Microsoft.DotNet.SharedFramework.Sdk": "8.0.0-beta.24266.3", + "Microsoft.DotNet.Arcade.Sdk": "8.0.0-beta.24360.5", + "Microsoft.DotNet.SharedFramework.Sdk": "8.0.0-beta.24360.5", "Microsoft.Build.NoTargets": "3.7.0", "Microsoft.Build.Traversal": "3.4.0" } From 146b6514c9253b0887e06bf4fdf4f09b09467475 Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Wed, 17 Jul 2024 03:06:52 +0000 Subject: [PATCH 150/222] Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-wpf build 20240716.7 Microsoft.DotNet.Wpf.GitHub , Microsoft.DotNet.Wpf.ProjectTemplates , Microsoft.NET.Sdk.WindowsDesktop From Version 8.0.7-servicing.24313.7 -> To Version 8.0.8-servicing.24366.7 Dependency coherency updates Microsoft.Private.Winforms,Microsoft.Internal.Runtime.WindowsDesktop.Transport,Microsoft.Private.Winforms,Microsoft.NETCore.App.Ref,Microsoft.Private.Winforms,VS.Redist.Common.NetCore.SharedFramework.x64.8.0,Microsoft.Private.Winforms,Microsoft.NETCore.App.Runtime.win-x64,Microsoft.Dotnet.WinForms.ProjectTemplates,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,System.Drawing.Common From Version 8.0.7-servicing.24313.8 -> To Version 8.0.8-servicing.24366.6 (parent: Microsoft.DotNet.Wpf.GitHub --- NuGet.config | 24 ++++-------------------- eng/Version.Details.xml | 40 ++++++++++++++++++++-------------------- eng/Versions.props | 18 +++++++++--------- 3 files changed, 33 insertions(+), 49 deletions(-) diff --git a/NuGet.config b/NuGet.config index 0152e5e5c..930266b68 100644 --- a/NuGet.config +++ b/NuGet.config @@ -9,18 +9,10 @@ - - - - - + - - - - - + @@ -33,18 +25,10 @@ - - - - - + - - - - - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 83264407c..7cebd55c0 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,41 +1,41 @@ - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 2aade6beb02ea367fd97c4070a4198802fe61c03 + 08338fcaa5c9b9a8190abb99222fed12aaba956c - + https://dev.azure.com/dnceng/internal/_git/dotnet-winforms - fdc20074cf1e48b8cf11fe6ac78f255b1fbfe611 + bd164556d31c13b09986f597f49a83bf836c165d - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - 43bb8cc831c2658e1117415019264bfe6f644f94 + 883fc207bb50622d4458ff09ae6a62548783826a - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - 43bb8cc831c2658e1117415019264bfe6f644f94 + 883fc207bb50622d4458ff09ae6a62548783826a - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 2aade6beb02ea367fd97c4070a4198802fe61c03 + 08338fcaa5c9b9a8190abb99222fed12aaba956c - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 2aade6beb02ea367fd97c4070a4198802fe61c03 + 08338fcaa5c9b9a8190abb99222fed12aaba956c - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 2aade6beb02ea367fd97c4070a4198802fe61c03 + 08338fcaa5c9b9a8190abb99222fed12aaba956c - + https://dev.azure.com/dnceng/internal/_git/dotnet-winforms - fdc20074cf1e48b8cf11fe6ac78f255b1fbfe611 + bd164556d31c13b09986f597f49a83bf836c165d - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - 43bb8cc831c2658e1117415019264bfe6f644f94 + 883fc207bb50622d4458ff09ae6a62548783826a https://dev.azure.com/dnceng/internal/_git/dotnet-runtime @@ -145,9 +145,9 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime 5535e31a712343a63f5d7d796cd874e563e5ac14 - + https://dev.azure.com/dnceng/internal/_git/dotnet-winforms - fdc20074cf1e48b8cf11fe6ac78f255b1fbfe611 + bd164556d31c13b09986f597f49a83bf836c165d diff --git a/eng/Versions.props b/eng/Versions.props index 9f9b42c8b..0a113b92e 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -25,9 +25,9 @@ 6.2.4 - 8.0.7-servicing.24313.11 - 8.0.7 - 8.0.7 + 8.0.8-servicing.24366.12 + 8.0.8 + 8.0.8 8.0.0 5.0.0 8.0.0 @@ -61,15 +61,15 @@ 8.0.0 8.0.0 8.0.0 - 8.0.7-servicing.24313.11 + 8.0.8-servicing.24366.12 4.10.0 - 8.0.7-servicing.24313.8 - 8.0.7-servicing.24313.8 - 8.0.7 + 8.0.8-servicing.24366.6 + 8.0.8-servicing.24366.6 + 8.0.8 - 8.0.7-servicing.24313.7 - 8.0.7-servicing.24313.7 + 8.0.8-servicing.24366.7 + 8.0.8-servicing.24366.7 From f98bdbbc654d657868de97f04eee815c427d011d Mon Sep 17 00:00:00 2001 From: Sean Reeser Date: Tue, 6 Aug 2024 11:20:10 -0700 Subject: [PATCH 151/222] Update branding to 8.0.9 --- eng/Versions.props | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eng/Versions.props b/eng/Versions.props index 9f9b42c8b..adbcb10fe 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -2,7 +2,7 @@ 8 0 - 8 + 9 servicing From 5ef9b9449afda303871855df529a3ea2ac7a9bbd Mon Sep 17 00:00:00 2001 From: maestro-prod-Primary Date: Fri, 16 Aug 2024 18:10:39 +0000 Subject: [PATCH 152/222] Merged PR 41541: [internal/release/8.0] Update dependencies from dnceng/internal/dotnet-wpf This pull request updates the following dependencies [marker]: <> (Begin:05a9f0d5-ba2f-4c32-efac-08dbd545292d) ## From https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - **Subscription**: 05a9f0d5-ba2f-4c32-efac-08dbd545292d - **Build**: 20240815.4 - **Date Produced**: August 15, 2024 6:31:12 PM UTC - **Commit**: 6b54ec98e9f69b90f611e37f833d7be77621de24 - **Branch**: refs/heads/internal/release/8.0 [DependencyUpdate]: <> (Begin) - **Updates**: - **Microsoft.DotNet.Wpf.GitHub**: [from 8.0.9-servicing.24406.8 to 8.0.9-servicing.24415.4][2] - **Microsoft.DotNet.Wpf.ProjectTemplates**: [from 8.0.9-servicing.24406.8 to 8.0.9-servicing.24415.4][2] - **Microsoft.NET.Sdk.WindowsDesktop**: [from 8.0.9-servicing.24406.8 to 8.0.9-servicing.24415.4][2] - **Microsoft.Private.Winforms**: [from 8.0.8-servicing.24366.6 to 8.0.9-servicing.24415.4][3] - **Microsoft.Internal.Runtime.WindowsDesktop.Transport**: [from 8.0.8-servicing.24366.12 to 8.0.9-servicing.24413.10][4] - **Microsoft.Private.Winforms**: [from 8.0.8-servicing.24366.6 to 8.0.9-servicing.24415.4][3] - **Microsoft.NETCore.App.Ref**: [from 8.0.8 to 8.0.9][4] - **Microsoft.Private.Winforms**: [from 8.0.8-servicing.24366.6 to 8.0.9-servicing.24415.4][3] - **VS.Redist.Common.NetCore.SharedFramework.x64.8.0**: [from 8.0.8-servicing.24366.12 to 8.0.9-servicing.24413.10][4] - **Microsoft.Private.Winforms**: [from 8.0.8-servicing.24366.6 to 8.0.9-servicing.24415.4][3] - **Microsoft.NETCore.App.Runtime.win-x64**: [from 8.0.8 to 8.0.9][4] - **Microsoft.Dotnet.WinForms.ProjectTemplates**: [from 8.0.8-servicing.24366.6 to 8.0.9-servicing.24415.4][3] - **Microsoft.Private.Winforms**: [from 8.0.8-servicing.24366.6 to 8.0.9-servicing.24415.4][3] - **Microsoft.Private.Winforms**: [from 8.0.8-servicing.24366.6 to 8.0.9-servicing.24415.4][3] - **Microsoft.Private.Winforms**: [from 8.0.8-servicing.24366.6 to 8.0.9-servicing.24415.4][3] - **Microsoft.Private.Winforms**: [from 8.0.8-servicing.24366.6 to 8.0.9-servicing.24415.4][3] - **Microsoft.Private.Winforms**: [from 8.0.8-servicing.24366.6 to 8.0.9-servicing.24415.4][3] - **Microsoft.Private.Winforms**: [from 8.0.8-servicing.24366.6 to 8.0.9-servicing.24415.4][3] - **Microsoft.Private.Winforms**: [from 8.0.8-servicing.24366.6 to 8.0.9-servicing.24415.4][3] - **Microsoft.Private.Winforms**: [from 8.0.8-servicing.24366.6 to 8.0.9-servicing.24415.4][3] - **System.Diagnostics.EventLog**: [from 8.0.0 to 8.0.1][5] - **Microsoft.Private.Winforms**: [from 8.0.8-servicing.24366.6 to 8.0.9-servicing.24415.4][3] - **Microsoft.Private.Winforms**: [from 8.0.8-servicing.24366.6 to 8.0.9-servicing.24415.4][3] - **Microsoft.Private.Winforms**: [from 8.0.8-servicing.24366.6 to 8.0.9-servicing.24415.4][3] - **Microsoft.Private.Winforms**: [from 8.0.8-servicing.24366.6 to 8.0.9-servicing.24415.4][3] - **Microsoft.Private.Winforms**: [from 8.0.8-servicing.24366.6 to 8.0.9-servicing.24415.4]... --- NuGet.config | 8 ++++---- eng/Version.Details.xml | 44 ++++++++++++++++++++--------------------- eng/Versions.props | 20 +++++++++---------- 3 files changed, 36 insertions(+), 36 deletions(-) diff --git a/NuGet.config b/NuGet.config index 930266b68..cad3daa5a 100644 --- a/NuGet.config +++ b/NuGet.config @@ -9,10 +9,10 @@ - + - + @@ -25,10 +25,10 @@ - + - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 7cebd55c0..0e098f292 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,41 +1,41 @@ - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 08338fcaa5c9b9a8190abb99222fed12aaba956c + 3c8202d88deea14a87c7665190286d2a67e464c0 - + https://dev.azure.com/dnceng/internal/_git/dotnet-winforms - bd164556d31c13b09986f597f49a83bf836c165d + f1f8971ac89d8ea8b4a4f0971dd307e0c318fae7 - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - 883fc207bb50622d4458ff09ae6a62548783826a + f0d6934ff6cfe796b114fbc4cce13fb2ce79668f - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - 883fc207bb50622d4458ff09ae6a62548783826a + f0d6934ff6cfe796b114fbc4cce13fb2ce79668f - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 08338fcaa5c9b9a8190abb99222fed12aaba956c + 3c8202d88deea14a87c7665190286d2a67e464c0 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 08338fcaa5c9b9a8190abb99222fed12aaba956c + 3c8202d88deea14a87c7665190286d2a67e464c0 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 08338fcaa5c9b9a8190abb99222fed12aaba956c + 3c8202d88deea14a87c7665190286d2a67e464c0 - + https://dev.azure.com/dnceng/internal/_git/dotnet-winforms - bd164556d31c13b09986f597f49a83bf836c165d + f1f8971ac89d8ea8b4a4f0971dd307e0c318fae7 - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - 883fc207bb50622d4458ff09ae6a62548783826a + f0d6934ff6cfe796b114fbc4cce13fb2ce79668f https://dev.azure.com/dnceng/internal/_git/dotnet-runtime @@ -65,9 +65,9 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime 5535e31a712343a63f5d7d796cd874e563e5ac14 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 5535e31a712343a63f5d7d796cd874e563e5ac14 + 3c8202d88deea14a87c7665190286d2a67e464c0 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime @@ -145,9 +145,9 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime 5535e31a712343a63f5d7d796cd874e563e5ac14 - + https://dev.azure.com/dnceng/internal/_git/dotnet-winforms - bd164556d31c13b09986f597f49a83bf836c165d + f1f8971ac89d8ea8b4a4f0971dd307e0c318fae7 diff --git a/eng/Versions.props b/eng/Versions.props index 73e607738..3335e514c 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -25,9 +25,9 @@ 6.2.4 - 8.0.8-servicing.24366.12 - 8.0.8 - 8.0.8 + 8.0.9-servicing.24415.9 + 8.0.9 + 8.0.9 8.0.0 5.0.0 8.0.0 @@ -37,7 +37,7 @@ 8.0.0 8.0.0 8.0.0 - 8.0.0 + 8.0.1 8.0.0 8.0.0 8.0.0 @@ -61,15 +61,15 @@ 8.0.0 8.0.0 8.0.0 - 8.0.8-servicing.24366.12 + 8.0.9-servicing.24415.9 4.10.0 - 8.0.8-servicing.24366.6 - 8.0.8-servicing.24366.6 - 8.0.8 + 8.0.9-servicing.24416.1 + 8.0.9-servicing.24416.1 + 8.0.9 - 8.0.8-servicing.24366.7 - 8.0.8-servicing.24366.7 + 8.0.9-servicing.24416.4 + 8.0.9-servicing.24416.4 From a5c2e5b1fdd75c94f90cdb3fdd6cdfa39e7745a1 Mon Sep 17 00:00:00 2001 From: Sean Reeser Date: Thu, 29 Aug 2024 11:09:52 -0700 Subject: [PATCH 153/222] Update branding to 8.0.10 --- eng/Versions.props | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eng/Versions.props b/eng/Versions.props index 73e607738..f1a8a8ef7 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -2,7 +2,7 @@ 8 0 - 9 + 10 servicing From 49eb3e00bddf032cf238c8934abe8d64b7ba28bc Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Wed, 4 Sep 2024 19:47:48 +0000 Subject: [PATCH 154/222] Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-wpf build 20240904.4 Microsoft.DotNet.Wpf.GitHub , Microsoft.DotNet.Wpf.ProjectTemplates , Microsoft.NET.Sdk.WindowsDesktop From Version 8.0.9-servicing.24416.4 -> To Version 8.0.10-servicing.24454.4 Dependency coherency updates Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Dotnet.WinForms.ProjectTemplates,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,System.Drawing.Common From Version 8.0.9-servicing.24416.1 -> To Version 8.0.10-servicing.24430.9 (parent: Microsoft.DotNet.Wpf.GitHub --- NuGet.config | 4 ++-- eng/Version.Details.xml | 24 ++++++++++++------------ eng/Versions.props | 10 +++++----- 3 files changed, 19 insertions(+), 19 deletions(-) diff --git a/NuGet.config b/NuGet.config index cad3daa5a..4f096dccc 100644 --- a/NuGet.config +++ b/NuGet.config @@ -12,7 +12,7 @@ - + @@ -28,7 +28,7 @@ - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 0e098f292..a323c0ac5 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -5,17 +5,17 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime 3c8202d88deea14a87c7665190286d2a67e464c0 - + https://dev.azure.com/dnceng/internal/_git/dotnet-winforms - f1f8971ac89d8ea8b4a4f0971dd307e0c318fae7 + ecbc5f5f54e2c8b82f452fa7e414de71ef9610af - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - f0d6934ff6cfe796b114fbc4cce13fb2ce79668f + 3cc605b25a22dfeb9849a07b665eaa9219e7a4f5 - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - f0d6934ff6cfe796b114fbc4cce13fb2ce79668f + 3cc605b25a22dfeb9849a07b665eaa9219e7a4f5 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime @@ -29,13 +29,13 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime 3c8202d88deea14a87c7665190286d2a67e464c0 - + https://dev.azure.com/dnceng/internal/_git/dotnet-winforms - f1f8971ac89d8ea8b4a4f0971dd307e0c318fae7 + ecbc5f5f54e2c8b82f452fa7e414de71ef9610af - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - f0d6934ff6cfe796b114fbc4cce13fb2ce79668f + 3cc605b25a22dfeb9849a07b665eaa9219e7a4f5 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime @@ -145,9 +145,9 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime 5535e31a712343a63f5d7d796cd874e563e5ac14 - + https://dev.azure.com/dnceng/internal/_git/dotnet-winforms - f1f8971ac89d8ea8b4a4f0971dd307e0c318fae7 + ecbc5f5f54e2c8b82f452fa7e414de71ef9610af diff --git a/eng/Versions.props b/eng/Versions.props index b11a9dab9..b8d8a728b 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -65,11 +65,11 @@ 4.10.0 - 8.0.9-servicing.24416.1 - 8.0.9-servicing.24416.1 - 8.0.9 + 8.0.10-servicing.24430.9 + 8.0.10-servicing.24430.9 + 8.0.10 - 8.0.9-servicing.24416.4 - 8.0.9-servicing.24416.4 + 8.0.10-servicing.24454.4 + 8.0.10-servicing.24454.4 From cdabd4dc502ab5ddd189cc53b7c46083dfb6b159 Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Wed, 11 Sep 2024 22:16:14 +0000 Subject: [PATCH 155/222] Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-wpf build 20240911.6 Microsoft.DotNet.Wpf.GitHub , Microsoft.DotNet.Wpf.ProjectTemplates , Microsoft.NET.Sdk.WindowsDesktop From Version 8.0.10-servicing.24454.4 -> To Version 8.0.10-servicing.24461.6 Dependency coherency updates Microsoft.Private.Winforms,Microsoft.Internal.Runtime.WindowsDesktop.Transport,Microsoft.Private.Winforms,Microsoft.NETCore.App.Ref,Microsoft.Private.Winforms,VS.Redist.Common.NetCore.SharedFramework.x64.8.0,Microsoft.Private.Winforms,Microsoft.NETCore.App.Runtime.win-x64,Microsoft.Dotnet.WinForms.ProjectTemplates,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,System.Diagnostics.EventLog,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,System.Drawing.Common From Version 8.0.10-servicing.24430.9 -> To Version 8.0.10-servicing.24454.7 (parent: Microsoft.DotNet.Wpf.GitHub --- NuGet.config | 8 ++++---- eng/Version.Details.xml | 40 ++++++++++++++++++++-------------------- eng/Versions.props | 16 ++++++++-------- 3 files changed, 32 insertions(+), 32 deletions(-) diff --git a/NuGet.config b/NuGet.config index 4f096dccc..10702cc2d 100644 --- a/NuGet.config +++ b/NuGet.config @@ -9,10 +9,10 @@ - + - + @@ -25,10 +25,10 @@ - + - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index a323c0ac5..65b947ff8 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,41 +1,41 @@ - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 3c8202d88deea14a87c7665190286d2a67e464c0 + 4426046ba949f23a579ce98afeef6b7b6b75c292 - + https://dev.azure.com/dnceng/internal/_git/dotnet-winforms - ecbc5f5f54e2c8b82f452fa7e414de71ef9610af + 5f19127b36042ea0141843aac4defa7a4f62b163 - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - 3cc605b25a22dfeb9849a07b665eaa9219e7a4f5 + 353061c84be34604ca3f453df5403a82e388185f - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - 3cc605b25a22dfeb9849a07b665eaa9219e7a4f5 + 353061c84be34604ca3f453df5403a82e388185f - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 3c8202d88deea14a87c7665190286d2a67e464c0 + 4426046ba949f23a579ce98afeef6b7b6b75c292 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 3c8202d88deea14a87c7665190286d2a67e464c0 + 4426046ba949f23a579ce98afeef6b7b6b75c292 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 3c8202d88deea14a87c7665190286d2a67e464c0 + 4426046ba949f23a579ce98afeef6b7b6b75c292 - + https://dev.azure.com/dnceng/internal/_git/dotnet-winforms - ecbc5f5f54e2c8b82f452fa7e414de71ef9610af + 5f19127b36042ea0141843aac4defa7a4f62b163 - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - 3cc605b25a22dfeb9849a07b665eaa9219e7a4f5 + 353061c84be34604ca3f453df5403a82e388185f https://dev.azure.com/dnceng/internal/_git/dotnet-runtime @@ -67,7 +67,7 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 3c8202d88deea14a87c7665190286d2a67e464c0 + 4426046ba949f23a579ce98afeef6b7b6b75c292 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime @@ -147,7 +147,7 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-winforms - ecbc5f5f54e2c8b82f452fa7e414de71ef9610af + 5f19127b36042ea0141843aac4defa7a4f62b163 diff --git a/eng/Versions.props b/eng/Versions.props index b8d8a728b..c1355d98a 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -25,9 +25,9 @@ 6.2.4 - 8.0.9-servicing.24415.9 - 8.0.9 - 8.0.9 + 8.0.10-servicing.24431.6 + 8.0.10 + 8.0.10 8.0.0 5.0.0 8.0.0 @@ -61,15 +61,15 @@ 8.0.0 8.0.0 8.0.0 - 8.0.9-servicing.24415.9 + 8.0.10-servicing.24431.6 4.10.0 - 8.0.10-servicing.24430.9 - 8.0.10-servicing.24430.9 + 8.0.10-servicing.24454.7 + 8.0.10-servicing.24454.7 8.0.10 - 8.0.10-servicing.24454.4 - 8.0.10-servicing.24454.4 + 8.0.10-servicing.24461.6 + 8.0.10-servicing.24461.6 From 8bfc99164880f5e1dcaa9e3ca6aec0596de6bd31 Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Wed, 11 Sep 2024 23:15:56 +0000 Subject: [PATCH 156/222] Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-wpf build 20240911.8 Microsoft.DotNet.Wpf.GitHub , Microsoft.DotNet.Wpf.ProjectTemplates , Microsoft.NET.Sdk.WindowsDesktop From Version 8.0.10-servicing.24461.6 -> To Version 8.0.10-servicing.24461.8 Dependency coherency updates Microsoft.Private.Winforms,Microsoft.Internal.Runtime.WindowsDesktop.Transport,Microsoft.Private.Winforms,Microsoft.NETCore.App.Ref,Microsoft.Private.Winforms,VS.Redist.Common.NetCore.SharedFramework.x64.8.0,Microsoft.Private.Winforms,Microsoft.NETCore.App.Runtime.win-x64,Microsoft.Dotnet.WinForms.ProjectTemplates,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,System.Diagnostics.EventLog,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,System.IO.Packaging,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,System.Drawing.Common From Version 8.0.10-servicing.24454.7 -> To Version 8.0.10-servicing.24461.5 (parent: Microsoft.DotNet.Wpf.GitHub --- NuGet.config | 8 ++++---- eng/Version.Details.xml | 40 ++++++++++++++++++++-------------------- eng/Versions.props | 14 +++++++------- 3 files changed, 31 insertions(+), 31 deletions(-) diff --git a/NuGet.config b/NuGet.config index 10702cc2d..0cbfed609 100644 --- a/NuGet.config +++ b/NuGet.config @@ -9,10 +9,10 @@ - + - + @@ -25,10 +25,10 @@ - + - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 65b947ff8..281f208f6 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,41 +1,41 @@ - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 4426046ba949f23a579ce98afeef6b7b6b75c292 + 7dc1560dfb4ff946388512ef439fcb44f294b32a - + https://dev.azure.com/dnceng/internal/_git/dotnet-winforms - 5f19127b36042ea0141843aac4defa7a4f62b163 + 21f7ccf70589daa2376d758af5d0c43922027fb8 - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - 353061c84be34604ca3f453df5403a82e388185f + 513e3724aa984904693e317e157774ec4a54c12b - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - 353061c84be34604ca3f453df5403a82e388185f + 513e3724aa984904693e317e157774ec4a54c12b https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 4426046ba949f23a579ce98afeef6b7b6b75c292 + 7dc1560dfb4ff946388512ef439fcb44f294b32a - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 4426046ba949f23a579ce98afeef6b7b6b75c292 + 7dc1560dfb4ff946388512ef439fcb44f294b32a https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 4426046ba949f23a579ce98afeef6b7b6b75c292 + 7dc1560dfb4ff946388512ef439fcb44f294b32a - + https://dev.azure.com/dnceng/internal/_git/dotnet-winforms - 5f19127b36042ea0141843aac4defa7a4f62b163 + 21f7ccf70589daa2376d758af5d0c43922027fb8 - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - 353061c84be34604ca3f453df5403a82e388185f + 513e3724aa984904693e317e157774ec4a54c12b https://dev.azure.com/dnceng/internal/_git/dotnet-runtime @@ -67,7 +67,7 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 4426046ba949f23a579ce98afeef6b7b6b75c292 + 7dc1560dfb4ff946388512ef439fcb44f294b32a https://dev.azure.com/dnceng/internal/_git/dotnet-runtime @@ -85,9 +85,9 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime 5535e31a712343a63f5d7d796cd874e563e5ac14 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 5535e31a712343a63f5d7d796cd874e563e5ac14 + 7dc1560dfb4ff946388512ef439fcb44f294b32a https://dev.azure.com/dnceng/internal/_git/dotnet-runtime @@ -147,7 +147,7 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-winforms - 5f19127b36042ea0141843aac4defa7a4f62b163 + 21f7ccf70589daa2376d758af5d0c43922027fb8 diff --git a/eng/Versions.props b/eng/Versions.props index c1355d98a..c10293d2d 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -25,7 +25,7 @@ 6.2.4 - 8.0.10-servicing.24431.6 + 8.0.10-servicing.24459.10 8.0.10 8.0.10 8.0.0 @@ -43,7 +43,7 @@ 8.0.0 8.0.0 5.0.0 - 8.0.0 + 8.0.1 5.0.0 8.0.0 8.0.0 @@ -61,15 +61,15 @@ 8.0.0 8.0.0 8.0.0 - 8.0.10-servicing.24431.6 + 8.0.10-servicing.24459.10 4.10.0 - 8.0.10-servicing.24454.7 - 8.0.10-servicing.24454.7 + 8.0.10-servicing.24461.5 + 8.0.10-servicing.24461.5 8.0.10 - 8.0.10-servicing.24461.6 - 8.0.10-servicing.24461.6 + 8.0.10-servicing.24461.8 + 8.0.10-servicing.24461.8 From d4a9dd4382d6e9a1387e882142da174b024cdf1a Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Thu, 12 Sep 2024 10:42:03 +0000 Subject: [PATCH 157/222] Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-wpf build 20240912.4 Microsoft.DotNet.Wpf.GitHub , Microsoft.DotNet.Wpf.ProjectTemplates , Microsoft.NET.Sdk.WindowsDesktop From Version 8.0.10-servicing.24461.8 -> To Version 8.0.10-servicing.24462.4 --- eng/Version.Details.xml | 12 ++++++------ eng/Versions.props | 4 ++-- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 281f208f6..d87aab713 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -9,13 +9,13 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-winforms 21f7ccf70589daa2376d758af5d0c43922027fb8 - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - 513e3724aa984904693e317e157774ec4a54c12b + 6bb288a5edff3773ea2729bb7aec31103f48035e - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - 513e3724aa984904693e317e157774ec4a54c12b + 6bb288a5edff3773ea2729bb7aec31103f48035e https://dev.azure.com/dnceng/internal/_git/dotnet-runtime @@ -33,9 +33,9 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-winforms 21f7ccf70589daa2376d758af5d0c43922027fb8 - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - 513e3724aa984904693e317e157774ec4a54c12b + 6bb288a5edff3773ea2729bb7aec31103f48035e https://dev.azure.com/dnceng/internal/_git/dotnet-runtime diff --git a/eng/Versions.props b/eng/Versions.props index c10293d2d..c0abef433 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -69,7 +69,7 @@ 8.0.10-servicing.24461.5 8.0.10 - 8.0.10-servicing.24461.8 - 8.0.10-servicing.24461.8 + 8.0.10-servicing.24462.4 + 8.0.10-servicing.24462.4 From bca5a01833f5d6f5f5909f036df64e0f3172575d Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Thu, 12 Sep 2024 19:51:48 +0000 Subject: [PATCH 158/222] [release/8.0] Update dependencies from dotnet/arcade (#4654) [release/8.0] Update dependencies from dotnet/arcade --- NuGet.config | 18 ++++++++++++++ eng/Version.Details.xml | 24 +++++++++---------- eng/Versions.props | 8 +++---- eng/common/sdl/NuGet.config | 4 ++-- eng/common/sdl/execute-all-sdl-tools.ps1 | 4 +--- eng/common/sdl/init-sdl.ps1 | 8 ------- eng/common/sdl/sdl.ps1 | 4 +++- .../job/publish-build-assets.yml | 2 +- .../post-build/post-build.yml | 2 +- .../templates-official/steps/execute-sdl.yml | 2 -- .../steps/get-federated-access-token.yml | 14 ++++++++++- .../templates/job/publish-build-assets.yml | 2 +- .../templates/post-build/post-build.yml | 2 +- eng/common/templates/steps/execute-sdl.yml | 7 +++--- .../steps/get-federated-access-token.yml | 14 ++++++++++- .../templates/steps/telemetry-start.yml | 2 +- global.json | 6 ++--- 17 files changed, 78 insertions(+), 45 deletions(-) diff --git a/NuGet.config b/NuGet.config index 930266b68..1b15962ea 100644 --- a/NuGet.config +++ b/NuGet.config @@ -13,6 +13,15 @@ + + + + + + + + + @@ -28,6 +37,15 @@ + + + + + + + + + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 7cebd55c0..6feb7465e 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -151,29 +151,29 @@ - + https://github.com/dotnet/arcade - c9efa535175049eb9cba06cae1f8c3d5dbe768a9 + 0028fccccc2181a64c5c4a283ac0baae3913284b - + https://github.com/dotnet/arcade - c9efa535175049eb9cba06cae1f8c3d5dbe768a9 + 0028fccccc2181a64c5c4a283ac0baae3913284b - + https://github.com/dotnet/arcade - c9efa535175049eb9cba06cae1f8c3d5dbe768a9 + 0028fccccc2181a64c5c4a283ac0baae3913284b - + https://github.com/dotnet/arcade - c9efa535175049eb9cba06cae1f8c3d5dbe768a9 + 0028fccccc2181a64c5c4a283ac0baae3913284b - + https://github.com/dotnet/arcade - c9efa535175049eb9cba06cae1f8c3d5dbe768a9 + 0028fccccc2181a64c5c4a283ac0baae3913284b - + https://github.com/dotnet/arcade - c9efa535175049eb9cba06cae1f8c3d5dbe768a9 + 0028fccccc2181a64c5c4a283ac0baae3913284b diff --git a/eng/Versions.props b/eng/Versions.props index f1a8a8ef7..0d28d550f 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -12,10 +12,10 @@ - 8.0.0-beta.24360.5 - 8.0.0-beta.24360.5 - 8.0.0-beta.24360.5 - 8.0.0-beta.24360.5 + 8.0.0-beta.24461.2 + 8.0.0-beta.24461.2 + 8.0.0-beta.24461.2 + 8.0.0-beta.24461.2 4.5.0 4.8.6 diff --git a/eng/common/sdl/NuGet.config b/eng/common/sdl/NuGet.config index 3849bdb3c..5bfbb02ef 100644 --- a/eng/common/sdl/NuGet.config +++ b/eng/common/sdl/NuGet.config @@ -5,11 +5,11 @@ - + - + diff --git a/eng/common/sdl/execute-all-sdl-tools.ps1 b/eng/common/sdl/execute-all-sdl-tools.ps1 index 4715d75e9..81ded5b7f 100644 --- a/eng/common/sdl/execute-all-sdl-tools.ps1 +++ b/eng/common/sdl/execute-all-sdl-tools.ps1 @@ -6,7 +6,6 @@ Param( [string] $BranchName=$env:BUILD_SOURCEBRANCH, # Optional: name of branch or version of gdn settings; defaults to master [string] $SourceDirectory=$env:BUILD_SOURCESDIRECTORY, # Required: the directory where source files are located [string] $ArtifactsDirectory = (Join-Path $env:BUILD_ARTIFACTSTAGINGDIRECTORY ('artifacts')), # Required: the directory where build artifacts are located - [string] $AzureDevOpsAccessToken, # Required: access token for dnceng; should be provided via KeyVault # Optional: list of SDL tools to run on source code. See 'configure-sdl-tool.ps1' for tools list # format. @@ -75,7 +74,7 @@ try { } Exec-BlockVerbosely { - & $(Join-Path $PSScriptRoot 'init-sdl.ps1') -GuardianCliLocation $guardianCliLocation -Repository $RepoName -BranchName $BranchName -WorkingDirectory $workingDirectory -AzureDevOpsAccessToken $AzureDevOpsAccessToken -GuardianLoggerLevel $GuardianLoggerLevel + & $(Join-Path $PSScriptRoot 'init-sdl.ps1') -GuardianCliLocation $guardianCliLocation -Repository $RepoName -BranchName $BranchName -WorkingDirectory $workingDirectory -GuardianLoggerLevel $GuardianLoggerLevel } $gdnFolder = Join-Path $workingDirectory '.gdn' @@ -104,7 +103,6 @@ try { -TargetDirectory $targetDirectory ` -GdnFolder $gdnFolder ` -ToolsList $tools ` - -AzureDevOpsAccessToken $AzureDevOpsAccessToken ` -GuardianLoggerLevel $GuardianLoggerLevel ` -CrScanAdditionalRunConfigParams $CrScanAdditionalRunConfigParams ` -PoliCheckAdditionalRunConfigParams $PoliCheckAdditionalRunConfigParams ` diff --git a/eng/common/sdl/init-sdl.ps1 b/eng/common/sdl/init-sdl.ps1 index 3ac1d92b3..588ff8e22 100644 --- a/eng/common/sdl/init-sdl.ps1 +++ b/eng/common/sdl/init-sdl.ps1 @@ -3,7 +3,6 @@ Param( [string] $Repository, [string] $BranchName='master', [string] $WorkingDirectory, - [string] $AzureDevOpsAccessToken, [string] $GuardianLoggerLevel='Standard' ) @@ -21,14 +20,7 @@ $ci = $true # Don't display the console progress UI - it's a huge perf hit $ProgressPreference = 'SilentlyContinue' -# Construct basic auth from AzDO access token; construct URI to the repository's gdn folder stored in that repository; construct location of zip file -$encodedPat = [Convert]::ToBase64String([System.Text.Encoding]::ASCII.GetBytes(":$AzureDevOpsAccessToken")) -$escapedRepository = [Uri]::EscapeDataString("/$Repository/$BranchName/.gdn") -$uri = "https://dev.azure.com/dnceng/internal/_apis/git/repositories/sdl-tool-cfg/Items?path=$escapedRepository&versionDescriptor[versionOptions]=0&`$format=zip&api-version=5.0" -$zipFile = "$WorkingDirectory/gdn.zip" - Add-Type -AssemblyName System.IO.Compression.FileSystem -$gdnFolder = (Join-Path $WorkingDirectory '.gdn') try { # if the folder does not exist, we'll do a guardian init and push it to the remote repository diff --git a/eng/common/sdl/sdl.ps1 b/eng/common/sdl/sdl.ps1 index 648c5068d..7fe603fe9 100644 --- a/eng/common/sdl/sdl.ps1 +++ b/eng/common/sdl/sdl.ps1 @@ -4,6 +4,8 @@ function Install-Gdn { [Parameter(Mandatory=$true)] [string]$Path, + [string]$Source = "https://pkgs.dev.azure.com/dnceng/_packaging/Guardian1ESPTUpstreamOrgFeed/nuget/v3/index.json", + # If omitted, install the latest version of Guardian, otherwise install that specific version. [string]$Version ) @@ -19,7 +21,7 @@ function Install-Gdn { $ci = $true . $PSScriptRoot\..\tools.ps1 - $argumentList = @("install", "Microsoft.Guardian.Cli", "-Source https://securitytools.pkgs.visualstudio.com/_packaging/Guardian/nuget/v3/index.json", "-OutputDirectory $Path", "-NonInteractive", "-NoCache") + $argumentList = @("install", "Microsoft.Guardian.Cli.win-x64", "-Source $Source", "-OutputDirectory $Path", "-NonInteractive", "-NoCache") if ($Version) { $argumentList += "-Version $Version" diff --git a/eng/common/templates-official/job/publish-build-assets.yml b/eng/common/templates-official/job/publish-build-assets.yml index ba3e7df81..011732880 100644 --- a/eng/common/templates-official/job/publish-build-assets.yml +++ b/eng/common/templates-official/job/publish-build-assets.yml @@ -149,7 +149,7 @@ jobs: scriptPath: $(Build.SourcesDirectory)/eng/common/post-build/publish-using-darc.ps1 arguments: -BuildId $(BARBuildId) -PublishingInfraVersion 3 - -AzdoToken '$(publishing-dnceng-devdiv-code-r-build-re)' + -AzdoToken '$(System.AccessToken)' -WaitPublishingFinish true -ArtifactsPublishingAdditionalParameters '${{ parameters.artifactsPublishingAdditionalParameters }}' -SymbolPublishingAdditionalParameters '${{ parameters.symbolPublishingAdditionalParameters }}' diff --git a/eng/common/templates-official/post-build/post-build.yml b/eng/common/templates-official/post-build/post-build.yml index 0dfa387e7..b81b8770b 100644 --- a/eng/common/templates-official/post-build/post-build.yml +++ b/eng/common/templates-official/post-build/post-build.yml @@ -281,7 +281,7 @@ stages: scriptPath: $(Build.SourcesDirectory)/eng/common/post-build/publish-using-darc.ps1 arguments: -BuildId $(BARBuildId) -PublishingInfraVersion ${{ parameters.publishingInfraVersion }} - -AzdoToken '$(publishing-dnceng-devdiv-code-r-build-re)' + -AzdoToken '$(System.AccessToken)' -WaitPublishingFinish true -ArtifactsPublishingAdditionalParameters '${{ parameters.artifactsPublishingAdditionalParameters }}' -SymbolPublishingAdditionalParameters '${{ parameters.symbolPublishingAdditionalParameters }}' diff --git a/eng/common/templates-official/steps/execute-sdl.yml b/eng/common/templates-official/steps/execute-sdl.yml index 07426fde0..301d5c591 100644 --- a/eng/common/templates-official/steps/execute-sdl.yml +++ b/eng/common/templates-official/steps/execute-sdl.yml @@ -9,8 +9,6 @@ parameters: steps: - task: NuGetAuthenticate@1 - inputs: - nuGetServiceConnections: GuardianConnect - task: NuGetToolInstaller@1 displayName: 'Install NuGet.exe' diff --git a/eng/common/templates-official/steps/get-federated-access-token.yml b/eng/common/templates-official/steps/get-federated-access-token.yml index e3786cef6..55e33bd38 100644 --- a/eng/common/templates-official/steps/get-federated-access-token.yml +++ b/eng/common/templates-official/steps/get-federated-access-token.yml @@ -3,6 +3,12 @@ parameters: type: string - name: outputVariableName type: string +- name: stepName + type: string + default: 'getFederatedAccessToken' +- name: condition + type: string + default: '' # Resource to get a token for. Common values include: # - '499b84ac-1321-427f-aa17-267ca6975798' for Azure DevOps # - 'https://storage.azure.com/' for storage @@ -10,10 +16,16 @@ parameters: - name: resource type: string default: '499b84ac-1321-427f-aa17-267ca6975798' +- name: isStepOutputVariable + type: boolean + default: false steps: - task: AzureCLI@2 displayName: 'Getting federated access token for feeds' + name: ${{ parameters.stepName }} + ${{ if ne(parameters.condition, '') }}: + condition: ${{ parameters.condition }} inputs: azureSubscription: ${{ parameters.federatedServiceConnection }} scriptType: 'pscore' @@ -25,4 +37,4 @@ steps: exit 1 } Write-Host "Setting '${{ parameters.outputVariableName }}' with the access token value" - Write-Host "##vso[task.setvariable variable=${{ parameters.outputVariableName }};issecret=true]$accessToken" + Write-Host "##vso[task.setvariable variable=${{ parameters.outputVariableName }};issecret=true;isOutput=${{ parameters.isStepOutputVariable }}]$accessToken" \ No newline at end of file diff --git a/eng/common/templates/job/publish-build-assets.yml b/eng/common/templates/job/publish-build-assets.yml index 57a41f0a3..cc2b346ba 100644 --- a/eng/common/templates/job/publish-build-assets.yml +++ b/eng/common/templates/job/publish-build-assets.yml @@ -145,7 +145,7 @@ jobs: scriptPath: $(Build.SourcesDirectory)/eng/common/post-build/publish-using-darc.ps1 arguments: -BuildId $(BARBuildId) -PublishingInfraVersion 3 - -AzdoToken '$(publishing-dnceng-devdiv-code-r-build-re)' + -AzdoToken '$(System.AccessToken)' -WaitPublishingFinish true -ArtifactsPublishingAdditionalParameters '${{ parameters.artifactsPublishingAdditionalParameters }}' -SymbolPublishingAdditionalParameters '${{ parameters.symbolPublishingAdditionalParameters }}' diff --git a/eng/common/templates/post-build/post-build.yml b/eng/common/templates/post-build/post-build.yml index 2db493346..c3b6a3012 100644 --- a/eng/common/templates/post-build/post-build.yml +++ b/eng/common/templates/post-build/post-build.yml @@ -277,7 +277,7 @@ stages: scriptPath: $(Build.SourcesDirectory)/eng/common/post-build/publish-using-darc.ps1 arguments: -BuildId $(BARBuildId) -PublishingInfraVersion ${{ parameters.publishingInfraVersion }} - -AzdoToken '$(publishing-dnceng-devdiv-code-r-build-re)' + -AzdoToken '$(System.AccessToken)' -WaitPublishingFinish true -ArtifactsPublishingAdditionalParameters '${{ parameters.artifactsPublishingAdditionalParameters }}' -SymbolPublishingAdditionalParameters '${{ parameters.symbolPublishingAdditionalParameters }}' diff --git a/eng/common/templates/steps/execute-sdl.yml b/eng/common/templates/steps/execute-sdl.yml index 07426fde0..fe0ebf8c9 100644 --- a/eng/common/templates/steps/execute-sdl.yml +++ b/eng/common/templates/steps/execute-sdl.yml @@ -9,8 +9,6 @@ parameters: steps: - task: NuGetAuthenticate@1 - inputs: - nuGetServiceConnections: GuardianConnect - task: NuGetToolInstaller@1 displayName: 'Install NuGet.exe' @@ -36,16 +34,19 @@ steps: displayName: Execute SDL (Overridden) continueOnError: ${{ parameters.sdlContinueOnError }} condition: ${{ parameters.condition }} + env: + GUARDIAN_DEFAULT_PACKAGE_SOURCE_SECRET: $(System.AccessToken) - ${{ if eq(parameters.overrideParameters, '') }}: - powershell: ${{ parameters.executeAllSdlToolsScript }} -GuardianCliLocation $(GuardianCliLocation) -NugetPackageDirectory $(Build.SourcesDirectory)\.packages - -AzureDevOpsAccessToken $(dn-bot-dotnet-build-rw-code-rw) ${{ parameters.additionalParameters }} displayName: Execute SDL continueOnError: ${{ parameters.sdlContinueOnError }} condition: ${{ parameters.condition }} + env: + GUARDIAN_DEFAULT_PACKAGE_SOURCE_SECRET: $(System.AccessToken) - ${{ if ne(parameters.publishGuardianDirectoryToPipeline, 'false') }}: # We want to publish the Guardian results and configuration for easy diagnosis. However, the diff --git a/eng/common/templates/steps/get-federated-access-token.yml b/eng/common/templates/steps/get-federated-access-token.yml index c8c49cc0e..55e33bd38 100644 --- a/eng/common/templates/steps/get-federated-access-token.yml +++ b/eng/common/templates/steps/get-federated-access-token.yml @@ -3,6 +3,12 @@ parameters: type: string - name: outputVariableName type: string +- name: stepName + type: string + default: 'getFederatedAccessToken' +- name: condition + type: string + default: '' # Resource to get a token for. Common values include: # - '499b84ac-1321-427f-aa17-267ca6975798' for Azure DevOps # - 'https://storage.azure.com/' for storage @@ -10,10 +16,16 @@ parameters: - name: resource type: string default: '499b84ac-1321-427f-aa17-267ca6975798' +- name: isStepOutputVariable + type: boolean + default: false steps: - task: AzureCLI@2 displayName: 'Getting federated access token for feeds' + name: ${{ parameters.stepName }} + ${{ if ne(parameters.condition, '') }}: + condition: ${{ parameters.condition }} inputs: azureSubscription: ${{ parameters.federatedServiceConnection }} scriptType: 'pscore' @@ -25,4 +37,4 @@ steps: exit 1 } Write-Host "Setting '${{ parameters.outputVariableName }}' with the access token value" - Write-Host "##vso[task.setvariable variable=${{ parameters.outputVariableName }};issecret=true]$accessToken" \ No newline at end of file + Write-Host "##vso[task.setvariable variable=${{ parameters.outputVariableName }};issecret=true;isOutput=${{ parameters.isStepOutputVariable }}]$accessToken" \ No newline at end of file diff --git a/eng/common/templates/steps/telemetry-start.yml b/eng/common/templates/steps/telemetry-start.yml index 32c01ef0b..6abbcb33a 100644 --- a/eng/common/templates/steps/telemetry-start.yml +++ b/eng/common/templates/steps/telemetry-start.yml @@ -8,7 +8,7 @@ parameters: steps: - ${{ if and(eq(parameters.runAsPublic, 'false'), not(eq(variables['System.TeamProject'], 'public'))) }}: - - task: AzureKeyVault@1 + - task: AzureKeyVault@2 inputs: azureSubscription: 'HelixProd_KeyVault' KeyVaultName: HelixProdKV diff --git a/global.json b/global.json index d9d6b2139..276f69980 100644 --- a/global.json +++ b/global.json @@ -1,10 +1,10 @@ { "tools": { - "dotnet": "8.0.101" + "dotnet": "8.0.108" }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "8.0.0-beta.24360.5", - "Microsoft.DotNet.SharedFramework.Sdk": "8.0.0-beta.24360.5", + "Microsoft.DotNet.Arcade.Sdk": "8.0.0-beta.24461.2", + "Microsoft.DotNet.SharedFramework.Sdk": "8.0.0-beta.24461.2", "Microsoft.Build.NoTargets": "3.7.0", "Microsoft.Build.Traversal": "3.4.0" } From bf779dce1af124af51b5df2c52d9c3ad06d8ae80 Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Thu, 12 Sep 2024 21:18:37 +0000 Subject: [PATCH 159/222] Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-wpf build 20240912.8 Microsoft.DotNet.Wpf.GitHub , Microsoft.DotNet.Wpf.ProjectTemplates , Microsoft.NET.Sdk.WindowsDesktop From Version 8.0.10-servicing.24462.4 -> To Version 8.0.10-servicing.24462.8 Dependency coherency updates Microsoft.Private.Winforms,Microsoft.Internal.Runtime.WindowsDesktop.Transport,Microsoft.Private.Winforms,Microsoft.NETCore.App.Ref,Microsoft.Private.Winforms,VS.Redist.Common.NetCore.SharedFramework.x64.8.0,Microsoft.Private.Winforms,Microsoft.NETCore.App.Runtime.win-x64,Microsoft.Dotnet.WinForms.ProjectTemplates,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,System.Configuration.ConfigurationManager,Microsoft.Private.Winforms,System.Data.Odbc,Microsoft.Private.Winforms,System.Data.OleDb,Microsoft.Private.Winforms,Microsoft.Private.Winforms,System.Diagnostics.PerformanceCounter,Microsoft.Private.Winforms,System.DirectoryServices.AccountManagement,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,System.IO.Packaging,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,System.Runtime.Caching,Microsoft.Private.Winforms,System.Security.Cryptography.Pkcs,Microsoft.Private.Winforms,Microsoft.Private.Winforms,System.Security.Cryptography.Xml,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,System.ServiceProcess.ServiceController,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,System.Drawing.Common From Version 8.0.10-servicing.24461.5 -> To Version 8.0.10-servicing.24462.7 (parent: Microsoft.DotNet.Wpf.GitHub --- NuGet.config | 6 ++-- eng/Version.Details.xml | 72 ++++++++++++++++++++--------------------- eng/Versions.props | 30 ++++++++--------- 3 files changed, 55 insertions(+), 53 deletions(-) diff --git a/NuGet.config b/NuGet.config index 0cbfed609..0457e1f63 100644 --- a/NuGet.config +++ b/NuGet.config @@ -9,10 +9,11 @@ + - + @@ -26,9 +27,10 @@ + - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 00d9f15b1..f9d125b3c 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,41 +1,41 @@ - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 7dc1560dfb4ff946388512ef439fcb44f294b32a + a8108c906081c3c0198f250fb210c1dd275b2f01 - + https://dev.azure.com/dnceng/internal/_git/dotnet-winforms - 21f7ccf70589daa2376d758af5d0c43922027fb8 + bfc7e266f9967da8a398f67dac77b84a1210a42d - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - 6bb288a5edff3773ea2729bb7aec31103f48035e + f97763771ad77bb288371e1c102d411a0fbc45c2 - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - 6bb288a5edff3773ea2729bb7aec31103f48035e + f97763771ad77bb288371e1c102d411a0fbc45c2 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 7dc1560dfb4ff946388512ef439fcb44f294b32a + a8108c906081c3c0198f250fb210c1dd275b2f01 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 7dc1560dfb4ff946388512ef439fcb44f294b32a + a8108c906081c3c0198f250fb210c1dd275b2f01 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 7dc1560dfb4ff946388512ef439fcb44f294b32a + a8108c906081c3c0198f250fb210c1dd275b2f01 - + https://dev.azure.com/dnceng/internal/_git/dotnet-winforms - 21f7ccf70589daa2376d758af5d0c43922027fb8 + bfc7e266f9967da8a398f67dac77b84a1210a42d - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - 6bb288a5edff3773ea2729bb7aec31103f48035e + f97763771ad77bb288371e1c102d411a0fbc45c2 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime @@ -53,29 +53,29 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime 5535e31a712343a63f5d7d796cd874e563e5ac14 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 5535e31a712343a63f5d7d796cd874e563e5ac14 + a8108c906081c3c0198f250fb210c1dd275b2f01 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 5535e31a712343a63f5d7d796cd874e563e5ac14 + a8108c906081c3c0198f250fb210c1dd275b2f01 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 5535e31a712343a63f5d7d796cd874e563e5ac14 + a8108c906081c3c0198f250fb210c1dd275b2f01 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime 7dc1560dfb4ff946388512ef439fcb44f294b32a - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 5535e31a712343a63f5d7d796cd874e563e5ac14 + a8108c906081c3c0198f250fb210c1dd275b2f01 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 5535e31a712343a63f5d7d796cd874e563e5ac14 + a8108c906081c3c0198f250fb210c1dd275b2f01 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime @@ -87,7 +87,7 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 7dc1560dfb4ff946388512ef439fcb44f294b32a + a8108c906081c3c0198f250fb210c1dd275b2f01 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime @@ -101,21 +101,21 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime 5535e31a712343a63f5d7d796cd874e563e5ac14 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 5535e31a712343a63f5d7d796cd874e563e5ac14 + a8108c906081c3c0198f250fb210c1dd275b2f01 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 5535e31a712343a63f5d7d796cd874e563e5ac14 + a8108c906081c3c0198f250fb210c1dd275b2f01 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime 5535e31a712343a63f5d7d796cd874e563e5ac14 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 2aade6beb02ea367fd97c4070a4198802fe61c03 + a8108c906081c3c0198f250fb210c1dd275b2f01 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime @@ -125,9 +125,9 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime 5535e31a712343a63f5d7d796cd874e563e5ac14 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 5535e31a712343a63f5d7d796cd874e563e5ac14 + a8108c906081c3c0198f250fb210c1dd275b2f01 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime @@ -147,7 +147,7 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-winforms - 21f7ccf70589daa2376d758af5d0c43922027fb8 + bfc7e266f9967da8a398f67dac77b84a1210a42d diff --git a/eng/Versions.props b/eng/Versions.props index a67afbc62..5104a4215 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -25,7 +25,7 @@ 6.2.4 - 8.0.10-servicing.24459.10 + 8.0.10-servicing.24461.12 8.0.10 8.0.10 8.0.0 @@ -34,12 +34,12 @@ 8.0.0 8.0.0 8.0.0 - 8.0.0 - 8.0.0 - 8.0.0 + 8.0.1 + 8.0.1 + 8.0.1 8.0.1 - 8.0.0 - 8.0.0 + 8.0.1 + 8.0.1 8.0.0 8.0.0 5.0.0 @@ -48,28 +48,28 @@ 8.0.0 8.0.0 8.0.0 - 8.0.0 + 8.0.1 6.0.0 5.0.0 - 8.0.0 + 8.0.1 8.0.0 - 8.0.1 + 8.0.2 8.0.0 5.0.0 8.0.0 - 8.0.0 + 8.0.1 8.0.0 8.0.0 8.0.0 - 8.0.10-servicing.24459.10 + 8.0.10-servicing.24461.12 4.10.0 - 8.0.10-servicing.24461.5 - 8.0.10-servicing.24461.5 + 8.0.10-servicing.24462.7 + 8.0.10-servicing.24462.7 8.0.10 - 8.0.10-servicing.24462.4 - 8.0.10-servicing.24462.4 + 8.0.10-servicing.24462.8 + 8.0.10-servicing.24462.8 From f655eecd22b6810f2989d8ec783f5798a709ab06 Mon Sep 17 00:00:00 2001 From: maestro-prod-Primary Date: Wed, 18 Sep 2024 19:06:26 +0000 Subject: [PATCH 160/222] Merged PR 43006: [internal/release/8.0] Update dependencies from dnceng/internal/dotnet-wpf This pull request updates the following dependencies [marker]: <> (Begin:Coherency Updates) ## Coherency Updates The following updates ensure that dependencies with a *CoherentParentDependency* attribute were produced in a build used as input to the parent dependency's build. See [Dependency Description Format](https://github.com/dotnet/arcade/blob/master/Documentation/DependencyDescriptionFormat.md#dependency-description-overview) [DependencyUpdate]: <> (Begin) - **Coherency Updates**: - **Microsoft.Private.Winforms**: from 8.0.10-servicing.24462.7 to 8.0.10-servicing.24468.3 (parent: Microsoft.DotNet.Wpf.GitHub) - **Microsoft.Internal.Runtime.WindowsDesktop.Transport**: from 8.0.10-servicing.24461.12 to 8.0.10-servicing.24466.10 (parent: Microsoft.Private.Winforms) - **Microsoft.Private.Winforms**: from 8.0.10-servicing.24462.7 to 8.0.10-servicing.24468.3 (parent: Microsoft.DotNet.Wpf.GitHub) - **Microsoft.NETCore.App.Ref**: from 8.0.10 to 8.0.10 (parent: Microsoft.Private.Winforms) - **Microsoft.Private.Winforms**: from 8.0.10-servicing.24462.7 to 8.0.10-servicing.24468.3 (parent: Microsoft.DotNet.Wpf.GitHub) - **VS.Redist.Common.NetCore.SharedFramework.x64.8.0**: from 8.0.10-servicing.24461.12 to 8.0.10-servicing.24466.10 (parent: Microsoft.Private.Winforms) - **Microsoft.Private.Winforms**: from 8.0.10-servicing.24462.7 to 8.0.10-servicing.24468.3 (parent: Microsoft.DotNet.Wpf.GitHub) - **Microsoft.NETCore.App.Runtime.win-x64**: from 8.0.10 to 8.0.10 (parent: Microsoft.Private.Winforms) - **Microsoft.Dotnet.WinForms.ProjectTemplates**: from 8.0.10-servicing.24462.7 to 8.0.10-servicing.24468.3 (parent: Microsoft.DotNet.Wpf.GitHub) - **Microsoft.Private.Winforms**: from 8.0.10-servicing.24462.7 to 8.0.10-servicing.24468.3 (parent: Microsoft.DotNet.Wpf.GitHub) - **Microsoft.Private.Winforms**: from 8.0.10-servicing.24462.7 to 8.0.10-servicing.24468.3 (parent: Microsoft.DotNet.Wpf.GitHub) - **Microsoft.Private.Winforms**: from 8.0.10-servicing.24462.7 to 8.0.10-servicing.24468.3 (parent: Microsoft.DotNet.Wpf.GitHub) - **Microsoft.Private.Winforms**: from 8.0.10-servicing.24462.7 to 8.0.10-servicing.24468.3 (parent: Microsoft.DotNet.Wpf.GitHub) - **Microsoft.Private.Winforms**: from 8.0.10-servicing.24462.7 to 8.0.10-servicing.24468.3 (parent: Microsoft.DotNet.Wpf.GitHub) - **System.Configuration.ConfigurationManager**: from 8.0.1 to 8.0.1 (parent: Microsoft.Private.Winforms) - **Microsoft.Private.Winforms**: from 8.0.10-servicing.24462.7 to 8.0.10-servicing.24468.3 (parent: Microsoft.DotNet.Wpf.GitHub) - **System.Data.Odbc**: from 8.0.1 to 8.0.1 (parent: Microsoft.Private.Winforms) - **Microsoft.Private.Winforms**: from 8.0.10-servicing.24462.7 to 8.0.10-servicing.24468.3 (parent: Microsoft.DotNet.Wpf.GitHub) - **System.Data.OleDb**: from 8.0.1 to 8.0.1 (parent: Microsoft.Private.Winforms) - **Microsoft.Private.Winforms**: from 8.0.10-servicing.24462.7 to 8.0.10-servicing... --- NuGet.config | 10 +++----- eng/Version.Details.xml | 56 ++++++++++++++++++++--------------------- eng/Versions.props | 12 ++++----- 3 files changed, 38 insertions(+), 40 deletions(-) diff --git a/NuGet.config b/NuGet.config index 0457e1f63..4664b2abf 100644 --- a/NuGet.config +++ b/NuGet.config @@ -9,11 +9,10 @@ - - + - + @@ -26,11 +25,10 @@ - - + - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index f9d125b3c..d39e05426 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,41 +1,41 @@ - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - a8108c906081c3c0198f250fb210c1dd275b2f01 + 81cabf2857a01351e5ab578947c7403a5b128ad1 - + https://dev.azure.com/dnceng/internal/_git/dotnet-winforms - bfc7e266f9967da8a398f67dac77b84a1210a42d + e4efded416f8216935683d9a12e2eb45df78a728 - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - f97763771ad77bb288371e1c102d411a0fbc45c2 + e84ed744bb7989299c544f715056d05e220c7e00 - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - f97763771ad77bb288371e1c102d411a0fbc45c2 + e84ed744bb7989299c544f715056d05e220c7e00 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - a8108c906081c3c0198f250fb210c1dd275b2f01 + 81cabf2857a01351e5ab578947c7403a5b128ad1 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - a8108c906081c3c0198f250fb210c1dd275b2f01 + 81cabf2857a01351e5ab578947c7403a5b128ad1 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - a8108c906081c3c0198f250fb210c1dd275b2f01 + 81cabf2857a01351e5ab578947c7403a5b128ad1 - + https://dev.azure.com/dnceng/internal/_git/dotnet-winforms - bfc7e266f9967da8a398f67dac77b84a1210a42d + e4efded416f8216935683d9a12e2eb45df78a728 - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - f97763771ad77bb288371e1c102d411a0fbc45c2 + e84ed744bb7989299c544f715056d05e220c7e00 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime @@ -55,27 +55,27 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - a8108c906081c3c0198f250fb210c1dd275b2f01 + 81cabf2857a01351e5ab578947c7403a5b128ad1 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - a8108c906081c3c0198f250fb210c1dd275b2f01 + 81cabf2857a01351e5ab578947c7403a5b128ad1 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - a8108c906081c3c0198f250fb210c1dd275b2f01 + 81cabf2857a01351e5ab578947c7403a5b128ad1 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 7dc1560dfb4ff946388512ef439fcb44f294b32a + 81cabf2857a01351e5ab578947c7403a5b128ad1 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - a8108c906081c3c0198f250fb210c1dd275b2f01 + 81cabf2857a01351e5ab578947c7403a5b128ad1 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - a8108c906081c3c0198f250fb210c1dd275b2f01 + 81cabf2857a01351e5ab578947c7403a5b128ad1 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime @@ -87,7 +87,7 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - a8108c906081c3c0198f250fb210c1dd275b2f01 + 81cabf2857a01351e5ab578947c7403a5b128ad1 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime @@ -103,11 +103,11 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - a8108c906081c3c0198f250fb210c1dd275b2f01 + 81cabf2857a01351e5ab578947c7403a5b128ad1 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - a8108c906081c3c0198f250fb210c1dd275b2f01 + 81cabf2857a01351e5ab578947c7403a5b128ad1 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime @@ -115,7 +115,7 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - a8108c906081c3c0198f250fb210c1dd275b2f01 + 81cabf2857a01351e5ab578947c7403a5b128ad1 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime @@ -127,7 +127,7 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - a8108c906081c3c0198f250fb210c1dd275b2f01 + 81cabf2857a01351e5ab578947c7403a5b128ad1 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime @@ -147,7 +147,7 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-winforms - bfc7e266f9967da8a398f67dac77b84a1210a42d + e4efded416f8216935683d9a12e2eb45df78a728 diff --git a/eng/Versions.props b/eng/Versions.props index 5104a4215..5bc78fbde 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -25,7 +25,7 @@ 6.2.4 - 8.0.10-servicing.24461.12 + 8.0.10-servicing.24466.10 8.0.10 8.0.10 8.0.0 @@ -61,15 +61,15 @@ 8.0.0 8.0.0 8.0.0 - 8.0.10-servicing.24461.12 + 8.0.10-servicing.24466.10 4.10.0 - 8.0.10-servicing.24462.7 - 8.0.10-servicing.24462.7 + 8.0.10-servicing.24468.3 + 8.0.10-servicing.24468.3 8.0.10 - 8.0.10-servicing.24462.8 - 8.0.10-servicing.24462.8 + 8.0.10-servicing.24468.10 + 8.0.10-servicing.24468.10 From 1e5ebc8f0a0cb422c8a4ffc8826dbfd33bd75688 Mon Sep 17 00:00:00 2001 From: vseanreesermsft <78103370+vseanreesermsft@users.noreply.github.com> Date: Wed, 2 Oct 2024 09:22:08 -0700 Subject: [PATCH 161/222] Update branding to 8.0.11 (#4702) --- eng/Versions.props | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eng/Versions.props b/eng/Versions.props index 0d28d550f..eb1d2bfc6 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -2,7 +2,7 @@ 8 0 - 10 + 11 servicing From ba05fdd2c698e9712a235cc1a379fda4faa00c00 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Tue, 8 Oct 2024 16:25:04 +0000 Subject: [PATCH 162/222] [release/8.0] Update dependencies from dotnet/arcade (#4717) [release/8.0] Update dependencies from dotnet/arcade --- eng/Version.Details.xml | 24 ++++++++++++------------ eng/Versions.props | 8 ++++---- global.json | 4 ++-- 3 files changed, 18 insertions(+), 18 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 6feb7465e..b35c8ccf7 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -151,29 +151,29 @@ - + https://github.com/dotnet/arcade - 0028fccccc2181a64c5c4a283ac0baae3913284b + 103916ccdbe7f4ab2e194068a1a3cd330542601f - + https://github.com/dotnet/arcade - 0028fccccc2181a64c5c4a283ac0baae3913284b + 103916ccdbe7f4ab2e194068a1a3cd330542601f - + https://github.com/dotnet/arcade - 0028fccccc2181a64c5c4a283ac0baae3913284b + 103916ccdbe7f4ab2e194068a1a3cd330542601f - + https://github.com/dotnet/arcade - 0028fccccc2181a64c5c4a283ac0baae3913284b + 103916ccdbe7f4ab2e194068a1a3cd330542601f - + https://github.com/dotnet/arcade - 0028fccccc2181a64c5c4a283ac0baae3913284b + 103916ccdbe7f4ab2e194068a1a3cd330542601f - + https://github.com/dotnet/arcade - 0028fccccc2181a64c5c4a283ac0baae3913284b + 103916ccdbe7f4ab2e194068a1a3cd330542601f diff --git a/eng/Versions.props b/eng/Versions.props index eb1d2bfc6..0430f9a36 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -12,10 +12,10 @@ - 8.0.0-beta.24461.2 - 8.0.0-beta.24461.2 - 8.0.0-beta.24461.2 - 8.0.0-beta.24461.2 + 8.0.0-beta.24504.2 + 8.0.0-beta.24504.2 + 8.0.0-beta.24504.2 + 8.0.0-beta.24504.2 4.5.0 4.8.6 diff --git a/global.json b/global.json index 276f69980..26ed10398 100644 --- a/global.json +++ b/global.json @@ -3,8 +3,8 @@ "dotnet": "8.0.108" }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "8.0.0-beta.24461.2", - "Microsoft.DotNet.SharedFramework.Sdk": "8.0.0-beta.24461.2", + "Microsoft.DotNet.Arcade.Sdk": "8.0.0-beta.24504.2", + "Microsoft.DotNet.SharedFramework.Sdk": "8.0.0-beta.24504.2", "Microsoft.Build.NoTargets": "3.7.0", "Microsoft.Build.Traversal": "3.4.0" } From ad54a80c119623615a42f5cb22107317fb2f962d Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Thu, 10 Oct 2024 18:32:55 +0000 Subject: [PATCH 163/222] [release/8.0] Update dependencies from dotnet/arcade (#4729) [release/8.0] Update dependencies from dotnet/arcade --- NuGet.config | 20 ++++++++++++++++++-- eng/Version.Details.xml | 24 ++++++++++++------------ eng/Versions.props | 8 ++++---- eng/common/tools.ps1 | 2 +- global.json | 6 +++--- 5 files changed, 38 insertions(+), 22 deletions(-) diff --git a/NuGet.config b/NuGet.config index 4664b2abf..da4262e80 100644 --- a/NuGet.config +++ b/NuGet.config @@ -9,10 +9,18 @@ - + + + + + + + + + @@ -25,9 +33,17 @@ - + + + + + + + + + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index a25a85a4e..771fda433 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -151,29 +151,29 @@ - + https://github.com/dotnet/arcade - 103916ccdbe7f4ab2e194068a1a3cd330542601f + e5b13e054339e41d422212a0ecaf24fec20cb5a1 - + https://github.com/dotnet/arcade - 103916ccdbe7f4ab2e194068a1a3cd330542601f + e5b13e054339e41d422212a0ecaf24fec20cb5a1 - + https://github.com/dotnet/arcade - 103916ccdbe7f4ab2e194068a1a3cd330542601f + e5b13e054339e41d422212a0ecaf24fec20cb5a1 - + https://github.com/dotnet/arcade - 103916ccdbe7f4ab2e194068a1a3cd330542601f + e5b13e054339e41d422212a0ecaf24fec20cb5a1 - + https://github.com/dotnet/arcade - 103916ccdbe7f4ab2e194068a1a3cd330542601f + e5b13e054339e41d422212a0ecaf24fec20cb5a1 - + https://github.com/dotnet/arcade - 103916ccdbe7f4ab2e194068a1a3cd330542601f + e5b13e054339e41d422212a0ecaf24fec20cb5a1 diff --git a/eng/Versions.props b/eng/Versions.props index 27cef4e62..bb6b5be5c 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -12,10 +12,10 @@ - 8.0.0-beta.24504.2 - 8.0.0-beta.24504.2 - 8.0.0-beta.24504.2 - 8.0.0-beta.24504.2 + 8.0.0-beta.24508.1 + 8.0.0-beta.24508.1 + 8.0.0-beta.24508.1 + 8.0.0-beta.24508.1 4.5.0 4.8.6 diff --git a/eng/common/tools.ps1 b/eng/common/tools.ps1 index eb188cfda..a2dedaa52 100644 --- a/eng/common/tools.ps1 +++ b/eng/common/tools.ps1 @@ -892,7 +892,7 @@ function IsWindowsPlatform() { } function Get-Darc($version) { - $darcPath = "$TempDir\darc\$(New-Guid)" + $darcPath = "$TempDir\darc\$([guid]::NewGuid())" if ($version -ne $null) { & $PSScriptRoot\darc-init.ps1 -toolpath $darcPath -darcVersion $version | Out-Host } else { diff --git a/global.json b/global.json index 26ed10398..f1c4e46f6 100644 --- a/global.json +++ b/global.json @@ -1,10 +1,10 @@ { "tools": { - "dotnet": "8.0.108" + "dotnet": "8.0.110" }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "8.0.0-beta.24504.2", - "Microsoft.DotNet.SharedFramework.Sdk": "8.0.0-beta.24504.2", + "Microsoft.DotNet.Arcade.Sdk": "8.0.0-beta.24508.1", + "Microsoft.DotNet.SharedFramework.Sdk": "8.0.0-beta.24508.1", "Microsoft.Build.NoTargets": "3.7.0", "Microsoft.Build.Traversal": "3.4.0" } From 4e82cce1ef0ebb0af9c5c6b0acef82bed1ab6691 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Wed, 16 Oct 2024 21:42:19 +0000 Subject: [PATCH 164/222] [release/8.0] Update dependencies from dotnet/arcade (#4746) [release/8.0] Update dependencies from dotnet/arcade --- eng/Version.Details.xml | 24 +++++++++---------- eng/Versions.props | 8 +++---- .../steps/get-delegation-sas.yml | 11 ++++++++- .../templates/steps/get-delegation-sas.yml | 11 ++++++++- global.json | 4 ++-- 5 files changed, 38 insertions(+), 20 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 771fda433..35a02ff50 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -151,29 +151,29 @@ - + https://github.com/dotnet/arcade - e5b13e054339e41d422212a0ecaf24fec20cb5a1 + f7fb1fec01b91be69e4dcc5290a0bff3f28e214f - + https://github.com/dotnet/arcade - e5b13e054339e41d422212a0ecaf24fec20cb5a1 + f7fb1fec01b91be69e4dcc5290a0bff3f28e214f - + https://github.com/dotnet/arcade - e5b13e054339e41d422212a0ecaf24fec20cb5a1 + f7fb1fec01b91be69e4dcc5290a0bff3f28e214f - + https://github.com/dotnet/arcade - e5b13e054339e41d422212a0ecaf24fec20cb5a1 + f7fb1fec01b91be69e4dcc5290a0bff3f28e214f - + https://github.com/dotnet/arcade - e5b13e054339e41d422212a0ecaf24fec20cb5a1 + f7fb1fec01b91be69e4dcc5290a0bff3f28e214f - + https://github.com/dotnet/arcade - e5b13e054339e41d422212a0ecaf24fec20cb5a1 + f7fb1fec01b91be69e4dcc5290a0bff3f28e214f diff --git a/eng/Versions.props b/eng/Versions.props index bb6b5be5c..054507ee6 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -12,10 +12,10 @@ - 8.0.0-beta.24508.1 - 8.0.0-beta.24508.1 - 8.0.0-beta.24508.1 - 8.0.0-beta.24508.1 + 8.0.0-beta.24516.1 + 8.0.0-beta.24516.1 + 8.0.0-beta.24516.1 + 8.0.0-beta.24516.1 4.5.0 4.8.6 diff --git a/eng/common/templates-official/steps/get-delegation-sas.yml b/eng/common/templates-official/steps/get-delegation-sas.yml index c0e8f9131..c690cc0a0 100644 --- a/eng/common/templates-official/steps/get-delegation-sas.yml +++ b/eng/common/templates-official/steps/get-delegation-sas.yml @@ -28,7 +28,16 @@ steps: # Calculate the expiration of the SAS token and convert to UTC $expiry = (Get-Date).AddHours(${{ parameters.expiryInHours }}).ToUniversalTime().ToString("yyyy-MM-ddTHH:mm:ssZ") - $sas = az storage container generate-sas --account-name ${{ parameters.storageAccount }} --name ${{ parameters.container }} --permissions ${{ parameters.permissions }} --expiry $expiry --auth-mode login --as-user -o tsv + # Temporarily work around a helix issue where SAS tokens with / in them will cause incorrect downloads + # of correlation payloads. https://github.com/dotnet/dnceng/issues/3484 + $sas = "" + do { + $sas = az storage container generate-sas --account-name ${{ parameters.storageAccount }} --name ${{ parameters.container }} --permissions ${{ parameters.permissions }} --expiry $expiry --auth-mode login --as-user -o tsv + if ($LASTEXITCODE -ne 0) { + Write-Error "Failed to generate SAS token." + exit 1 + } + } while($sas.IndexOf('/') -ne -1) if ($LASTEXITCODE -ne 0) { Write-Error "Failed to generate SAS token." diff --git a/eng/common/templates/steps/get-delegation-sas.yml b/eng/common/templates/steps/get-delegation-sas.yml index c0e8f9131..c690cc0a0 100644 --- a/eng/common/templates/steps/get-delegation-sas.yml +++ b/eng/common/templates/steps/get-delegation-sas.yml @@ -28,7 +28,16 @@ steps: # Calculate the expiration of the SAS token and convert to UTC $expiry = (Get-Date).AddHours(${{ parameters.expiryInHours }}).ToUniversalTime().ToString("yyyy-MM-ddTHH:mm:ssZ") - $sas = az storage container generate-sas --account-name ${{ parameters.storageAccount }} --name ${{ parameters.container }} --permissions ${{ parameters.permissions }} --expiry $expiry --auth-mode login --as-user -o tsv + # Temporarily work around a helix issue where SAS tokens with / in them will cause incorrect downloads + # of correlation payloads. https://github.com/dotnet/dnceng/issues/3484 + $sas = "" + do { + $sas = az storage container generate-sas --account-name ${{ parameters.storageAccount }} --name ${{ parameters.container }} --permissions ${{ parameters.permissions }} --expiry $expiry --auth-mode login --as-user -o tsv + if ($LASTEXITCODE -ne 0) { + Write-Error "Failed to generate SAS token." + exit 1 + } + } while($sas.IndexOf('/') -ne -1) if ($LASTEXITCODE -ne 0) { Write-Error "Failed to generate SAS token." diff --git a/global.json b/global.json index f1c4e46f6..282d3f2df 100644 --- a/global.json +++ b/global.json @@ -3,8 +3,8 @@ "dotnet": "8.0.110" }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "8.0.0-beta.24508.1", - "Microsoft.DotNet.SharedFramework.Sdk": "8.0.0-beta.24508.1", + "Microsoft.DotNet.Arcade.Sdk": "8.0.0-beta.24516.1", + "Microsoft.DotNet.SharedFramework.Sdk": "8.0.0-beta.24516.1", "Microsoft.Build.NoTargets": "3.7.0", "Microsoft.Build.Traversal": "3.4.0" } From 0622172637c9882b21a3a4aafd3977b031d4789a Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Fri, 18 Oct 2024 06:34:22 +0000 Subject: [PATCH 165/222] Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-wpf build 20241017.13 Microsoft.DotNet.Wpf.GitHub , Microsoft.DotNet.Wpf.ProjectTemplates , Microsoft.NET.Sdk.WindowsDesktop From Version 8.0.10-servicing.24468.10 -> To Version 8.0.11-servicing.24517.13 Dependency coherency updates Microsoft.Private.Winforms,Microsoft.Internal.Runtime.WindowsDesktop.Transport,Microsoft.Private.Winforms,Microsoft.NETCore.App.Ref,Microsoft.Private.Winforms,VS.Redist.Common.NetCore.SharedFramework.x64.8.0,Microsoft.Private.Winforms,Microsoft.NETCore.App.Runtime.win-x64,Microsoft.Dotnet.WinForms.ProjectTemplates,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,System.Configuration.ConfigurationManager,Microsoft.Private.Winforms,System.Data.Odbc,Microsoft.Private.Winforms,System.Data.OleDb,Microsoft.Private.Winforms,System.Diagnostics.EventLog,Microsoft.Private.Winforms,System.Diagnostics.PerformanceCounter,Microsoft.Private.Winforms,System.DirectoryServices.AccountManagement,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,System.IO.Packaging,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,System.Runtime.Caching,Microsoft.Private.Winforms,System.Security.Cryptography.Pkcs,Microsoft.Private.Winforms,Microsoft.Private.Winforms,System.Security.Cryptography.Xml,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,System.ServiceProcess.ServiceController,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,System.Drawing.Common From Version 8.0.10-servicing.24468.3 -> To Version 8.0.11-servicing.24515.8 (parent: Microsoft.DotNet.Wpf.GitHub --- NuGet.config | 26 ++++------------- eng/Version.Details.xml | 62 ++++++++++++++++++++--------------------- eng/Versions.props | 18 ++++++------ 3 files changed, 46 insertions(+), 60 deletions(-) diff --git a/NuGet.config b/NuGet.config index da4262e80..168088998 100644 --- a/NuGet.config +++ b/NuGet.config @@ -9,18 +9,11 @@ - + + - - - - - - - - - + @@ -33,18 +26,11 @@ - + + - - - - - - - - - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 35a02ff50..e6aec3941 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,41 +1,41 @@ - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 81cabf2857a01351e5ab578947c7403a5b128ad1 + c36b66f47588241680d564feaa2d589299adcd9c - + https://dev.azure.com/dnceng/internal/_git/dotnet-winforms - e4efded416f8216935683d9a12e2eb45df78a728 + 92eeb1f915f74049db4373ba4bffb3f66f035622 - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - e84ed744bb7989299c544f715056d05e220c7e00 + dd62f3d4302d01e2b15f06c247910f5a9e0ac635 - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - e84ed744bb7989299c544f715056d05e220c7e00 + dd62f3d4302d01e2b15f06c247910f5a9e0ac635 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 81cabf2857a01351e5ab578947c7403a5b128ad1 + c36b66f47588241680d564feaa2d589299adcd9c - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 81cabf2857a01351e5ab578947c7403a5b128ad1 + c36b66f47588241680d564feaa2d589299adcd9c - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 81cabf2857a01351e5ab578947c7403a5b128ad1 + c36b66f47588241680d564feaa2d589299adcd9c - + https://dev.azure.com/dnceng/internal/_git/dotnet-winforms - e4efded416f8216935683d9a12e2eb45df78a728 + 92eeb1f915f74049db4373ba4bffb3f66f035622 - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - e84ed744bb7989299c544f715056d05e220c7e00 + dd62f3d4302d01e2b15f06c247910f5a9e0ac635 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime @@ -55,27 +55,27 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 81cabf2857a01351e5ab578947c7403a5b128ad1 + 5292f3ab6decc3a8f863b02e6043fdaa1190c72d https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 81cabf2857a01351e5ab578947c7403a5b128ad1 + 5292f3ab6decc3a8f863b02e6043fdaa1190c72d https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 81cabf2857a01351e5ab578947c7403a5b128ad1 + 5292f3ab6decc3a8f863b02e6043fdaa1190c72d https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 81cabf2857a01351e5ab578947c7403a5b128ad1 + 5292f3ab6decc3a8f863b02e6043fdaa1190c72d https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 81cabf2857a01351e5ab578947c7403a5b128ad1 + 5292f3ab6decc3a8f863b02e6043fdaa1190c72d https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 81cabf2857a01351e5ab578947c7403a5b128ad1 + 5292f3ab6decc3a8f863b02e6043fdaa1190c72d https://dev.azure.com/dnceng/internal/_git/dotnet-runtime @@ -87,7 +87,7 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 81cabf2857a01351e5ab578947c7403a5b128ad1 + 5292f3ab6decc3a8f863b02e6043fdaa1190c72d https://dev.azure.com/dnceng/internal/_git/dotnet-runtime @@ -103,11 +103,11 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 81cabf2857a01351e5ab578947c7403a5b128ad1 + 5292f3ab6decc3a8f863b02e6043fdaa1190c72d https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 81cabf2857a01351e5ab578947c7403a5b128ad1 + 5292f3ab6decc3a8f863b02e6043fdaa1190c72d https://dev.azure.com/dnceng/internal/_git/dotnet-runtime @@ -115,7 +115,7 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 81cabf2857a01351e5ab578947c7403a5b128ad1 + 5292f3ab6decc3a8f863b02e6043fdaa1190c72d https://dev.azure.com/dnceng/internal/_git/dotnet-runtime @@ -127,7 +127,7 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 81cabf2857a01351e5ab578947c7403a5b128ad1 + 5292f3ab6decc3a8f863b02e6043fdaa1190c72d https://dev.azure.com/dnceng/internal/_git/dotnet-runtime @@ -145,9 +145,9 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime 5535e31a712343a63f5d7d796cd874e563e5ac14 - + https://dev.azure.com/dnceng/internal/_git/dotnet-winforms - e4efded416f8216935683d9a12e2eb45df78a728 + 92eeb1f915f74049db4373ba4bffb3f66f035622 diff --git a/eng/Versions.props b/eng/Versions.props index 054507ee6..4a405f3e9 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -25,9 +25,9 @@ 6.2.4 - 8.0.10-servicing.24466.10 - 8.0.10 - 8.0.10 + 8.0.11-servicing.24514.23 + 8.0.11 + 8.0.11 8.0.0 5.0.0 8.0.0 @@ -61,15 +61,15 @@ 8.0.0 8.0.0 8.0.0 - 8.0.10-servicing.24466.10 + 8.0.11-servicing.24514.23 4.10.0 - 8.0.10-servicing.24468.3 - 8.0.10-servicing.24468.3 - 8.0.10 + 8.0.11-servicing.24515.8 + 8.0.11-servicing.24515.8 + 8.0.11 - 8.0.10-servicing.24468.10 - 8.0.10-servicing.24468.10 + 8.0.11-servicing.24517.13 + 8.0.11-servicing.24517.13 From e09597d698b406150b7d48326411841f800884e2 Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Fri, 18 Oct 2024 17:01:23 +0000 Subject: [PATCH 166/222] Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-wpf build 20241018.4 Microsoft.DotNet.Wpf.GitHub , Microsoft.DotNet.Wpf.ProjectTemplates , Microsoft.NET.Sdk.WindowsDesktop From Version 8.0.11-servicing.24517.13 -> To Version 8.0.11-servicing.24518.4 Dependency coherency updates Microsoft.Private.Winforms,Microsoft.Internal.Runtime.WindowsDesktop.Transport,Microsoft.Private.Winforms,Microsoft.NETCore.App.Ref,Microsoft.Private.Winforms,VS.Redist.Common.NetCore.SharedFramework.x64.8.0,Microsoft.Private.Winforms,Microsoft.NETCore.App.Runtime.win-x64,Microsoft.Dotnet.WinForms.ProjectTemplates,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,System.Drawing.Common From Version 8.0.11-servicing.24515.8 -> To Version 8.0.11-servicing.24518.1 (parent: Microsoft.DotNet.Wpf.GitHub --- NuGet.config | 8 ++++---- eng/Version.Details.xml | 34 +++++++++++++++++----------------- eng/Versions.props | 12 ++++++------ 3 files changed, 27 insertions(+), 27 deletions(-) diff --git a/NuGet.config b/NuGet.config index 168088998..7a82457b6 100644 --- a/NuGet.config +++ b/NuGet.config @@ -9,11 +9,11 @@ - + - + @@ -27,10 +27,10 @@ - + - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index e6aec3941..0b3857544 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,41 +1,41 @@ - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - c36b66f47588241680d564feaa2d589299adcd9c + 9cb3b725e3ad2b57ddc9fb2dd48d2d170563a8f5 - + https://dev.azure.com/dnceng/internal/_git/dotnet-winforms - 92eeb1f915f74049db4373ba4bffb3f66f035622 + a5159750d891acb077fdf5e028eb602bf450944a - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - dd62f3d4302d01e2b15f06c247910f5a9e0ac635 + 2398667ad95d477c56d7530b619a0bb4d18e3c64 - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - dd62f3d4302d01e2b15f06c247910f5a9e0ac635 + 2398667ad95d477c56d7530b619a0bb4d18e3c64 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - c36b66f47588241680d564feaa2d589299adcd9c + 9cb3b725e3ad2b57ddc9fb2dd48d2d170563a8f5 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - c36b66f47588241680d564feaa2d589299adcd9c + 9cb3b725e3ad2b57ddc9fb2dd48d2d170563a8f5 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - c36b66f47588241680d564feaa2d589299adcd9c + 9cb3b725e3ad2b57ddc9fb2dd48d2d170563a8f5 - + https://dev.azure.com/dnceng/internal/_git/dotnet-winforms - 92eeb1f915f74049db4373ba4bffb3f66f035622 + a5159750d891acb077fdf5e028eb602bf450944a - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - dd62f3d4302d01e2b15f06c247910f5a9e0ac635 + 2398667ad95d477c56d7530b619a0bb4d18e3c64 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime @@ -147,7 +147,7 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-winforms - 92eeb1f915f74049db4373ba4bffb3f66f035622 + a5159750d891acb077fdf5e028eb602bf450944a diff --git a/eng/Versions.props b/eng/Versions.props index 4a405f3e9..b37c64bd4 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -25,7 +25,7 @@ 6.2.4 - 8.0.11-servicing.24514.23 + 8.0.11-servicing.24517.7 8.0.11 8.0.11 8.0.0 @@ -61,15 +61,15 @@ 8.0.0 8.0.0 8.0.0 - 8.0.11-servicing.24514.23 + 8.0.11-servicing.24517.7 4.10.0 - 8.0.11-servicing.24515.8 - 8.0.11-servicing.24515.8 + 8.0.11-servicing.24518.1 + 8.0.11-servicing.24518.1 8.0.11 - 8.0.11-servicing.24517.13 - 8.0.11-servicing.24517.13 + 8.0.11-servicing.24518.4 + 8.0.11-servicing.24518.4 From 5eed6dae8453be0d09369cbca17c35ac6f834e56 Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Mon, 21 Oct 2024 23:30:30 +0000 Subject: [PATCH 167/222] Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-wpf build 20241021.7 Microsoft.DotNet.Wpf.GitHub , Microsoft.DotNet.Wpf.ProjectTemplates , Microsoft.NET.Sdk.WindowsDesktop From Version 8.0.11-servicing.24518.4 -> To Version 8.0.11-servicing.24521.7 Dependency coherency updates Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Dotnet.WinForms.ProjectTemplates,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,System.Configuration.ConfigurationManager,Microsoft.Private.Winforms,System.Data.Odbc,Microsoft.Private.Winforms,System.Data.OleDb,Microsoft.Private.Winforms,System.Diagnostics.EventLog,Microsoft.Private.Winforms,System.Diagnostics.PerformanceCounter,Microsoft.Private.Winforms,System.DirectoryServices.AccountManagement,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,System.IO.Packaging,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,System.Runtime.Caching,Microsoft.Private.Winforms,System.Security.Cryptography.Pkcs,Microsoft.Private.Winforms,Microsoft.Private.Winforms,System.Security.Cryptography.Xml,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,System.ServiceProcess.ServiceController,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,System.Drawing.Common From Version 8.0.11-servicing.24518.1 -> To Version 8.0.11-servicing.24521.3 (parent: Microsoft.DotNet.Wpf.GitHub --- NuGet.config | 8 ++++---- eng/Version.Details.xml | 44 ++++++++++++++++++++--------------------- eng/Versions.props | 8 ++++---- 3 files changed, 30 insertions(+), 30 deletions(-) diff --git a/NuGet.config b/NuGet.config index 7a82457b6..63db19064 100644 --- a/NuGet.config +++ b/NuGet.config @@ -10,10 +10,10 @@ - + - + @@ -26,11 +26,11 @@ - + - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 0b3857544..d70bd46d2 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -5,17 +5,17 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime 9cb3b725e3ad2b57ddc9fb2dd48d2d170563a8f5 - + https://dev.azure.com/dnceng/internal/_git/dotnet-winforms - a5159750d891acb077fdf5e028eb602bf450944a + 3069afa2664d12f5290b7002c5a9eb110e4ea844 - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - 2398667ad95d477c56d7530b619a0bb4d18e3c64 + 42a83a56d421ac71312453e53dbacc3d2ae6d432 - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - 2398667ad95d477c56d7530b619a0bb4d18e3c64 + 42a83a56d421ac71312453e53dbacc3d2ae6d432 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime @@ -29,13 +29,13 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime 9cb3b725e3ad2b57ddc9fb2dd48d2d170563a8f5 - + https://dev.azure.com/dnceng/internal/_git/dotnet-winforms - a5159750d891acb077fdf5e028eb602bf450944a + 3069afa2664d12f5290b7002c5a9eb110e4ea844 - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - 2398667ad95d477c56d7530b619a0bb4d18e3c64 + 42a83a56d421ac71312453e53dbacc3d2ae6d432 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime @@ -55,27 +55,27 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 5292f3ab6decc3a8f863b02e6043fdaa1190c72d + 81cabf2857a01351e5ab578947c7403a5b128ad1 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 5292f3ab6decc3a8f863b02e6043fdaa1190c72d + 81cabf2857a01351e5ab578947c7403a5b128ad1 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 5292f3ab6decc3a8f863b02e6043fdaa1190c72d + 81cabf2857a01351e5ab578947c7403a5b128ad1 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 5292f3ab6decc3a8f863b02e6043fdaa1190c72d + 81cabf2857a01351e5ab578947c7403a5b128ad1 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 5292f3ab6decc3a8f863b02e6043fdaa1190c72d + 81cabf2857a01351e5ab578947c7403a5b128ad1 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 5292f3ab6decc3a8f863b02e6043fdaa1190c72d + 81cabf2857a01351e5ab578947c7403a5b128ad1 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime @@ -87,7 +87,7 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 5292f3ab6decc3a8f863b02e6043fdaa1190c72d + 81cabf2857a01351e5ab578947c7403a5b128ad1 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime @@ -103,11 +103,11 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 5292f3ab6decc3a8f863b02e6043fdaa1190c72d + 81cabf2857a01351e5ab578947c7403a5b128ad1 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 5292f3ab6decc3a8f863b02e6043fdaa1190c72d + 81cabf2857a01351e5ab578947c7403a5b128ad1 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime @@ -115,7 +115,7 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 5292f3ab6decc3a8f863b02e6043fdaa1190c72d + 81cabf2857a01351e5ab578947c7403a5b128ad1 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime @@ -127,7 +127,7 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 5292f3ab6decc3a8f863b02e6043fdaa1190c72d + 81cabf2857a01351e5ab578947c7403a5b128ad1 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime @@ -147,7 +147,7 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-winforms - a5159750d891acb077fdf5e028eb602bf450944a + 3069afa2664d12f5290b7002c5a9eb110e4ea844 diff --git a/eng/Versions.props b/eng/Versions.props index b37c64bd4..ff1136ee8 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -65,11 +65,11 @@ 4.10.0 - 8.0.11-servicing.24518.1 - 8.0.11-servicing.24518.1 + 8.0.11-servicing.24521.3 + 8.0.11-servicing.24521.3 8.0.11 - 8.0.11-servicing.24518.4 - 8.0.11-servicing.24518.4 + 8.0.11-servicing.24521.7 + 8.0.11-servicing.24521.7 From 30798defcb38bf7147fbd55182ebe9641e28c2da Mon Sep 17 00:00:00 2001 From: Sean Reeser Date: Tue, 5 Nov 2024 10:43:55 -0800 Subject: [PATCH 168/222] Update branding to 8.0.12 --- eng/Versions.props | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eng/Versions.props b/eng/Versions.props index 054507ee6..68881d137 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -2,7 +2,7 @@ 8 0 - 11 + 12 servicing From 0dad47b40c489631d0d3e7c6cc10f0035590a17c Mon Sep 17 00:00:00 2001 From: maestro-prod-Primary Date: Wed, 4 Dec 2024 16:21:27 +0000 Subject: [PATCH 169/222] Merged PR 45641: [internal/release/8.0] Update dependencies from dnceng/internal/dotnet-wpf This pull request updates the following dependencies [marker]: <> (Begin:Coherency Updates) ## Coherency Updates The following updates ensure that dependencies with a *CoherentParentDependency* attribute were produced in a build used as input to the parent dependency's build. See [Dependency Description Format](https://github.com/dotnet/arcade/blob/master/Documentation/DependencyDescriptionFormat.md#dependency-description-overview) [DependencyUpdate]: <> (Begin) - **Coherency Updates**: - **Microsoft.Private.Winforms**: from 8.0.11-servicing.24521.3 to 8.0.12-servicing.24602.6 (parent: Microsoft.DotNet.Wpf.GitHub) - **Microsoft.Private.Winforms**: from 8.0.11-servicing.24521.3 to 8.0.12-servicing.24602.6 (parent: Microsoft.DotNet.Wpf.GitHub) - **Microsoft.Private.Winforms**: from 8.0.11-servicing.24521.3 to 8.0.12-servicing.24602.6 (parent: Microsoft.DotNet.Wpf.GitHub) - **Microsoft.Private.Winforms**: from 8.0.11-servicing.24521.3 to 8.0.12-servicing.24602.6 (parent: Microsoft.DotNet.Wpf.GitHub) - **Microsoft.Dotnet.WinForms.ProjectTemplates**: from 8.0.11-servicing.24521.3 to 8.0.12-servicing.24602.6 (parent: Microsoft.DotNet.Wpf.GitHub) - **Microsoft.Private.Winforms**: from 8.0.11-servicing.24521.3 to 8.0.12-servicing.24602.6 (parent: Microsoft.DotNet.Wpf.GitHub) - **Microsoft.Private.Winforms**: from 8.0.11-servicing.24521.3 to 8.0.12-servicing.24602.6 (parent: Microsoft.DotNet.Wpf.GitHub) - **Microsoft.Private.Winforms**: from 8.0.11-servicing.24521.3 to 8.0.12-servicing.24602.6 (parent: Microsoft.DotNet.Wpf.GitHub) - **Microsoft.Private.Winforms**: from 8.0.11-servicing.24521.3 to 8.0.12-servicing.24602.6 (parent: Microsoft.DotNet.Wpf.GitHub) - **Microsoft.Private.Winforms**: from 8.0.11-servicing.24521.3 to 8.0.12-servicing.24602.6 (parent: Microsoft.DotNet.Wpf.GitHub) - **Microsoft.Private.Winforms**: from 8.0.11-servicing.24521.3 to 8.0.12-servicing.24602.6 (parent: Microsoft.DotNet.Wpf.GitHub) - **Microsoft.Private.Winforms**: from 8.0.11-servicing.24521.3 to 8.0.12-servicing.24602.6 (parent: Microsoft.DotNet.Wpf.GitHub) - **Microsoft.Private.Winforms**: from 8.0.11-servicing.24521.3 to 8.0.12-servicing.24602.6 (parent: Microsoft.DotNet.Wpf.GitHub) - **Microsoft.Private.Winforms**: from 8.0.11-servicing.24521.3 to 8.0.12-servicing.24602.6 (parent: Microsoft.DotNet.Wpf.GitHub) - **Microsoft.Private.Winforms**: from 8.0.11-servicing.24521.3 to 8.0.12-servicing.24602.6 (parent: Microsoft.DotNet.Wpf.GitHub) - **Microsoft.Private.Winforms**: from 8.0.11-servicing.24521.3 to 8.0.12-servicing.24602.6 (parent: Microsoft.DotNet.Wpf.GitHub) - **Microsoft.Private.Winforms**: from 8.0.11-servicing.24521.3 to 8.0.12-servicing.24602.6 (parent: Microsoft.DotNet.Wpf.GitHub) - **Microsoft.Private.Winforms**: from 8.0.11-servicing.24521.3 to 8.0.12-servicing.24602.6 (parent: Microsoft.DotNet.Wpf.GitHub) - **Microsoft.Private.Winforms**: from 8.0.11-servicing.24521.3 to 8.0.12-servic... --- NuGet.config | 10 ++++------ eng/Version.Details.xml | 40 ++++++++++++++++++++-------------------- eng/Versions.props | 18 +++++++++--------- 3 files changed, 33 insertions(+), 35 deletions(-) diff --git a/NuGet.config b/NuGet.config index 63db19064..ff93a8b67 100644 --- a/NuGet.config +++ b/NuGet.config @@ -9,11 +9,10 @@ - - + - + @@ -26,11 +25,10 @@ - - + - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index d70bd46d2..3a2e24b98 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,41 +1,41 @@ - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 9cb3b725e3ad2b57ddc9fb2dd48d2d170563a8f5 + 89ef51c5d8f5239345127a1e282e11036e590c8b - + https://dev.azure.com/dnceng/internal/_git/dotnet-winforms - 3069afa2664d12f5290b7002c5a9eb110e4ea844 + 44b9411eeca123dd8b2c9d47afe46f9e537f1714 - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - 42a83a56d421ac71312453e53dbacc3d2ae6d432 + 6a2a510ae56ff16665d95b96a0920e2fd45e1d2b - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - 42a83a56d421ac71312453e53dbacc3d2ae6d432 + 6a2a510ae56ff16665d95b96a0920e2fd45e1d2b - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 9cb3b725e3ad2b57ddc9fb2dd48d2d170563a8f5 + 89ef51c5d8f5239345127a1e282e11036e590c8b - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 9cb3b725e3ad2b57ddc9fb2dd48d2d170563a8f5 + 89ef51c5d8f5239345127a1e282e11036e590c8b - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 9cb3b725e3ad2b57ddc9fb2dd48d2d170563a8f5 + 89ef51c5d8f5239345127a1e282e11036e590c8b - + https://dev.azure.com/dnceng/internal/_git/dotnet-winforms - 3069afa2664d12f5290b7002c5a9eb110e4ea844 + 44b9411eeca123dd8b2c9d47afe46f9e537f1714 - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - 42a83a56d421ac71312453e53dbacc3d2ae6d432 + 6a2a510ae56ff16665d95b96a0920e2fd45e1d2b https://dev.azure.com/dnceng/internal/_git/dotnet-runtime @@ -145,9 +145,9 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime 5535e31a712343a63f5d7d796cd874e563e5ac14 - + https://dev.azure.com/dnceng/internal/_git/dotnet-winforms - 3069afa2664d12f5290b7002c5a9eb110e4ea844 + 44b9411eeca123dd8b2c9d47afe46f9e537f1714 diff --git a/eng/Versions.props b/eng/Versions.props index bcb710f91..c9492390c 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -25,9 +25,9 @@ 6.2.4 - 8.0.11-servicing.24517.7 - 8.0.11 - 8.0.11 + 8.0.12-servicing.24603.5 + 8.0.12 + 8.0.12 8.0.0 5.0.0 8.0.0 @@ -61,15 +61,15 @@ 8.0.0 8.0.0 8.0.0 - 8.0.11-servicing.24517.7 + 8.0.12-servicing.24603.5 4.10.0 - 8.0.11-servicing.24521.3 - 8.0.11-servicing.24521.3 - 8.0.11 + 8.0.12-servicing.24603.6 + 8.0.12-servicing.24603.6 + 8.0.12 - 8.0.11-servicing.24521.7 - 8.0.11-servicing.24521.7 + 8.0.12-servicing.24603.5 + 8.0.12-servicing.24603.5 From 954691667cdc23a2919a2e1556ad567c16e80ebb Mon Sep 17 00:00:00 2001 From: vseanreesermsft <78103370+vseanreesermsft@users.noreply.github.com> Date: Tue, 7 Jan 2025 11:44:41 -0800 Subject: [PATCH 170/222] Update branding to 8.0.13 (#4840) --- eng/Versions.props | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eng/Versions.props b/eng/Versions.props index bcb710f91..f806468de 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -2,7 +2,7 @@ 8 0 - 12 + 13 servicing From 07f601d38013291ede55631d813b05c55937fdee Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Tue, 7 Jan 2025 19:56:32 +0000 Subject: [PATCH 171/222] [release/8.0] Update dependencies from dotnet/arcade (#4843) [release/8.0] Update dependencies from dotnet/arcade --- NuGet.config | 6 ---- eng/Version.Details.xml | 24 ++++++------- eng/Versions.props | 8 ++--- eng/common/cross/toolchain.cmake | 61 ++++++++++++++++---------------- eng/common/tools.ps1 | 2 +- eng/common/tools.sh | 2 +- global.json | 4 +-- 7 files changed, 50 insertions(+), 57 deletions(-) diff --git a/NuGet.config b/NuGet.config index 63db19064..1bd49f5bf 100644 --- a/NuGet.config +++ b/NuGet.config @@ -9,11 +9,8 @@ - - - @@ -26,11 +23,8 @@ - - - diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index d70bd46d2..5f7ced4bf 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -151,29 +151,29 @@ - + https://github.com/dotnet/arcade - f7fb1fec01b91be69e4dcc5290a0bff3f28e214f + 278b1dda181ab18a9fbed73da998e50d128eae21 - + https://github.com/dotnet/arcade - f7fb1fec01b91be69e4dcc5290a0bff3f28e214f + 278b1dda181ab18a9fbed73da998e50d128eae21 - + https://github.com/dotnet/arcade - f7fb1fec01b91be69e4dcc5290a0bff3f28e214f + 278b1dda181ab18a9fbed73da998e50d128eae21 - + https://github.com/dotnet/arcade - f7fb1fec01b91be69e4dcc5290a0bff3f28e214f + 278b1dda181ab18a9fbed73da998e50d128eae21 - + https://github.com/dotnet/arcade - f7fb1fec01b91be69e4dcc5290a0bff3f28e214f + 278b1dda181ab18a9fbed73da998e50d128eae21 - + https://github.com/dotnet/arcade - f7fb1fec01b91be69e4dcc5290a0bff3f28e214f + 278b1dda181ab18a9fbed73da998e50d128eae21 diff --git a/eng/Versions.props b/eng/Versions.props index f806468de..4e9e8a590 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -12,10 +12,10 @@ - 8.0.0-beta.24516.1 - 8.0.0-beta.24516.1 - 8.0.0-beta.24516.1 - 8.0.0-beta.24516.1 + 8.0.0-beta.24623.2 + 8.0.0-beta.24623.2 + 8.0.0-beta.24623.2 + 8.0.0-beta.24623.2 4.5.0 4.8.6 diff --git a/eng/common/cross/toolchain.cmake b/eng/common/cross/toolchain.cmake index 0998e875e..dafabdcae 100644 --- a/eng/common/cross/toolchain.cmake +++ b/eng/common/cross/toolchain.cmake @@ -40,7 +40,7 @@ if(TARGET_ARCH_NAME STREQUAL "arm") set(TOOLCHAIN "arm-linux-gnueabihf") endif() if(TIZEN) - set(TIZEN_TOOLCHAIN "armv7hl-tizen-linux-gnueabihf/9.2.0") + set(TIZEN_TOOLCHAIN "armv7hl-tizen-linux-gnueabihf") endif() elseif(TARGET_ARCH_NAME STREQUAL "arm64") set(CMAKE_SYSTEM_PROCESSOR aarch64) @@ -49,7 +49,7 @@ elseif(TARGET_ARCH_NAME STREQUAL "arm64") elseif(LINUX) set(TOOLCHAIN "aarch64-linux-gnu") if(TIZEN) - set(TIZEN_TOOLCHAIN "aarch64-tizen-linux-gnu/9.2.0") + set(TIZEN_TOOLCHAIN "aarch64-tizen-linux-gnu") endif() elseif(FREEBSD) set(triple "aarch64-unknown-freebsd12") @@ -58,7 +58,7 @@ elseif(TARGET_ARCH_NAME STREQUAL "armel") set(CMAKE_SYSTEM_PROCESSOR armv7l) set(TOOLCHAIN "arm-linux-gnueabi") if(TIZEN) - set(TIZEN_TOOLCHAIN "armv7l-tizen-linux-gnueabi/9.2.0") + set(TIZEN_TOOLCHAIN "armv7l-tizen-linux-gnueabi") endif() elseif(TARGET_ARCH_NAME STREQUAL "armv6") set(CMAKE_SYSTEM_PROCESSOR armv6l) @@ -95,7 +95,7 @@ elseif(TARGET_ARCH_NAME STREQUAL "x64") elseif(LINUX) set(TOOLCHAIN "x86_64-linux-gnu") if(TIZEN) - set(TIZEN_TOOLCHAIN "x86_64-tizen-linux-gnu/9.2.0") + set(TIZEN_TOOLCHAIN "x86_64-tizen-linux-gnu") endif() elseif(FREEBSD) set(triple "x86_64-unknown-freebsd12") @@ -112,7 +112,7 @@ elseif(TARGET_ARCH_NAME STREQUAL "x86") set(TOOLCHAIN "i686-linux-gnu") endif() if(TIZEN) - set(TIZEN_TOOLCHAIN "i586-tizen-linux-gnu/9.2.0") + set(TIZEN_TOOLCHAIN "i586-tizen-linux-gnu") endif() else() message(FATAL_ERROR "Arch is ${TARGET_ARCH_NAME}. Only arm, arm64, armel, armv6, ppc64le, riscv64, s390x, x64 and x86 are supported!") @@ -124,26 +124,25 @@ endif() # Specify include paths if(TIZEN) - if(TARGET_ARCH_NAME STREQUAL "arm") - include_directories(SYSTEM ${CROSS_ROOTFS}/usr/lib/gcc/${TIZEN_TOOLCHAIN}/include/c++/) - include_directories(SYSTEM ${CROSS_ROOTFS}/usr/lib/gcc/${TIZEN_TOOLCHAIN}/include/c++/armv7hl-tizen-linux-gnueabihf) - endif() - if(TARGET_ARCH_NAME STREQUAL "armel") - include_directories(SYSTEM ${CROSS_ROOTFS}/usr/lib/gcc/${TIZEN_TOOLCHAIN}/include/c++/) - include_directories(SYSTEM ${CROSS_ROOTFS}/usr/lib/gcc/${TIZEN_TOOLCHAIN}/include/c++/armv7l-tizen-linux-gnueabi) - endif() - if(TARGET_ARCH_NAME STREQUAL "arm64") - include_directories(SYSTEM ${CROSS_ROOTFS}/usr/lib64/gcc/${TIZEN_TOOLCHAIN}/include/c++/) - include_directories(SYSTEM ${CROSS_ROOTFS}/usr/lib64/gcc/${TIZEN_TOOLCHAIN}/include/c++/aarch64-tizen-linux-gnu) - endif() - if(TARGET_ARCH_NAME STREQUAL "x86") - include_directories(SYSTEM ${CROSS_ROOTFS}/usr/lib/gcc/${TIZEN_TOOLCHAIN}/include/c++/) - include_directories(SYSTEM ${CROSS_ROOTFS}/usr/lib/gcc/${TIZEN_TOOLCHAIN}/include/c++/i586-tizen-linux-gnu) - endif() - if(TARGET_ARCH_NAME STREQUAL "x64") - include_directories(SYSTEM ${CROSS_ROOTFS}/usr/lib64/gcc/${TIZEN_TOOLCHAIN}/include/c++/) - include_directories(SYSTEM ${CROSS_ROOTFS}/usr/lib64/gcc/${TIZEN_TOOLCHAIN}/include/c++/x86_64-tizen-linux-gnu) + function(find_toolchain_dir prefix) + # Dynamically find the version subdirectory + file(GLOB DIRECTORIES "${prefix}/*") + list(GET DIRECTORIES 0 FIRST_MATCH) + get_filename_component(TOOLCHAIN_VERSION ${FIRST_MATCH} NAME) + + set(TIZEN_TOOLCHAIN_PATH "${prefix}/${TOOLCHAIN_VERSION}" PARENT_SCOPE) + endfunction() + + if(TARGET_ARCH_NAME MATCHES "^(arm|armel|x86)$") + find_toolchain_dir("${CROSS_ROOTFS}/usr/lib/gcc/${TIZEN_TOOLCHAIN}") + else() + find_toolchain_dir("${CROSS_ROOTFS}/usr/lib64/gcc/${TIZEN_TOOLCHAIN}") endif() + + message(STATUS "TIZEN_TOOLCHAIN_PATH set to: ${TIZEN_TOOLCHAIN_PATH}") + + include_directories(SYSTEM ${TIZEN_TOOLCHAIN_PATH}/include/c++) + include_directories(SYSTEM ${TIZEN_TOOLCHAIN_PATH}/include/c++/${TIZEN_TOOLCHAIN}) endif() if(ANDROID) @@ -265,21 +264,21 @@ endif() if(TARGET_ARCH_NAME MATCHES "^(arm|armel)$") if(TIZEN) - add_toolchain_linker_flag("-B${CROSS_ROOTFS}/usr/lib/gcc/${TIZEN_TOOLCHAIN}") + add_toolchain_linker_flag("-B${TIZEN_TOOLCHAIN_PATH}") add_toolchain_linker_flag("-L${CROSS_ROOTFS}/lib") add_toolchain_linker_flag("-L${CROSS_ROOTFS}/usr/lib") - add_toolchain_linker_flag("-L${CROSS_ROOTFS}/usr/lib/gcc/${TIZEN_TOOLCHAIN}") + add_toolchain_linker_flag("-L${TIZEN_TOOLCHAIN_PATH}") endif() elseif(TARGET_ARCH_NAME MATCHES "^(arm64|x64)$") if(TIZEN) - add_toolchain_linker_flag("-B${CROSS_ROOTFS}/usr/lib64/gcc/${TIZEN_TOOLCHAIN}") + add_toolchain_linker_flag("-B${TIZEN_TOOLCHAIN_PATH}") add_toolchain_linker_flag("-L${CROSS_ROOTFS}/lib64") add_toolchain_linker_flag("-L${CROSS_ROOTFS}/usr/lib64") - add_toolchain_linker_flag("-L${CROSS_ROOTFS}/usr/lib64/gcc/${TIZEN_TOOLCHAIN}") + add_toolchain_linker_flag("-L${TIZEN_TOOLCHAIN_PATH}") add_toolchain_linker_flag("-Wl,--rpath-link=${CROSS_ROOTFS}/lib64") add_toolchain_linker_flag("-Wl,--rpath-link=${CROSS_ROOTFS}/usr/lib64") - add_toolchain_linker_flag("-Wl,--rpath-link=${CROSS_ROOTFS}/usr/lib64/gcc/${TIZEN_TOOLCHAIN}") + add_toolchain_linker_flag("-Wl,--rpath-link=${TIZEN_TOOLCHAIN_PATH}") endif() elseif(TARGET_ARCH_NAME STREQUAL "x86") if(EXISTS ${CROSS_ROOTFS}/usr/lib/gcc/i586-alpine-linux-musl) @@ -288,10 +287,10 @@ elseif(TARGET_ARCH_NAME STREQUAL "x86") endif() add_toolchain_linker_flag(-m32) if(TIZEN) - add_toolchain_linker_flag("-B${CROSS_ROOTFS}/usr/lib/gcc/${TIZEN_TOOLCHAIN}") + add_toolchain_linker_flag("-B${TIZEN_TOOLCHAIN_PATH}") add_toolchain_linker_flag("-L${CROSS_ROOTFS}/lib") add_toolchain_linker_flag("-L${CROSS_ROOTFS}/usr/lib") - add_toolchain_linker_flag("-L${CROSS_ROOTFS}/usr/lib/gcc/${TIZEN_TOOLCHAIN}") + add_toolchain_linker_flag("-L${TIZEN_TOOLCHAIN_PATH}") endif() elseif(ILLUMOS) add_toolchain_linker_flag("-L${CROSS_ROOTFS}/lib/amd64") diff --git a/eng/common/tools.ps1 b/eng/common/tools.ps1 index a2dedaa52..60352ede1 100644 --- a/eng/common/tools.ps1 +++ b/eng/common/tools.ps1 @@ -321,7 +321,7 @@ function InstallDotNet([string] $dotnetRoot, $variations += @($installParameters) $dotnetBuilds = $installParameters.Clone() - $dotnetbuilds.AzureFeed = "https://dotnetbuilds.azureedge.net/public" + $dotnetbuilds.AzureFeed = "https://ci.dot.net/public" $variations += @($dotnetBuilds) if ($runtimeSourceFeed) { diff --git a/eng/common/tools.sh b/eng/common/tools.sh index 3392e3a99..b9b329ce3 100644 --- a/eng/common/tools.sh +++ b/eng/common/tools.sh @@ -234,7 +234,7 @@ function InstallDotNet { local public_location=("${installParameters[@]}") variations+=(public_location) - local dotnetbuilds=("${installParameters[@]}" --azure-feed "https://dotnetbuilds.azureedge.net/public") + local dotnetbuilds=("${installParameters[@]}" --azure-feed "https://ci.dot.net/public") variations+=(dotnetbuilds) if [[ -n "${6:-}" ]]; then diff --git a/global.json b/global.json index 282d3f2df..99d0a2611 100644 --- a/global.json +++ b/global.json @@ -3,8 +3,8 @@ "dotnet": "8.0.110" }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "8.0.0-beta.24516.1", - "Microsoft.DotNet.SharedFramework.Sdk": "8.0.0-beta.24516.1", + "Microsoft.DotNet.Arcade.Sdk": "8.0.0-beta.24623.2", + "Microsoft.DotNet.SharedFramework.Sdk": "8.0.0-beta.24623.2", "Microsoft.Build.NoTargets": "3.7.0", "Microsoft.Build.Traversal": "3.4.0" } From 84bb28169437f7ce9d302fb2baba722ffe673edb Mon Sep 17 00:00:00 2001 From: Loni Tra Date: Tue, 7 Jan 2025 15:32:05 -0800 Subject: [PATCH 172/222] [release/8.0] Update MicroBuild to v4 (#4846) Update MicroBuild to v4 --- eng/pipelines/jobs/prepare-signed-artifacts.yml | 2 +- eng/pipelines/jobs/windows-build-PR.yml | 2 +- eng/pipelines/jobs/windows-build.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/eng/pipelines/jobs/prepare-signed-artifacts.yml b/eng/pipelines/jobs/prepare-signed-artifacts.yml index 9f9aea399..3e4f3299f 100644 --- a/eng/pipelines/jobs/prepare-signed-artifacts.yml +++ b/eng/pipelines/jobs/prepare-signed-artifacts.yml @@ -20,7 +20,7 @@ jobs: steps: - task: NuGetAuthenticate@1 - - task: MicroBuildSigningPlugin@2 + - task: MicroBuildSigningPlugin@4 displayName: Install MicroBuild plugin for Signing inputs: signType: $(SignType) diff --git a/eng/pipelines/jobs/windows-build-PR.yml b/eng/pipelines/jobs/windows-build-PR.yml index d5cb45f24..80bd4c187 100644 --- a/eng/pipelines/jobs/windows-build-PR.yml +++ b/eng/pipelines/jobs/windows-build-PR.yml @@ -48,7 +48,7 @@ jobs: env: Token: $(dn-bot-dnceng-artifact-feeds-rw) - - task: MicroBuildSigningPlugin@2 + - task: MicroBuildSigningPlugin@4 displayName: Install MicroBuild plugin for Signing inputs: signType: $(SignType) diff --git a/eng/pipelines/jobs/windows-build.yml b/eng/pipelines/jobs/windows-build.yml index f263b2d5f..65a33af41 100644 --- a/eng/pipelines/jobs/windows-build.yml +++ b/eng/pipelines/jobs/windows-build.yml @@ -52,7 +52,7 @@ jobs: env: Token: $(dn-bot-dnceng-artifact-feeds-rw) - - task: MicroBuildSigningPlugin@2 + - task: MicroBuildSigningPlugin@4 displayName: Install MicroBuild plugin for Signing inputs: signType: $(SignType) From ebb928971a5ca7dc9f4de3f5e85d57665f4d479f Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Tue, 14 Jan 2025 15:09:16 +0000 Subject: [PATCH 173/222] [release/8.0] Update dependencies from dotnet/arcade (#4857) [release/8.0] Update dependencies from dotnet/arcade --- eng/Version.Details.xml | 24 +++++++++---------- eng/Versions.props | 8 +++---- .../job/publish-build-assets.yml | 2 +- .../post-build/common-variables.yml | 2 +- eng/common/templates/job/job.yml | 2 +- global.json | 4 ++-- 6 files changed, 21 insertions(+), 21 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 5f7ced4bf..a76bbd7c5 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -151,29 +151,29 @@ - + https://github.com/dotnet/arcade - 278b1dda181ab18a9fbed73da998e50d128eae21 + c255aae7f2b128fa20a4441f0e192c3c53561621 - + https://github.com/dotnet/arcade - 278b1dda181ab18a9fbed73da998e50d128eae21 + c255aae7f2b128fa20a4441f0e192c3c53561621 - + https://github.com/dotnet/arcade - 278b1dda181ab18a9fbed73da998e50d128eae21 + c255aae7f2b128fa20a4441f0e192c3c53561621 - + https://github.com/dotnet/arcade - 278b1dda181ab18a9fbed73da998e50d128eae21 + c255aae7f2b128fa20a4441f0e192c3c53561621 - + https://github.com/dotnet/arcade - 278b1dda181ab18a9fbed73da998e50d128eae21 + c255aae7f2b128fa20a4441f0e192c3c53561621 - + https://github.com/dotnet/arcade - 278b1dda181ab18a9fbed73da998e50d128eae21 + c255aae7f2b128fa20a4441f0e192c3c53561621 diff --git a/eng/Versions.props b/eng/Versions.props index 4e9e8a590..f81a1d9eb 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -12,10 +12,10 @@ - 8.0.0-beta.24623.2 - 8.0.0-beta.24623.2 - 8.0.0-beta.24623.2 - 8.0.0-beta.24623.2 + 8.0.0-beta.25060.1 + 8.0.0-beta.25060.1 + 8.0.0-beta.25060.1 + 8.0.0-beta.25060.1 4.5.0 4.8.6 diff --git a/eng/common/templates-official/job/publish-build-assets.yml b/eng/common/templates-official/job/publish-build-assets.yml index 011732880..b2ccd9df6 100644 --- a/eng/common/templates-official/job/publish-build-assets.yml +++ b/eng/common/templates-official/job/publish-build-assets.yml @@ -86,7 +86,7 @@ jobs: arguments: > -task PublishBuildAssets -restore -msbuildEngine dotnet /p:ManifestsPath='$(Build.StagingDirectory)/Download/AssetManifests' - /p:MaestroApiEndpoint=https://maestro-prod.westus2.cloudapp.azure.com + /p:MaestroApiEndpoint=https://maestro.dot.net /p:PublishUsingPipelines=${{ parameters.publishUsingPipelines }} /p:OfficialBuildId=$(Build.BuildNumber) condition: ${{ parameters.condition }} diff --git a/eng/common/templates-official/post-build/common-variables.yml b/eng/common/templates-official/post-build/common-variables.yml index c24193acf..173914f23 100644 --- a/eng/common/templates-official/post-build/common-variables.yml +++ b/eng/common/templates-official/post-build/common-variables.yml @@ -7,7 +7,7 @@ variables: # Default Maestro++ API Endpoint and API Version - name: MaestroApiEndPoint - value: "https://maestro-prod.westus2.cloudapp.azure.com" + value: "https://maestro.dot.net" - name: MaestroApiAccessToken value: $(MaestroAccessToken) - name: MaestroApiVersion diff --git a/eng/common/templates/job/job.yml b/eng/common/templates/job/job.yml index 8ec5c4f2d..e295031c0 100644 --- a/eng/common/templates/job/job.yml +++ b/eng/common/templates/job/job.yml @@ -128,7 +128,7 @@ jobs: - ${{ if and(eq(parameters.runAsPublic, 'false'), ne(variables['System.TeamProject'], 'public'), notin(variables['Build.Reason'], 'PullRequest')) }}: - ${{ if eq(parameters.enableMicrobuild, 'true') }}: - - task: MicroBuildSigningPlugin@3 + - task: MicroBuildSigningPlugin@4 displayName: Install MicroBuild plugin inputs: signType: $(_SignType) diff --git a/global.json b/global.json index 99d0a2611..130e94994 100644 --- a/global.json +++ b/global.json @@ -3,8 +3,8 @@ "dotnet": "8.0.110" }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "8.0.0-beta.24623.2", - "Microsoft.DotNet.SharedFramework.Sdk": "8.0.0-beta.24623.2", + "Microsoft.DotNet.Arcade.Sdk": "8.0.0-beta.25060.1", + "Microsoft.DotNet.SharedFramework.Sdk": "8.0.0-beta.25060.1", "Microsoft.Build.NoTargets": "3.7.0", "Microsoft.Build.Traversal": "3.4.0" } From e43b37de7d5916352702dda1b65d98dd66f5f9f4 Mon Sep 17 00:00:00 2001 From: ProductConstructionServiceProd Date: Fri, 17 Jan 2025 08:59:19 +0000 Subject: [PATCH 174/222] Merged PR 46824: [internal/release/8.0] Update dependencies from dnceng/internal/dotnet-wpf This pull request updates the following dependencies [marker]: <> (Begin:Coherency Updates) ## Coherency Updates The following updates ensure that dependencies with a *CoherentParentDependency* attribute were produced in a build used as input to the parent dependency's build. See [Dependency Description Format](https://github.com/dotnet/arcade/blob/master/Documentation/DependencyDescriptionFormat.md#dependency-description-overview) [DependencyUpdate]: <> (Begin) - **Coherency Updates**: - **Microsoft.Private.Winforms**: from 8.0.12-servicing.24603.6 to 8.0.13-servicing.25066.3 (parent: Microsoft.DotNet.Wpf.GitHub) - **Microsoft.Internal.Runtime.WindowsDesktop.Transport**: from 8.0.12-servicing.24603.5 to 8.0.13-servicing.25066.9 (parent: Microsoft.Private.Winforms) - **Microsoft.Private.Winforms**: from 8.0.12-servicing.24603.6 to 8.0.13-servicing.25066.3 (parent: Microsoft.DotNet.Wpf.GitHub) - **Microsoft.NETCore.App.Ref**: from 8.0.12 to 8.0.13 (parent: Microsoft.Private.Winforms) - **Microsoft.Private.Winforms**: from 8.0.12-servicing.24603.6 to 8.0.13-servicing.25066.3 (parent: Microsoft.DotNet.Wpf.GitHub) - **VS.Redist.Common.NetCore.SharedFramework.x64.8.0**: from 8.0.12-servicing.24603.5 to 8.0.13-servicing.25066.9 (parent: Microsoft.Private.Winforms) - **Microsoft.Private.Winforms**: from 8.0.12-servicing.24603.6 to 8.0.13-servicing.25066.3 (parent: Microsoft.DotNet.Wpf.GitHub) - **Microsoft.NETCore.App.Runtime.win-x64**: from 8.0.12 to 8.0.13 (parent: Microsoft.Private.Winforms) - **Microsoft.Dotnet.WinForms.ProjectTemplates**: from 8.0.12-servicing.24603.6 to 8.0.13-servicing.25066.3 (parent: Microsoft.DotNet.Wpf.GitHub) - **Microsoft.Private.Winforms**: from 8.0.12-servicing.24603.6 to 8.0.13-servicing.25066.3 (parent: Microsoft.DotNet.Wpf.GitHub) - **Microsoft.Private.Winforms**: from 8.0.12-servicing.24603.6 to 8.0.13-servicing.25066.3 (parent: Microsoft.DotNet.Wpf.GitHub) - **Microsoft.Private.Winforms**: from 8.0.12-servicing.24603.6 to 8.0.13-servicing.25066.3 (parent: Microsoft.DotNet.Wpf.GitHub) - **Microsoft.Private.Winforms**: from 8.0.12-servicing.24603.6 to 8.0.13-servicing.25066.3 (parent: Microsoft.DotNet.Wpf.GitHub) - **Microsoft.Private.Winforms**: from 8.0.12-servicing.24603.6 to 8.0.13-servicing.25066.3 (parent: Microsoft.DotNet.Wpf.GitHub) - **Microsoft.Private.Winforms**: from 8.0.12-servicing.24603.6 to 8.0.13-servicing.25066.3 (parent: Microsoft.DotNet.Wpf.GitHub) - **Microsoft.Private.Winforms**: from 8.0.12-servicing.24603.6 to 8.0.13-servicing.25066.3 (parent: Microsoft.DotNet.Wpf.GitHub) - **Microsoft.Private.Winforms**: from 8.0.12-servicing.24603.6 to 8.0.13-servicing.25066.3 (parent: Microsoft.DotNet.Wpf.GitHub) - **Microsoft.Private.Winforms**: from 8.0.12-servicing.24603.6 to 8.0.13-servicing.25066.3 (parent: Microsoft.DotNet.Wpf.GitHub) - **Microsoft.Private.Winforms**: from 8.0.12-servicing.24603.6 to 8.0.13-servicing.25066.3 (parent: Microsoft.DotNet.Wpf.GitHub)... --- NuGet.config | 8 ++++---- eng/Version.Details.xml | 40 ++++++++++++++++++++-------------------- eng/Versions.props | 18 +++++++++--------- 3 files changed, 33 insertions(+), 33 deletions(-) diff --git a/NuGet.config b/NuGet.config index ff93a8b67..93b53d15c 100644 --- a/NuGet.config +++ b/NuGet.config @@ -9,10 +9,10 @@ - + - + @@ -25,10 +25,10 @@ - + - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 915f83059..190ffcc20 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,41 +1,41 @@ - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 89ef51c5d8f5239345127a1e282e11036e590c8b + eba546b0f0d448e0176a2222548fd7a2fbf464c0 - + https://dev.azure.com/dnceng/internal/_git/dotnet-winforms - 44b9411eeca123dd8b2c9d47afe46f9e537f1714 + ffd0879b7792b899ae8210242a58cdc8529c8e7f - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - 6a2a510ae56ff16665d95b96a0920e2fd45e1d2b + b7c5b2dd5e9b61459c7ba2e58f306029ec791c0d - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - 6a2a510ae56ff16665d95b96a0920e2fd45e1d2b + b7c5b2dd5e9b61459c7ba2e58f306029ec791c0d - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 89ef51c5d8f5239345127a1e282e11036e590c8b + eba546b0f0d448e0176a2222548fd7a2fbf464c0 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 89ef51c5d8f5239345127a1e282e11036e590c8b + eba546b0f0d448e0176a2222548fd7a2fbf464c0 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 89ef51c5d8f5239345127a1e282e11036e590c8b + eba546b0f0d448e0176a2222548fd7a2fbf464c0 - + https://dev.azure.com/dnceng/internal/_git/dotnet-winforms - 44b9411eeca123dd8b2c9d47afe46f9e537f1714 + ffd0879b7792b899ae8210242a58cdc8529c8e7f - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - 6a2a510ae56ff16665d95b96a0920e2fd45e1d2b + b7c5b2dd5e9b61459c7ba2e58f306029ec791c0d https://dev.azure.com/dnceng/internal/_git/dotnet-runtime @@ -145,9 +145,9 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime 5535e31a712343a63f5d7d796cd874e563e5ac14 - + https://dev.azure.com/dnceng/internal/_git/dotnet-winforms - 44b9411eeca123dd8b2c9d47afe46f9e537f1714 + ffd0879b7792b899ae8210242a58cdc8529c8e7f diff --git a/eng/Versions.props b/eng/Versions.props index 1879498ba..eb00dba94 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -25,9 +25,9 @@ 6.2.4 - 8.0.12-servicing.24603.5 - 8.0.12 - 8.0.12 + 8.0.13-servicing.25066.9 + 8.0.13 + 8.0.13 8.0.0 5.0.0 8.0.0 @@ -61,15 +61,15 @@ 8.0.0 8.0.0 8.0.0 - 8.0.12-servicing.24603.5 + 8.0.13-servicing.25066.9 4.10.0 - 8.0.12-servicing.24603.6 - 8.0.12-servicing.24603.6 - 8.0.12 + 8.0.13-servicing.25066.3 + 8.0.13-servicing.25066.3 + 8.0.13 - 8.0.12-servicing.24603.5 - 8.0.12-servicing.24603.5 + 8.0.13-servicing.25066.5 + 8.0.13-servicing.25066.5 From 00b4583bc260ffea439be08bebc69b02de75f8c3 Mon Sep 17 00:00:00 2001 From: Sean Reeser Date: Tue, 4 Feb 2025 11:41:19 -0800 Subject: [PATCH 175/222] Update branding to 8.0.14 --- eng/Versions.props | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eng/Versions.props b/eng/Versions.props index 1879498ba..88572e19e 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -2,7 +2,7 @@ 8 0 - 13 + 14 servicing From 6936ad69a6d0332035eabd44bb47b73b450edd55 Mon Sep 17 00:00:00 2001 From: Tanya Solyanik Date: Thu, 6 Feb 2025 08:34:42 -0800 Subject: [PATCH 176/222] Don't set OfficialBuildId in non-official builds (#4892) --- azure-pipelines-PR.yml | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/azure-pipelines-PR.yml b/azure-pipelines-PR.yml index 07f8c7003..59e2f864d 100644 --- a/azure-pipelines-PR.yml +++ b/azure-pipelines-PR.yml @@ -20,16 +20,6 @@ variables: # Skip Running CI tests - name: SkipTests value: false - # Set Official Build Id - - name: OfficialBuildId - value: $(Build.BuildNumber) - - ${{ if or(startswith(variables['Build.SourceBranch'], 'refs/heads/release/'), startswith(variables['Build.SourceBranch'], 'refs/heads/internal/release/'), eq(variables['Build.Reason'], 'Manual')) }}: - - name: PostBuildSign - value: false - - ${{ else }}: - - name: PostBuildSign - value: true - # Produce test-signed build for PR and Public builds - name: SignType value: test From 69887e87036c6dcd5353f22004673f984e730c9c Mon Sep 17 00:00:00 2001 From: ProductConstructionServiceProd Date: Wed, 12 Feb 2025 20:29:33 +0000 Subject: [PATCH 177/222] Merged PR 47587: [internal/release/8.0] Update dependencies from dnceng/internal/dotnet-wpf This pull request updates the following dependencies [marker]: <> (Begin:Coherency Updates) ## Coherency Updates The following updates ensure that dependencies with a *CoherentParentDependency* attribute were produced in a build used as input to the parent dependency's build. See [Dependency Description Format](https://github.com/dotnet/arcade/blob/master/Documentation/DependencyDescriptionFormat.md#dependency-description-overview) [DependencyUpdate]: <> (Begin) - **Coherency Updates**: - **Microsoft.Private.Winforms**: from 8.0.13-servicing.25066.3 to 8.0.14-servicing.25111.5 (parent: Microsoft.DotNet.Wpf.GitHub) - **Microsoft.Internal.Runtime.WindowsDesktop.Transport**: from 8.0.13-servicing.25066.9 to 8.0.14-servicing.25111.10 (parent: Microsoft.Private.Winforms) - **Microsoft.Private.Winforms**: from 8.0.13-servicing.25066.3 to 8.0.14-servicing.25111.5 (parent: Microsoft.DotNet.Wpf.GitHub) - **Microsoft.NETCore.App.Ref**: from 8.0.13 to 8.0.14 (parent: Microsoft.Private.Winforms) - **Microsoft.Private.Winforms**: from 8.0.13-servicing.25066.3 to 8.0.14-servicing.25111.5 (parent: Microsoft.DotNet.Wpf.GitHub) - **VS.Redist.Common.NetCore.SharedFramework.x64.8.0**: from 8.0.13-servicing.25066.9 to 8.0.14-servicing.25111.10 (parent: Microsoft.Private.Winforms) - **Microsoft.Private.Winforms**: from 8.0.13-servicing.25066.3 to 8.0.14-servicing.25111.5 (parent: Microsoft.DotNet.Wpf.GitHub) - **Microsoft.NETCore.App.Runtime.win-x64**: from 8.0.13 to 8.0.14 (parent: Microsoft.Private.Winforms) - **Microsoft.Dotnet.WinForms.ProjectTemplates**: from 8.0.13-servicing.25066.3 to 8.0.14-servicing.25111.5 (parent: Microsoft.DotNet.Wpf.GitHub) - **Microsoft.Private.Winforms**: from 8.0.13-servicing.25066.3 to 8.0.14-servicing.25111.5 (parent: Microsoft.DotNet.Wpf.GitHub) - **Microsoft.Private.Winforms**: from 8.0.13-servicing.25066.3 to 8.0.14-servicing.25111.5 (parent: Microsoft.DotNet.Wpf.GitHub) - **Microsoft.Private.Winforms**: from 8.0.13-servicing.25066.3 to 8.0.14-servicing.25111.5 (parent: Microsoft.DotNet.Wpf.GitHub) - **Microsoft.Private.Winforms**: from 8.0.13-servicing.25066.3 to 8.0.14-servicing.25111.5 (parent: Microsoft.DotNet.Wpf.GitHub) - **Microsoft.Private.Winforms**: from 8.0.13-servicing.25066.3 to 8.0.14-servicing.25111.5 (parent: Microsoft.DotNet.Wpf.GitHub) - **Microsoft.Private.Winforms**: from 8.0.13-servicing.25066.3 to 8.0.14-servicing.25111.5 (parent: Microsoft.DotNet.Wpf.GitHub) - **Microsoft.Private.Winforms**: from 8.0.13-servicing.25066.3 to 8.0.14-servicing.25111.5 (parent: Microsoft.DotNet.Wpf.GitHub) - **Microsoft.Private.Winforms**: from 8.0.13-servicing.25066.3 to 8.0.14-servicing.25111.5 (parent: Microsoft.DotNet.Wpf.GitHub) - **Microsoft.Private.Winforms**: from 8.0.13-servicing.25066.3 to 8.0.14-servicing.25111.5 (parent: Microsoft.DotNet.Wpf.GitHub) - **Microsoft.Private.Winforms**: from 8.0.13-servicing.25066.3 to 8.0.14-servicing.25111.5 (parent: Microsoft.DotNet.Wpf.GitHu... --- NuGet.config | 8 ++++---- eng/Version.Details.xml | 40 ++++++++++++++++++++-------------------- eng/Versions.props | 18 +++++++++--------- 3 files changed, 33 insertions(+), 33 deletions(-) diff --git a/NuGet.config b/NuGet.config index 93b53d15c..2186c4098 100644 --- a/NuGet.config +++ b/NuGet.config @@ -9,10 +9,10 @@ - + - + @@ -25,10 +25,10 @@ - + - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 190ffcc20..56324af25 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,41 +1,41 @@ - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - eba546b0f0d448e0176a2222548fd7a2fbf464c0 + d8ee7c837b53a52795d374c694ff2c72b62bcef0 - + https://dev.azure.com/dnceng/internal/_git/dotnet-winforms - ffd0879b7792b899ae8210242a58cdc8529c8e7f + e9390f876ee4750e80d988a7e037a5db046716df - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - b7c5b2dd5e9b61459c7ba2e58f306029ec791c0d + 8cb5046180a4017a2deebd673641844bd5e9d444 - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - b7c5b2dd5e9b61459c7ba2e58f306029ec791c0d + 8cb5046180a4017a2deebd673641844bd5e9d444 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - eba546b0f0d448e0176a2222548fd7a2fbf464c0 + d8ee7c837b53a52795d374c694ff2c72b62bcef0 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - eba546b0f0d448e0176a2222548fd7a2fbf464c0 + d8ee7c837b53a52795d374c694ff2c72b62bcef0 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - eba546b0f0d448e0176a2222548fd7a2fbf464c0 + d8ee7c837b53a52795d374c694ff2c72b62bcef0 - + https://dev.azure.com/dnceng/internal/_git/dotnet-winforms - ffd0879b7792b899ae8210242a58cdc8529c8e7f + e9390f876ee4750e80d988a7e037a5db046716df - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - b7c5b2dd5e9b61459c7ba2e58f306029ec791c0d + 8cb5046180a4017a2deebd673641844bd5e9d444 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime @@ -145,9 +145,9 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime 5535e31a712343a63f5d7d796cd874e563e5ac14 - + https://dev.azure.com/dnceng/internal/_git/dotnet-winforms - ffd0879b7792b899ae8210242a58cdc8529c8e7f + e9390f876ee4750e80d988a7e037a5db046716df diff --git a/eng/Versions.props b/eng/Versions.props index 6d8e7462e..020960a6e 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -25,9 +25,9 @@ 6.2.4 - 8.0.13-servicing.25066.9 - 8.0.13 - 8.0.13 + 8.0.14-servicing.25111.10 + 8.0.14 + 8.0.14 8.0.0 5.0.0 8.0.0 @@ -61,15 +61,15 @@ 8.0.0 8.0.0 8.0.0 - 8.0.13-servicing.25066.9 + 8.0.14-servicing.25111.10 4.10.0 - 8.0.13-servicing.25066.3 - 8.0.13-servicing.25066.3 - 8.0.13 + 8.0.14-servicing.25111.5 + 8.0.14-servicing.25111.5 + 8.0.14 - 8.0.13-servicing.25066.5 - 8.0.13-servicing.25066.5 + 8.0.14-servicing.25112.3 + 8.0.14-servicing.25112.3 From 44f74072802bd206ae92c80a5c0a2f1818fd4457 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Wed, 12 Feb 2025 22:02:08 +0000 Subject: [PATCH 178/222] [release/8.0] Update dependencies from dotnet/arcade (#4931) [release/8.0] Update dependencies from dotnet/arcade --- NuGet.config | 6 ++++++ eng/Version.Details.xml | 24 ++++++++++++------------ eng/Versions.props | 8 ++++---- eng/common/sdk-task.ps1 | 2 +- eng/common/tools.ps1 | 4 ++-- global.json | 6 +++--- 6 files changed, 28 insertions(+), 22 deletions(-) diff --git a/NuGet.config b/NuGet.config index ff93a8b67..994f841a2 100644 --- a/NuGet.config +++ b/NuGet.config @@ -10,9 +10,12 @@ + + + @@ -25,9 +28,12 @@ + + + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 915f83059..82c2ac4ab 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -151,29 +151,29 @@ - + https://github.com/dotnet/arcade - c255aae7f2b128fa20a4441f0e192c3c53561621 + a319ada170a54ee87c7a81e3309948e3d3ea7aca - + https://github.com/dotnet/arcade - c255aae7f2b128fa20a4441f0e192c3c53561621 + a319ada170a54ee87c7a81e3309948e3d3ea7aca - + https://github.com/dotnet/arcade - c255aae7f2b128fa20a4441f0e192c3c53561621 + a319ada170a54ee87c7a81e3309948e3d3ea7aca - + https://github.com/dotnet/arcade - c255aae7f2b128fa20a4441f0e192c3c53561621 + a319ada170a54ee87c7a81e3309948e3d3ea7aca - + https://github.com/dotnet/arcade - c255aae7f2b128fa20a4441f0e192c3c53561621 + a319ada170a54ee87c7a81e3309948e3d3ea7aca - + https://github.com/dotnet/arcade - c255aae7f2b128fa20a4441f0e192c3c53561621 + a319ada170a54ee87c7a81e3309948e3d3ea7aca diff --git a/eng/Versions.props b/eng/Versions.props index 88572e19e..771d17505 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -12,10 +12,10 @@ - 8.0.0-beta.25060.1 - 8.0.0-beta.25060.1 - 8.0.0-beta.25060.1 - 8.0.0-beta.25060.1 + 8.0.0-beta.25111.4 + 8.0.0-beta.25111.4 + 8.0.0-beta.25111.4 + 8.0.0-beta.25111.4 4.5.0 4.8.6 diff --git a/eng/common/sdk-task.ps1 b/eng/common/sdk-task.ps1 index 73828dd30..4f0546dce 100644 --- a/eng/common/sdk-task.ps1 +++ b/eng/common/sdk-task.ps1 @@ -64,7 +64,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.8.1-2" -MemberType NoteProperty + $GlobalJson.tools | Add-Member -Name "xcopy-msbuild" -Value "17.12.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 60352ede1..a00577ed1 100644 --- a/eng/common/tools.ps1 +++ b/eng/common/tools.ps1 @@ -384,8 +384,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/RoslynTools.MSBuild/versions/17.8.1-2 - $defaultXCopyMSBuildVersion = '17.8.1-2' + # https://dev.azure.com/dnceng/public/_artifacts/feed/dotnet-eng/NuGet/RoslynTools.MSBuild/versions/17.12.0 + $defaultXCopyMSBuildVersion = '17.12.0' if (!$vsRequirements) { if (Get-Member -InputObject $GlobalJson.tools -Name 'vs') { diff --git a/global.json b/global.json index 130e94994..eb6aabced 100644 --- a/global.json +++ b/global.json @@ -1,10 +1,10 @@ { "tools": { - "dotnet": "8.0.110" + "dotnet": "8.0.113" }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "8.0.0-beta.25060.1", - "Microsoft.DotNet.SharedFramework.Sdk": "8.0.0-beta.25060.1", + "Microsoft.DotNet.Arcade.Sdk": "8.0.0-beta.25111.4", + "Microsoft.DotNet.SharedFramework.Sdk": "8.0.0-beta.25111.4", "Microsoft.Build.NoTargets": "3.7.0", "Microsoft.Build.Traversal": "3.4.0" } From cd8497fd13e6f6984cebb000819064be49330e45 Mon Sep 17 00:00:00 2001 From: vseanreesermsft <78103370+vseanreesermsft@users.noreply.github.com> Date: Wed, 12 Feb 2025 14:50:42 -0800 Subject: [PATCH 179/222] Merging internal commits for release/8.0 (#4926) Merged PR 46824: [internal/release/8.0] Update dependencies from dnceng/internal/dotnet-wpf This pull request updates the following dependencies [marker]: <> (Begin:Coherency Updates) ## Coherency Updates The following updates ensure that dependencies with a *CoherentParentDependency* attribute were produced in a build used as input to the parent dependency's build. See [Dependency Description Format](https://github.com/dotnet/arcade/blob/master/Documentation/DependencyDescriptionFormat.md#dependency-description-overview) [DependencyUpdate]: <> (Begin) - **Coherency Updates**: - **Microsoft.Private.Winforms**: from 8.0.12-servicing.24603.6 to 8.0.13-servicing.25066.3 (parent: Microsoft.DotNet.Wpf.GitHub) - **Microsoft.Internal.Runtime.WindowsDesktop.Transport**: from 8.0.12-servicing.24603.5 to 8.0.13-servicing.25066.9 (parent: Microsoft.Private.Winforms) - **Microsoft.Private.Winforms**: from 8.0.12-servicing.24603.6 to 8.0.13-servicing.25066.3 (parent: Microsoft.DotNet.Wpf.GitHub) - **Microsoft.NETCore.App.Ref**: from 8.0.12 to 8.0.13 (parent: Microsoft.Private.Winforms) - **Microsoft.Private.Winforms**: from 8.0.12-servicing.24603.6 to 8.0.13-servicing.25066.3 (parent: Microsoft.DotNet.Wpf.GitHub) - **VS.Redist.Common.NetCore.SharedFramework.x64.8.0**: from 8.0.12-servicing.24603.5 to 8.0.13-servicing.25066.9 (parent: Microsoft.Private.Winforms) - **Microsoft.Private.Winforms**: from 8.0.12-servicing.24603.6 to 8.0.13-servicing.25066.3 (parent: Microsoft.DotNet.Wpf.GitHub) - **Microsoft.NETCore.App.Runtime.win-x64**: from 8.0.12 to 8.0.13 (parent: Microsoft.Private.Winforms) - **Microsoft.Dotnet.WinForms.ProjectTemplates**: from 8.0.12-servicing.24603.6 to 8.0.13-servicing.25066.3 (parent: Microsoft.DotNet.Wpf.GitHub) - **Microsoft.Private.Winforms**: from 8.0.12-servicing.24603.6 to 8.0.13-servicing.25066.3 (parent: Microsoft.DotNet.Wpf.GitHub) - **Microsoft.Private.Winforms**: from 8.0.12-servicing.24603.6 to 8.0.13-servicing.25066.3 (parent: Microsoft.DotNet.Wpf.GitHub) - **Microsoft.Private.Winforms**: from 8.0.12-servicing.24603.6 to 8.0.13-servicing.25066.3 (parent: Microsoft.DotNet.Wpf.GitHub) - **Microsoft.Private.Winforms**: from 8.0.12-servicing.24603.6 to 8.0.13-servicing.25066.3 (parent: Microsoft.DotNet.Wpf.GitHub) - **Microsoft.Private.Winforms**: from 8.0.12-servicing.24603.6 to 8.0.13-servicing.25066.3 (parent: Microsoft.DotNet.Wpf.GitHub) - **Microsoft.Private.Winforms**: from 8.0.12-servicing.24603.6 to 8.0.13-servicing.25066.3 (parent: Microsoft.DotNet.Wpf.GitHub) - **Microsoft.Private.Winforms**: from 8.0.12-servicing.24603.6 to 8.0.13-servicing.25066.3 (parent: Microsoft.DotNet.Wpf.GitHub) - **Microsoft.Private.Winforms**: from 8.0.12-servicing.24603.6 to 8.0.13-servicing.25066.3 (parent: Microsoft.DotNet.Wpf.GitHub) - **Microsoft.Private.Winforms**: from 8.0.12-servicing.24603.6 to 8.0.13-servicing.25066.3 (parent: Microsoft.DotNet.Wpf.GitHub) - **Microsoft.Private.Winforms**: from 8.0.12-servicing.24603.6 to 8.0.13-servicing.25066.3 (parent: Microsoft.DotNet.Wpf.GitHub)... Co-authored-by: Mirroring Co-authored-by: Tanya Solyanik Co-authored-by: Tanya Solyanik Co-authored-by: ProductConstructionServiceProd Co-authored-by: Matt Mitchell --- NuGet.config | 14 ++++---------- eng/Version.Details.xml | 40 ++++++++++++++++++++-------------------- eng/Versions.props | 18 +++++++++--------- 3 files changed, 33 insertions(+), 39 deletions(-) diff --git a/NuGet.config b/NuGet.config index 994f841a2..93b53d15c 100644 --- a/NuGet.config +++ b/NuGet.config @@ -9,13 +9,10 @@ - - + - - - + @@ -28,13 +25,10 @@ - - + - - - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 82c2ac4ab..9daf1d751 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,41 +1,41 @@ - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 89ef51c5d8f5239345127a1e282e11036e590c8b + eba546b0f0d448e0176a2222548fd7a2fbf464c0 - + https://dev.azure.com/dnceng/internal/_git/dotnet-winforms - 44b9411eeca123dd8b2c9d47afe46f9e537f1714 + ffd0879b7792b899ae8210242a58cdc8529c8e7f - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - 6a2a510ae56ff16665d95b96a0920e2fd45e1d2b + b7c5b2dd5e9b61459c7ba2e58f306029ec791c0d - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - 6a2a510ae56ff16665d95b96a0920e2fd45e1d2b + b7c5b2dd5e9b61459c7ba2e58f306029ec791c0d - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 89ef51c5d8f5239345127a1e282e11036e590c8b + eba546b0f0d448e0176a2222548fd7a2fbf464c0 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 89ef51c5d8f5239345127a1e282e11036e590c8b + eba546b0f0d448e0176a2222548fd7a2fbf464c0 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 89ef51c5d8f5239345127a1e282e11036e590c8b + eba546b0f0d448e0176a2222548fd7a2fbf464c0 - + https://dev.azure.com/dnceng/internal/_git/dotnet-winforms - 44b9411eeca123dd8b2c9d47afe46f9e537f1714 + ffd0879b7792b899ae8210242a58cdc8529c8e7f - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - 6a2a510ae56ff16665d95b96a0920e2fd45e1d2b + b7c5b2dd5e9b61459c7ba2e58f306029ec791c0d https://dev.azure.com/dnceng/internal/_git/dotnet-runtime @@ -145,9 +145,9 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime 5535e31a712343a63f5d7d796cd874e563e5ac14 - + https://dev.azure.com/dnceng/internal/_git/dotnet-winforms - 44b9411eeca123dd8b2c9d47afe46f9e537f1714 + ffd0879b7792b899ae8210242a58cdc8529c8e7f diff --git a/eng/Versions.props b/eng/Versions.props index 771d17505..e79f12331 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -25,9 +25,9 @@ 6.2.4 - 8.0.12-servicing.24603.5 - 8.0.12 - 8.0.12 + 8.0.13-servicing.25066.9 + 8.0.13 + 8.0.13 8.0.0 5.0.0 8.0.0 @@ -61,15 +61,15 @@ 8.0.0 8.0.0 8.0.0 - 8.0.12-servicing.24603.5 + 8.0.13-servicing.25066.9 4.10.0 - 8.0.12-servicing.24603.6 - 8.0.12-servicing.24603.6 - 8.0.12 + 8.0.13-servicing.25066.3 + 8.0.13-servicing.25066.3 + 8.0.13 - 8.0.12-servicing.24603.5 - 8.0.12-servicing.24603.5 + 8.0.13-servicing.25066.5 + 8.0.13-servicing.25066.5 From ca37d3dc364c5726cbd155821537b315b72f6d5e Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Thu, 13 Feb 2025 07:56:28 +0000 Subject: [PATCH 180/222] Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-wpf build 20250212.6 Microsoft.DotNet.Wpf.GitHub , Microsoft.DotNet.Wpf.ProjectTemplates , Microsoft.NET.Sdk.WindowsDesktop From Version 8.0.14-servicing.25112.3 -> To Version 8.0.14-servicing.25112.6 Dependency coherency updates Microsoft.Private.Winforms,Microsoft.Internal.Runtime.WindowsDesktop.Transport,Microsoft.Private.Winforms,Microsoft.NETCore.App.Ref,Microsoft.Private.Winforms,VS.Redist.Common.NetCore.SharedFramework.x64.8.0,Microsoft.Private.Winforms,Microsoft.NETCore.App.Runtime.win-x64,Microsoft.Dotnet.WinForms.ProjectTemplates,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,System.Drawing.Common From Version 8.0.14-servicing.25111.5 -> To Version 8.0.14-servicing.25112.7 (parent: Microsoft.DotNet.Wpf.GitHub --- NuGet.config | 8 ++++---- eng/Version.Details.xml | 34 +++++++++++++++++----------------- eng/Versions.props | 12 ++++++------ 3 files changed, 27 insertions(+), 27 deletions(-) diff --git a/NuGet.config b/NuGet.config index 2186c4098..540b0b220 100644 --- a/NuGet.config +++ b/NuGet.config @@ -9,10 +9,10 @@ - + - + @@ -25,10 +25,10 @@ - + - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 56324af25..5231832c8 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,41 +1,41 @@ - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - d8ee7c837b53a52795d374c694ff2c72b62bcef0 + 1584e493603cfc4e9b36b77d6d4afe97de6363f9 - + https://dev.azure.com/dnceng/internal/_git/dotnet-winforms - e9390f876ee4750e80d988a7e037a5db046716df + a3800350d181a6630756241ab2600f8d37a77163 - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - 8cb5046180a4017a2deebd673641844bd5e9d444 + bc7aac6b2148cc0fd0ce48cbc7932e21b4aa5b6a - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - 8cb5046180a4017a2deebd673641844bd5e9d444 + bc7aac6b2148cc0fd0ce48cbc7932e21b4aa5b6a https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - d8ee7c837b53a52795d374c694ff2c72b62bcef0 + 1584e493603cfc4e9b36b77d6d4afe97de6363f9 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - d8ee7c837b53a52795d374c694ff2c72b62bcef0 + 1584e493603cfc4e9b36b77d6d4afe97de6363f9 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - d8ee7c837b53a52795d374c694ff2c72b62bcef0 + 1584e493603cfc4e9b36b77d6d4afe97de6363f9 - + https://dev.azure.com/dnceng/internal/_git/dotnet-winforms - e9390f876ee4750e80d988a7e037a5db046716df + a3800350d181a6630756241ab2600f8d37a77163 - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - 8cb5046180a4017a2deebd673641844bd5e9d444 + bc7aac6b2148cc0fd0ce48cbc7932e21b4aa5b6a https://dev.azure.com/dnceng/internal/_git/dotnet-runtime @@ -147,7 +147,7 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-winforms - e9390f876ee4750e80d988a7e037a5db046716df + a3800350d181a6630756241ab2600f8d37a77163 diff --git a/eng/Versions.props b/eng/Versions.props index 020960a6e..e12ae204e 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -25,7 +25,7 @@ 6.2.4 - 8.0.14-servicing.25111.10 + 8.0.14-servicing.25111.18 8.0.14 8.0.14 8.0.0 @@ -61,15 +61,15 @@ 8.0.0 8.0.0 8.0.0 - 8.0.14-servicing.25111.10 + 8.0.14-servicing.25111.18 4.10.0 - 8.0.14-servicing.25111.5 - 8.0.14-servicing.25111.5 + 8.0.14-servicing.25112.7 + 8.0.14-servicing.25112.7 8.0.14 - 8.0.14-servicing.25112.3 - 8.0.14-servicing.25112.3 + 8.0.14-servicing.25112.6 + 8.0.14-servicing.25112.6 From 9e2c65df2ec566bd777fdcb459dfffba42ab0432 Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Thu, 13 Feb 2025 19:21:03 +0000 Subject: [PATCH 181/222] Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-wpf build 20250213.2 Microsoft.DotNet.Wpf.GitHub , Microsoft.DotNet.Wpf.ProjectTemplates , Microsoft.NET.Sdk.WindowsDesktop From Version 8.0.14-servicing.25112.6 -> To Version 8.0.14-servicing.25113.2 Dependency coherency updates Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Dotnet.WinForms.ProjectTemplates,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,System.Drawing.Common From Version 8.0.14-servicing.25112.7 -> To Version 8.0.14-servicing.25112.9 (parent: Microsoft.DotNet.Wpf.GitHub --- NuGet.config | 4 ++-- eng/Version.Details.xml | 22 +++++++++++----------- eng/Versions.props | 8 ++++---- 3 files changed, 17 insertions(+), 17 deletions(-) diff --git a/NuGet.config b/NuGet.config index 540b0b220..972e4b9ca 100644 --- a/NuGet.config +++ b/NuGet.config @@ -12,7 +12,7 @@ - + @@ -28,7 +28,7 @@ - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 5231832c8..7c6a7eeea 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -5,17 +5,17 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime 1584e493603cfc4e9b36b77d6d4afe97de6363f9 - + https://dev.azure.com/dnceng/internal/_git/dotnet-winforms - a3800350d181a6630756241ab2600f8d37a77163 + 4218aeb9b6f0ac5d0495185237a47d7bf44dad1f - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - bc7aac6b2148cc0fd0ce48cbc7932e21b4aa5b6a + af059f93ea0cd5b695d098162f0d9b1651adb6a3 - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - bc7aac6b2148cc0fd0ce48cbc7932e21b4aa5b6a + af059f93ea0cd5b695d098162f0d9b1651adb6a3 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime @@ -29,13 +29,13 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime 1584e493603cfc4e9b36b77d6d4afe97de6363f9 - + https://dev.azure.com/dnceng/internal/_git/dotnet-winforms - a3800350d181a6630756241ab2600f8d37a77163 + 4218aeb9b6f0ac5d0495185237a47d7bf44dad1f - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - bc7aac6b2148cc0fd0ce48cbc7932e21b4aa5b6a + af059f93ea0cd5b695d098162f0d9b1651adb6a3 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime @@ -147,7 +147,7 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-winforms - a3800350d181a6630756241ab2600f8d37a77163 + 4218aeb9b6f0ac5d0495185237a47d7bf44dad1f diff --git a/eng/Versions.props b/eng/Versions.props index e12ae204e..599d68402 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -65,11 +65,11 @@ 4.10.0 - 8.0.14-servicing.25112.7 - 8.0.14-servicing.25112.7 + 8.0.14-servicing.25112.9 + 8.0.14-servicing.25112.9 8.0.14 - 8.0.14-servicing.25112.6 - 8.0.14-servicing.25112.6 + 8.0.14-servicing.25113.2 + 8.0.14-servicing.25113.2 From 9abe16b3aa21321bc74cb965b99eb61708ffbf5f Mon Sep 17 00:00:00 2001 From: Sean Reeser Date: Thu, 6 Mar 2025 10:59:10 -0800 Subject: [PATCH 182/222] Update branding to 8.0.15 --- eng/Versions.props | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eng/Versions.props b/eng/Versions.props index e79f12331..449e68baa 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -2,7 +2,7 @@ 8 0 - 14 + 15 servicing From 0117c99abd2e729a18fa7781e00572476a29c662 Mon Sep 17 00:00:00 2001 From: ProductConstructionServiceProd Date: Tue, 11 Mar 2025 00:34:53 +0000 Subject: [PATCH 183/222] [internal/release/8.0] Update dependencies from dnceng/internal/dotnet-wpf --- NuGet.config | 8 ++++++++ eng/Version.Details.xml | 12 ++++++------ eng/Versions.props | 4 ++-- 3 files changed, 16 insertions(+), 8 deletions(-) diff --git a/NuGet.config b/NuGet.config index 972e4b9ca..6ee5b3635 100644 --- a/NuGet.config +++ b/NuGet.config @@ -10,9 +10,13 @@ + + + + @@ -25,9 +29,13 @@ + + + + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 7c6a7eeea..5010518a2 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -9,13 +9,13 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-winforms 4218aeb9b6f0ac5d0495185237a47d7bf44dad1f - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - af059f93ea0cd5b695d098162f0d9b1651adb6a3 + 69a13d88bc3db5921f42158227da907c834fb697 - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - af059f93ea0cd5b695d098162f0d9b1651adb6a3 + 69a13d88bc3db5921f42158227da907c834fb697 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime @@ -33,9 +33,9 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-winforms 4218aeb9b6f0ac5d0495185237a47d7bf44dad1f - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - af059f93ea0cd5b695d098162f0d9b1651adb6a3 + 69a13d88bc3db5921f42158227da907c834fb697 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime diff --git a/eng/Versions.props b/eng/Versions.props index 16a0dd13c..e9276bb4a 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -69,7 +69,7 @@ 8.0.14-servicing.25112.9 8.0.14 - 8.0.14-servicing.25113.2 - 8.0.14-servicing.25113.2 + 8.0.15-servicing.25156.10 + 8.0.15-servicing.25156.10 From e672bbeeb9fd3d6e1944de64b5c674fa1f91a161 Mon Sep 17 00:00:00 2001 From: "Sean Reeser (CSI Interfusion Inc)" Date: Wed, 12 Mar 2025 19:15:43 +0000 Subject: [PATCH 184/222] Updated Versions.props - BuildTasks/VersionTools 8.0.0-beta.25111.4 --- eng/Versions.props | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/eng/Versions.props b/eng/Versions.props index e9276bb4a..a91b7f118 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -12,10 +12,10 @@ - 8.0.0-beta.25060.1 - 8.0.0-beta.25060.1 - 8.0.0-beta.25060.1 - 8.0.0-beta.25060.1 + 8.0.0-beta.25111.4 + 8.0.0-beta.25111.4 + 8.0.0-beta.25111.4 + 8.0.0-beta.25111.4 4.5.0 4.8.6 From 7b07eb231c657d434cb16564f0762a2a97b8d5e8 Mon Sep 17 00:00:00 2001 From: "Sean Reeser (CSI Interfusion Inc)" Date: Wed, 12 Mar 2025 19:18:05 +0000 Subject: [PATCH 185/222] Updated Version.Details.xml arcade deps, 8.0.0-beta.25111.4 --- eng/Version.Details.xml | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 5010518a2..21988fe6f 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -151,29 +151,29 @@ - + https://github.com/dotnet/arcade - c255aae7f2b128fa20a4441f0e192c3c53561621 + a319ada170a54ee87c7a81e3309948e3d3ea7aca - + https://github.com/dotnet/arcade - c255aae7f2b128fa20a4441f0e192c3c53561621 + a319ada170a54ee87c7a81e3309948e3d3ea7aca - + https://github.com/dotnet/arcade - c255aae7f2b128fa20a4441f0e192c3c53561621 + a319ada170a54ee87c7a81e3309948e3d3ea7aca - + https://github.com/dotnet/arcade - c255aae7f2b128fa20a4441f0e192c3c53561621 + a319ada170a54ee87c7a81e3309948e3d3ea7aca - + https://github.com/dotnet/arcade - c255aae7f2b128fa20a4441f0e192c3c53561621 + a319ada170a54ee87c7a81e3309948e3d3ea7aca - + https://github.com/dotnet/arcade - c255aae7f2b128fa20a4441f0e192c3c53561621 + a319ada170a54ee87c7a81e3309948e3d3ea7aca From dbd43c6ac6d24767f8103eba6f3e723d79db7111 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Wed, 12 Mar 2025 22:35:21 +0000 Subject: [PATCH 186/222] [release/8.0] Update dependencies from dotnet/arcade (#4970) [release/8.0] Update dependencies from dotnet/arcade --- NuGet.config | 8 +++++++ eng/Version.Details.xml | 24 +++++++++---------- eng/Versions.props | 8 +++---- eng/common/cross/toolchain.cmake | 4 ++++ .../steps/send-to-helix.yml | 7 +++--- eng/common/templates/steps/send-to-helix.yml | 7 +++--- global.json | 4 ++-- 7 files changed, 38 insertions(+), 24 deletions(-) diff --git a/NuGet.config b/NuGet.config index 972e4b9ca..6ee5b3635 100644 --- a/NuGet.config +++ b/NuGet.config @@ -10,9 +10,13 @@ + + + + @@ -25,9 +29,13 @@ + + + + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 848966323..9cd4e8dda 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -151,29 +151,29 @@ - + https://github.com/dotnet/arcade - a319ada170a54ee87c7a81e3309948e3d3ea7aca + 4ff4ce248e95ae74b0040de6a6c5939aa63120dc - + https://github.com/dotnet/arcade - a319ada170a54ee87c7a81e3309948e3d3ea7aca + 4ff4ce248e95ae74b0040de6a6c5939aa63120dc - + https://github.com/dotnet/arcade - a319ada170a54ee87c7a81e3309948e3d3ea7aca + 4ff4ce248e95ae74b0040de6a6c5939aa63120dc - + https://github.com/dotnet/arcade - a319ada170a54ee87c7a81e3309948e3d3ea7aca + 4ff4ce248e95ae74b0040de6a6c5939aa63120dc - + https://github.com/dotnet/arcade - a319ada170a54ee87c7a81e3309948e3d3ea7aca + 4ff4ce248e95ae74b0040de6a6c5939aa63120dc - + https://github.com/dotnet/arcade - a319ada170a54ee87c7a81e3309948e3d3ea7aca + 4ff4ce248e95ae74b0040de6a6c5939aa63120dc diff --git a/eng/Versions.props b/eng/Versions.props index 3367756da..4b5f5e2e2 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -12,10 +12,10 @@ - 8.0.0-beta.25111.4 - 8.0.0-beta.25111.4 - 8.0.0-beta.25111.4 - 8.0.0-beta.25111.4 + 8.0.0-beta.25120.1 + 8.0.0-beta.25120.1 + 8.0.0-beta.25120.1 + 8.0.0-beta.25120.1 4.5.0 4.8.6 diff --git a/eng/common/cross/toolchain.cmake b/eng/common/cross/toolchain.cmake index dafabdcae..f93dc440d 100644 --- a/eng/common/cross/toolchain.cmake +++ b/eng/common/cross/toolchain.cmake @@ -280,6 +280,8 @@ elseif(TARGET_ARCH_NAME MATCHES "^(arm64|x64)$") add_toolchain_linker_flag("-Wl,--rpath-link=${CROSS_ROOTFS}/usr/lib64") add_toolchain_linker_flag("-Wl,--rpath-link=${TIZEN_TOOLCHAIN_PATH}") endif() +elseif(TARGET_ARCH_NAME STREQUAL "s390x") + add_toolchain_linker_flag("--target=${TOOLCHAIN}") elseif(TARGET_ARCH_NAME STREQUAL "x86") if(EXISTS ${CROSS_ROOTFS}/usr/lib/gcc/i586-alpine-linux-musl) add_toolchain_linker_flag("--target=${TOOLCHAIN}") @@ -327,6 +329,8 @@ if(TARGET_ARCH_NAME MATCHES "^(arm|armel)$") if(TARGET_ARCH_NAME STREQUAL "armel") add_compile_options(-mfloat-abi=softfp) endif() +elseif(TARGET_ARCH_NAME STREQUAL "s390x") + add_compile_options("--target=${TOOLCHAIN}") elseif(TARGET_ARCH_NAME STREQUAL "x86") if(EXISTS ${CROSS_ROOTFS}/usr/lib/gcc/i586-alpine-linux-musl) add_compile_options(--target=${TOOLCHAIN}) diff --git a/eng/common/templates-official/steps/send-to-helix.yml b/eng/common/templates-official/steps/send-to-helix.yml index 3eb7e2d5f..22f250130 100644 --- a/eng/common/templates-official/steps/send-to-helix.yml +++ b/eng/common/templates-official/steps/send-to-helix.yml @@ -8,6 +8,7 @@ parameters: HelixConfiguration: '' # optional -- additional property attached to a job HelixPreCommands: '' # optional -- commands to run before Helix work item execution HelixPostCommands: '' # optional -- commands to run after Helix work item execution + HelixProjectArguments: '' # optional -- arguments passed to the build command for helixpublish.proj WorkItemDirectory: '' # optional -- a payload directory to zip up and send to Helix; requires WorkItemCommand; incompatible with XUnitProjects WorkItemCommand: '' # optional -- a command to execute on the payload; requires WorkItemDirectory; incompatible with XUnitProjects WorkItemTimeout: '' # optional -- a timeout in TimeSpan.Parse-ready value (e.g. 00:02:00) for the work item command; requires WorkItemDirectory; incompatible with XUnitProjects @@ -24,12 +25,12 @@ parameters: IsExternal: false # [DEPRECATED] -- doesn't do anything, jobs are external if HelixAccessToken is empty and Creator is set HelixBaseUri: 'https://helix.dot.net/' # optional -- sets the Helix API base URI (allows targeting https://helix.int-dot.net ) Creator: '' # optional -- if the build is external, use this to specify who is sending the job - DisplayNamePrefix: 'Run Tests' # optional -- rename the beginning of the displayName of the steps in AzDO + DisplayNamePrefix: 'Run Tests' # optional -- rename the beginning of the displayName of the steps in AzDO condition: succeeded() # optional -- condition for step to execute; defaults to succeeded() continueOnError: false # optional -- determines whether to continue the build if the step errors; defaults to false steps: - - powershell: 'powershell "$env:BUILD_SOURCESDIRECTORY\eng\common\msbuild.ps1 $env:BUILD_SOURCESDIRECTORY\eng\common\helixpublish.proj /restore /p:TreatWarningsAsErrors=false /t:Test /bl:$env:BUILD_SOURCESDIRECTORY\artifacts\log\$env:BuildConfig\SendToHelix.binlog"' + - powershell: 'powershell "$env:BUILD_SOURCESDIRECTORY\eng\common\msbuild.ps1 $env:BUILD_SOURCESDIRECTORY\eng\common\helixpublish.proj ${{ parameters.HelixProjectArguments }} /restore /p:TreatWarningsAsErrors=false /t:Test /bl:$env:BUILD_SOURCESDIRECTORY\artifacts\log\$env:BuildConfig\SendToHelix.binlog"' displayName: ${{ parameters.DisplayNamePrefix }} (Windows) env: BuildConfig: $(_BuildConfig) @@ -59,7 +60,7 @@ steps: SYSTEM_ACCESSTOKEN: $(System.AccessToken) condition: and(${{ parameters.condition }}, eq(variables['Agent.Os'], 'Windows_NT')) continueOnError: ${{ parameters.continueOnError }} - - script: $BUILD_SOURCESDIRECTORY/eng/common/msbuild.sh $BUILD_SOURCESDIRECTORY/eng/common/helixpublish.proj /restore /p:TreatWarningsAsErrors=false /t:Test /bl:$BUILD_SOURCESDIRECTORY/artifacts/log/$BuildConfig/SendToHelix.binlog + - script: $BUILD_SOURCESDIRECTORY/eng/common/msbuild.sh $BUILD_SOURCESDIRECTORY/eng/common/helixpublish.proj ${{ parameters.HelixProjectArguments }} /restore /p:TreatWarningsAsErrors=false /t:Test /bl:$BUILD_SOURCESDIRECTORY/artifacts/log/$BuildConfig/SendToHelix.binlog displayName: ${{ parameters.DisplayNamePrefix }} (Unix) env: BuildConfig: $(_BuildConfig) diff --git a/eng/common/templates/steps/send-to-helix.yml b/eng/common/templates/steps/send-to-helix.yml index 3eb7e2d5f..22f250130 100644 --- a/eng/common/templates/steps/send-to-helix.yml +++ b/eng/common/templates/steps/send-to-helix.yml @@ -8,6 +8,7 @@ parameters: HelixConfiguration: '' # optional -- additional property attached to a job HelixPreCommands: '' # optional -- commands to run before Helix work item execution HelixPostCommands: '' # optional -- commands to run after Helix work item execution + HelixProjectArguments: '' # optional -- arguments passed to the build command for helixpublish.proj WorkItemDirectory: '' # optional -- a payload directory to zip up and send to Helix; requires WorkItemCommand; incompatible with XUnitProjects WorkItemCommand: '' # optional -- a command to execute on the payload; requires WorkItemDirectory; incompatible with XUnitProjects WorkItemTimeout: '' # optional -- a timeout in TimeSpan.Parse-ready value (e.g. 00:02:00) for the work item command; requires WorkItemDirectory; incompatible with XUnitProjects @@ -24,12 +25,12 @@ parameters: IsExternal: false # [DEPRECATED] -- doesn't do anything, jobs are external if HelixAccessToken is empty and Creator is set HelixBaseUri: 'https://helix.dot.net/' # optional -- sets the Helix API base URI (allows targeting https://helix.int-dot.net ) Creator: '' # optional -- if the build is external, use this to specify who is sending the job - DisplayNamePrefix: 'Run Tests' # optional -- rename the beginning of the displayName of the steps in AzDO + DisplayNamePrefix: 'Run Tests' # optional -- rename the beginning of the displayName of the steps in AzDO condition: succeeded() # optional -- condition for step to execute; defaults to succeeded() continueOnError: false # optional -- determines whether to continue the build if the step errors; defaults to false steps: - - powershell: 'powershell "$env:BUILD_SOURCESDIRECTORY\eng\common\msbuild.ps1 $env:BUILD_SOURCESDIRECTORY\eng\common\helixpublish.proj /restore /p:TreatWarningsAsErrors=false /t:Test /bl:$env:BUILD_SOURCESDIRECTORY\artifacts\log\$env:BuildConfig\SendToHelix.binlog"' + - powershell: 'powershell "$env:BUILD_SOURCESDIRECTORY\eng\common\msbuild.ps1 $env:BUILD_SOURCESDIRECTORY\eng\common\helixpublish.proj ${{ parameters.HelixProjectArguments }} /restore /p:TreatWarningsAsErrors=false /t:Test /bl:$env:BUILD_SOURCESDIRECTORY\artifacts\log\$env:BuildConfig\SendToHelix.binlog"' displayName: ${{ parameters.DisplayNamePrefix }} (Windows) env: BuildConfig: $(_BuildConfig) @@ -59,7 +60,7 @@ steps: SYSTEM_ACCESSTOKEN: $(System.AccessToken) condition: and(${{ parameters.condition }}, eq(variables['Agent.Os'], 'Windows_NT')) continueOnError: ${{ parameters.continueOnError }} - - script: $BUILD_SOURCESDIRECTORY/eng/common/msbuild.sh $BUILD_SOURCESDIRECTORY/eng/common/helixpublish.proj /restore /p:TreatWarningsAsErrors=false /t:Test /bl:$BUILD_SOURCESDIRECTORY/artifacts/log/$BuildConfig/SendToHelix.binlog + - script: $BUILD_SOURCESDIRECTORY/eng/common/msbuild.sh $BUILD_SOURCESDIRECTORY/eng/common/helixpublish.proj ${{ parameters.HelixProjectArguments }} /restore /p:TreatWarningsAsErrors=false /t:Test /bl:$BUILD_SOURCESDIRECTORY/artifacts/log/$BuildConfig/SendToHelix.binlog displayName: ${{ parameters.DisplayNamePrefix }} (Unix) env: BuildConfig: $(_BuildConfig) diff --git a/global.json b/global.json index eb6aabced..e19ad6426 100644 --- a/global.json +++ b/global.json @@ -3,8 +3,8 @@ "dotnet": "8.0.113" }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "8.0.0-beta.25111.4", - "Microsoft.DotNet.SharedFramework.Sdk": "8.0.0-beta.25111.4", + "Microsoft.DotNet.Arcade.Sdk": "8.0.0-beta.25120.1", + "Microsoft.DotNet.SharedFramework.Sdk": "8.0.0-beta.25120.1", "Microsoft.Build.NoTargets": "3.7.0", "Microsoft.Build.Traversal": "3.4.0" } From 00ec1ea46c1779071c120196f57048a23d21a285 Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Thu, 13 Mar 2025 18:59:27 +0000 Subject: [PATCH 187/222] Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-wpf build 20250313.3 Microsoft.DotNet.Wpf.GitHub , Microsoft.DotNet.Wpf.ProjectTemplates , Microsoft.NET.Sdk.WindowsDesktop From Version 8.0.15-servicing.25156.10 -> To Version 8.0.15-servicing.25163.3 Dependency coherency updates Microsoft.Private.Winforms,Microsoft.Internal.Runtime.WindowsDesktop.Transport,Microsoft.Private.Winforms,Microsoft.NETCore.App.Ref,Microsoft.Private.Winforms,VS.Redist.Common.NetCore.SharedFramework.x64.8.0,Microsoft.Private.Winforms,Microsoft.NETCore.App.Runtime.win-x64,Microsoft.Dotnet.WinForms.ProjectTemplates,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,System.Diagnostics.EventLog,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,System.DirectoryServices.Protocols,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,System.Drawing.Common From Version 8.0.14-servicing.25112.9 -> To Version 8.0.15-servicing.25163.3 (parent: Microsoft.DotNet.Wpf.GitHub --- NuGet.config | 16 ++++---------- eng/Version.Details.xml | 48 ++++++++++++++++++++--------------------- eng/Versions.props | 22 +++++++++---------- 3 files changed, 39 insertions(+), 47 deletions(-) diff --git a/NuGet.config b/NuGet.config index 6ee5b3635..4768397fe 100644 --- a/NuGet.config +++ b/NuGet.config @@ -9,14 +9,10 @@ - - - + - - - + @@ -29,14 +25,10 @@ - - - + - - - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 5330a426d..ae2aff3ad 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,41 +1,41 @@ - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 1584e493603cfc4e9b36b77d6d4afe97de6363f9 + 6eee28c27213784c1f8a112df1c90113585c4111 - + https://dev.azure.com/dnceng/internal/_git/dotnet-winforms - 4218aeb9b6f0ac5d0495185237a47d7bf44dad1f + 3885607867cff373aeffc987009d4071d37f0754 - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - 69a13d88bc3db5921f42158227da907c834fb697 + b96de9c3900a80c97119788a4bde7c34dd5ebac0 - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - 69a13d88bc3db5921f42158227da907c834fb697 + b96de9c3900a80c97119788a4bde7c34dd5ebac0 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 1584e493603cfc4e9b36b77d6d4afe97de6363f9 + 6eee28c27213784c1f8a112df1c90113585c4111 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 1584e493603cfc4e9b36b77d6d4afe97de6363f9 + 6eee28c27213784c1f8a112df1c90113585c4111 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 1584e493603cfc4e9b36b77d6d4afe97de6363f9 + 6eee28c27213784c1f8a112df1c90113585c4111 - + https://dev.azure.com/dnceng/internal/_git/dotnet-winforms - 4218aeb9b6f0ac5d0495185237a47d7bf44dad1f + 3885607867cff373aeffc987009d4071d37f0754 - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - 69a13d88bc3db5921f42158227da907c834fb697 + b96de9c3900a80c97119788a4bde7c34dd5ebac0 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime @@ -65,9 +65,9 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime 81cabf2857a01351e5ab578947c7403a5b128ad1 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 81cabf2857a01351e5ab578947c7403a5b128ad1 + 6eee28c27213784c1f8a112df1c90113585c4111 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime @@ -77,9 +77,9 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime 81cabf2857a01351e5ab578947c7403a5b128ad1 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 5535e31a712343a63f5d7d796cd874e563e5ac14 + 6eee28c27213784c1f8a112df1c90113585c4111 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime @@ -145,9 +145,9 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime 5535e31a712343a63f5d7d796cd874e563e5ac14 - + https://dev.azure.com/dnceng/internal/_git/dotnet-winforms - 4218aeb9b6f0ac5d0495185237a47d7bf44dad1f + 3885607867cff373aeffc987009d4071d37f0754 diff --git a/eng/Versions.props b/eng/Versions.props index 1f74e08f1..bd98797d1 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -25,9 +25,9 @@ 6.2.4 - 8.0.14-servicing.25111.18 - 8.0.14 - 8.0.14 + 8.0.15-servicing.25162.16 + 8.0.15 + 8.0.15 8.0.0 5.0.0 8.0.0 @@ -37,10 +37,10 @@ 8.0.1 8.0.1 8.0.1 - 8.0.1 + 8.0.2 8.0.1 8.0.1 - 8.0.0 + 8.0.1 8.0.0 5.0.0 8.0.1 @@ -61,15 +61,15 @@ 8.0.0 8.0.0 8.0.0 - 8.0.14-servicing.25111.18 + 8.0.15-servicing.25162.16 4.10.0 - 8.0.14-servicing.25112.9 - 8.0.14-servicing.25112.9 - 8.0.14 + 8.0.15-servicing.25163.3 + 8.0.15-servicing.25163.3 + 8.0.15 - 8.0.15-servicing.25156.10 - 8.0.15-servicing.25156.10 + 8.0.15-servicing.25163.3 + 8.0.15-servicing.25163.3 From 97a60dcbf0cf41114213a5f576f9f634c75fd64a Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Sun, 16 Mar 2025 00:25:37 +0000 Subject: [PATCH 188/222] Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-wpf build 20250315.2 Microsoft.DotNet.Wpf.GitHub , Microsoft.DotNet.Wpf.ProjectTemplates , Microsoft.NET.Sdk.WindowsDesktop From Version 8.0.15-servicing.25163.3 -> To Version 8.0.15-servicing.25165.2 Dependency coherency updates Microsoft.Private.Winforms,Microsoft.Internal.Runtime.WindowsDesktop.Transport,Microsoft.Private.Winforms,Microsoft.NETCore.App.Ref,Microsoft.Private.Winforms,VS.Redist.Common.NetCore.SharedFramework.x64.8.0,Microsoft.Private.Winforms,Microsoft.NETCore.App.Runtime.win-x64,Microsoft.Dotnet.WinForms.ProjectTemplates,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,System.Diagnostics.EventLog,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,System.DirectoryServices.Protocols,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,System.Drawing.Common From Version 8.0.15-servicing.25163.3 -> To Version 8.0.15-servicing.25165.1 (parent: Microsoft.DotNet.Wpf.GitHub --- NuGet.config | 8 ++++---- eng/Version.Details.xml | 38 +++++++++++++++++++------------------- eng/Versions.props | 12 ++++++------ 3 files changed, 29 insertions(+), 29 deletions(-) diff --git a/NuGet.config b/NuGet.config index 4768397fe..c4e5f529d 100644 --- a/NuGet.config +++ b/NuGet.config @@ -9,10 +9,10 @@ - + - + @@ -25,10 +25,10 @@ - + - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index ae2aff3ad..e1d5de279 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,41 +1,41 @@ - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 6eee28c27213784c1f8a112df1c90113585c4111 + 50c4cb9fc31c47f03eac865d7bc518af173b74b7 - + https://dev.azure.com/dnceng/internal/_git/dotnet-winforms - 3885607867cff373aeffc987009d4071d37f0754 + 2c14c37b0340b3745b630670a1944d260bf3da57 - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - b96de9c3900a80c97119788a4bde7c34dd5ebac0 + 9d1a7bbd03007c329391026b1abf1ca404b3b90d - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - b96de9c3900a80c97119788a4bde7c34dd5ebac0 + 9d1a7bbd03007c329391026b1abf1ca404b3b90d https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 6eee28c27213784c1f8a112df1c90113585c4111 + 50c4cb9fc31c47f03eac865d7bc518af173b74b7 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 6eee28c27213784c1f8a112df1c90113585c4111 + 50c4cb9fc31c47f03eac865d7bc518af173b74b7 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 6eee28c27213784c1f8a112df1c90113585c4111 + 50c4cb9fc31c47f03eac865d7bc518af173b74b7 - + https://dev.azure.com/dnceng/internal/_git/dotnet-winforms - 3885607867cff373aeffc987009d4071d37f0754 + 2c14c37b0340b3745b630670a1944d260bf3da57 - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - b96de9c3900a80c97119788a4bde7c34dd5ebac0 + 9d1a7bbd03007c329391026b1abf1ca404b3b90d https://dev.azure.com/dnceng/internal/_git/dotnet-runtime @@ -67,7 +67,7 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 6eee28c27213784c1f8a112df1c90113585c4111 + 50c4cb9fc31c47f03eac865d7bc518af173b74b7 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime @@ -79,7 +79,7 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 6eee28c27213784c1f8a112df1c90113585c4111 + 50c4cb9fc31c47f03eac865d7bc518af173b74b7 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime @@ -147,7 +147,7 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-winforms - 3885607867cff373aeffc987009d4071d37f0754 + 2c14c37b0340b3745b630670a1944d260bf3da57 diff --git a/eng/Versions.props b/eng/Versions.props index bd98797d1..d6c8ed65f 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -25,7 +25,7 @@ 6.2.4 - 8.0.15-servicing.25162.16 + 8.0.15-servicing.25164.13 8.0.15 8.0.15 8.0.0 @@ -61,15 +61,15 @@ 8.0.0 8.0.0 8.0.0 - 8.0.15-servicing.25162.16 + 8.0.15-servicing.25164.13 4.10.0 - 8.0.15-servicing.25163.3 - 8.0.15-servicing.25163.3 + 8.0.15-servicing.25165.1 + 8.0.15-servicing.25165.1 8.0.15 - 8.0.15-servicing.25163.3 - 8.0.15-servicing.25163.3 + 8.0.15-servicing.25165.2 + 8.0.15-servicing.25165.2 From 0de1245a59cb8f6e74a3577fdfc515b34e6ac01e Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Mon, 17 Mar 2025 17:01:49 +0000 Subject: [PATCH 189/222] Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-wpf build 20250317.5 Microsoft.DotNet.Wpf.GitHub , Microsoft.DotNet.Wpf.ProjectTemplates , Microsoft.NET.Sdk.WindowsDesktop From Version 8.0.15-servicing.25165.2 -> To Version 8.0.15-servicing.25167.5 --- eng/Version.Details.xml | 12 ++++++------ eng/Versions.props | 4 ++-- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index e1d5de279..1da768166 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -9,13 +9,13 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-winforms 2c14c37b0340b3745b630670a1944d260bf3da57 - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - 9d1a7bbd03007c329391026b1abf1ca404b3b90d + b929fc7b324b21fe74f2d1d4fe52b534046152b0 - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - 9d1a7bbd03007c329391026b1abf1ca404b3b90d + b929fc7b324b21fe74f2d1d4fe52b534046152b0 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime @@ -33,9 +33,9 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-winforms 2c14c37b0340b3745b630670a1944d260bf3da57 - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - 9d1a7bbd03007c329391026b1abf1ca404b3b90d + b929fc7b324b21fe74f2d1d4fe52b534046152b0 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime diff --git a/eng/Versions.props b/eng/Versions.props index d6c8ed65f..db00b763d 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -69,7 +69,7 @@ 8.0.15-servicing.25165.1 8.0.15 - 8.0.15-servicing.25165.2 - 8.0.15-servicing.25165.2 + 8.0.15-servicing.25167.5 + 8.0.15-servicing.25167.5 From f41589d20c5a3034e31d7387b770760be2f3c3da Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Mon, 17 Mar 2025 21:03:18 +0000 Subject: [PATCH 190/222] Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-wpf build 20250317.9 Microsoft.DotNet.Wpf.GitHub , Microsoft.DotNet.Wpf.ProjectTemplates , Microsoft.NET.Sdk.WindowsDesktop From Version 8.0.15-servicing.25167.5 -> To Version 8.0.15-servicing.25167.9 --- eng/Version.Details.xml | 12 ++++++------ eng/Versions.props | 4 ++-- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 1da768166..3cd5d6137 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -9,13 +9,13 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-winforms 2c14c37b0340b3745b630670a1944d260bf3da57 - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - b929fc7b324b21fe74f2d1d4fe52b534046152b0 + 4d5e32859f7dfaca9102a95d111a49d2aa2dbd8c - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - b929fc7b324b21fe74f2d1d4fe52b534046152b0 + 4d5e32859f7dfaca9102a95d111a49d2aa2dbd8c https://dev.azure.com/dnceng/internal/_git/dotnet-runtime @@ -33,9 +33,9 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-winforms 2c14c37b0340b3745b630670a1944d260bf3da57 - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - b929fc7b324b21fe74f2d1d4fe52b534046152b0 + 4d5e32859f7dfaca9102a95d111a49d2aa2dbd8c https://dev.azure.com/dnceng/internal/_git/dotnet-runtime diff --git a/eng/Versions.props b/eng/Versions.props index db00b763d..a9bcd6edf 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -69,7 +69,7 @@ 8.0.15-servicing.25165.1 8.0.15 - 8.0.15-servicing.25167.5 - 8.0.15-servicing.25167.5 + 8.0.15-servicing.25167.9 + 8.0.15-servicing.25167.9 From 471115fd2a6e662eecf9e317b48b27a504ebc772 Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Thu, 20 Mar 2025 09:37:03 +0000 Subject: [PATCH 191/222] Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-wpf build 20250320.3 Microsoft.DotNet.Wpf.GitHub , Microsoft.DotNet.Wpf.ProjectTemplates , Microsoft.NET.Sdk.WindowsDesktop From Version 8.0.15-servicing.25167.9 -> To Version 8.0.15-servicing.25170.3 --- NuGet.config | 4 ++++ eng/Version.Details.xml | 12 ++++++------ eng/Versions.props | 4 ++-- 3 files changed, 12 insertions(+), 8 deletions(-) diff --git a/NuGet.config b/NuGet.config index c4e5f529d..be5450ee8 100644 --- a/NuGet.config +++ b/NuGet.config @@ -10,9 +10,11 @@ + + @@ -25,9 +27,11 @@ + + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 3cd5d6137..978d4d82f 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -9,13 +9,13 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-winforms 2c14c37b0340b3745b630670a1944d260bf3da57 - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - 4d5e32859f7dfaca9102a95d111a49d2aa2dbd8c + 51bef31654263831ee74b6c47b7bda8ddb50cd86 - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - 4d5e32859f7dfaca9102a95d111a49d2aa2dbd8c + 51bef31654263831ee74b6c47b7bda8ddb50cd86 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime @@ -33,9 +33,9 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-winforms 2c14c37b0340b3745b630670a1944d260bf3da57 - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - 4d5e32859f7dfaca9102a95d111a49d2aa2dbd8c + 51bef31654263831ee74b6c47b7bda8ddb50cd86 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime diff --git a/eng/Versions.props b/eng/Versions.props index a9bcd6edf..ff5033977 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -69,7 +69,7 @@ 8.0.15-servicing.25165.1 8.0.15 - 8.0.15-servicing.25167.9 - 8.0.15-servicing.25167.9 + 8.0.15-servicing.25170.3 + 8.0.15-servicing.25170.3 From e4d1628b0359bd6c7a19865222bbee0e11416679 Mon Sep 17 00:00:00 2001 From: Sean Reeser Date: Wed, 2 Apr 2025 10:43:52 -0700 Subject: [PATCH 192/222] Update branding to 8.0.16 --- eng/Versions.props | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eng/Versions.props b/eng/Versions.props index 4b5f5e2e2..0bccca94a 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -2,7 +2,7 @@ 8 0 - 15 + 16 servicing From ffefbf3d2e69423e9d22e04e2ec8b11401518080 Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Thu, 3 Apr 2025 05:10:19 +0000 Subject: [PATCH 193/222] Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-wpf build 20250402.8 Microsoft.DotNet.Wpf.GitHub , Microsoft.DotNet.Wpf.ProjectTemplates , Microsoft.NET.Sdk.WindowsDesktop From Version 8.0.15-servicing.25170.3 -> To Version 8.0.16-servicing.25202.8 --- NuGet.config | 4 ++++ eng/Version.Details.xml | 12 ++++++------ eng/Versions.props | 4 ++-- 3 files changed, 12 insertions(+), 8 deletions(-) diff --git a/NuGet.config b/NuGet.config index be5450ee8..f80cec900 100644 --- a/NuGet.config +++ b/NuGet.config @@ -10,10 +10,12 @@ + + @@ -28,10 +30,12 @@ + + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 978d4d82f..f431cbfc1 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -9,13 +9,13 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-winforms 2c14c37b0340b3745b630670a1944d260bf3da57 - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - 51bef31654263831ee74b6c47b7bda8ddb50cd86 + e5d0372872cca90ca3a6fec53bb4c50dbc6ac6d0 - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - 51bef31654263831ee74b6c47b7bda8ddb50cd86 + e5d0372872cca90ca3a6fec53bb4c50dbc6ac6d0 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime @@ -33,9 +33,9 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-winforms 2c14c37b0340b3745b630670a1944d260bf3da57 - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - 51bef31654263831ee74b6c47b7bda8ddb50cd86 + e5d0372872cca90ca3a6fec53bb4c50dbc6ac6d0 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime diff --git a/eng/Versions.props b/eng/Versions.props index 631cfefbb..71e6b29c5 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -69,7 +69,7 @@ 8.0.15-servicing.25165.1 8.0.15 - 8.0.15-servicing.25170.3 - 8.0.15-servicing.25170.3 + 8.0.16-servicing.25202.8 + 8.0.16-servicing.25202.8 From cdec9c82c76d7458435c8b3ee20bf9310185e082 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Wed, 9 Apr 2025 14:33:09 +0000 Subject: [PATCH 194/222] [release/8.0] Update dependencies from dotnet/arcade (#5029) [release/8.0] Update dependencies from dotnet/arcade --- NuGet.config | 12 ---------- eng/Version.Details.xml | 24 +++++++++---------- eng/Versions.props | 8 +++---- eng/common/generate-sbom-prep.ps1 | 20 +++++++++++----- eng/common/generate-sbom-prep.sh | 17 ++++++++----- eng/common/templates-official/job/job.yml | 3 ++- .../steps/generate-sbom.yml | 2 +- eng/common/tools.ps1 | 4 ++-- eng/common/tools.sh | 4 ++-- global.json | 6 ++--- 10 files changed, 51 insertions(+), 49 deletions(-) diff --git a/NuGet.config b/NuGet.config index 6ee5b3635..1bd49f5bf 100644 --- a/NuGet.config +++ b/NuGet.config @@ -9,14 +9,8 @@ - - - - - - @@ -29,14 +23,8 @@ - - - - - - diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 9cd4e8dda..738f860b5 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -151,29 +151,29 @@ - + https://github.com/dotnet/arcade - 4ff4ce248e95ae74b0040de6a6c5939aa63120dc + c7a36e53f91e41943746f97a8c183549364c5092 - + https://github.com/dotnet/arcade - 4ff4ce248e95ae74b0040de6a6c5939aa63120dc + c7a36e53f91e41943746f97a8c183549364c5092 - + https://github.com/dotnet/arcade - 4ff4ce248e95ae74b0040de6a6c5939aa63120dc + c7a36e53f91e41943746f97a8c183549364c5092 - + https://github.com/dotnet/arcade - 4ff4ce248e95ae74b0040de6a6c5939aa63120dc + c7a36e53f91e41943746f97a8c183549364c5092 - + https://github.com/dotnet/arcade - 4ff4ce248e95ae74b0040de6a6c5939aa63120dc + c7a36e53f91e41943746f97a8c183549364c5092 - + https://github.com/dotnet/arcade - 4ff4ce248e95ae74b0040de6a6c5939aa63120dc + c7a36e53f91e41943746f97a8c183549364c5092 diff --git a/eng/Versions.props b/eng/Versions.props index 0bccca94a..09afd7106 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -12,10 +12,10 @@ - 8.0.0-beta.25120.1 - 8.0.0-beta.25120.1 - 8.0.0-beta.25120.1 - 8.0.0-beta.25120.1 + 8.0.0-beta.25208.7 + 8.0.0-beta.25208.7 + 8.0.0-beta.25208.7 + 8.0.0-beta.25208.7 4.5.0 4.8.6 diff --git a/eng/common/generate-sbom-prep.ps1 b/eng/common/generate-sbom-prep.ps1 index 3e5c1c74a..a0c7d792a 100644 --- a/eng/common/generate-sbom-prep.ps1 +++ b/eng/common/generate-sbom-prep.ps1 @@ -4,18 +4,26 @@ Param( . $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 $ManifestDirPath)) +if (!(Test-Path -path $SbomGenerationDir)) { - New-Item -ItemType Directory -path $ManifestDirPath - Write-Host "Successfully created directory $ManifestDirPath" + 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" -$artifact_name = "${env:SYSTEM_STAGENAME}_${env:AGENT_JOBNAME}_SBOM" -replace '["/:<>\\|?@*"() ]', '_' -Write-Host "Artifact name $artifact_name" -Write-Host "##vso[task.setvariable variable=ARTIFACT_NAME]$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 index d5c76dc82..bbb492215 100644 --- a/eng/common/generate-sbom-prep.sh +++ b/eng/common/generate-sbom-prep.sh @@ -14,19 +14,24 @@ 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 -if [ ! -d "$manifest_dir" ] ; then - mkdir -p "$manifest_dir" - echo "Sbom directory created." $manifest_dir +# 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 -artifact_name=$SYSTEM_STAGENAME"_"$AGENT_JOBNAME"_SBOM" echo "Artifact name before : "$artifact_name -# replace all special characters with _, some builds use special characters like : in Agent.Jobname, that is not a permissible name while uploading artifacts. -safe_artifact_name="${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" diff --git a/eng/common/templates-official/job/job.yml b/eng/common/templates-official/job/job.yml index 1f035fee7..98ccbd7a9 100644 --- a/eng/common/templates-official/job/job.yml +++ b/eng/common/templates-official/job/job.yml @@ -38,6 +38,7 @@ parameters: enableSbom: true PackageVersion: 7.0.0 BuildDropPath: '$(Build.SourcesDirectory)/artifacts' + ManifestDirPath: $(Build.ArtifactStagingDirectory)/sbom jobs: - job: ${{ parameters.name }} @@ -261,4 +262,4 @@ jobs: targetPath: '$(Build.SourcesDirectory)\eng\common\BuildConfiguration' artifactName: 'BuildConfiguration' displayName: 'Publish build retry configuration' - continueOnError: true \ No newline at end of file + continueOnError: true diff --git a/eng/common/templates-official/steps/generate-sbom.yml b/eng/common/templates-official/steps/generate-sbom.yml index 1bf43bf80..daf0957b6 100644 --- a/eng/common/templates-official/steps/generate-sbom.yml +++ b/eng/common/templates-official/steps/generate-sbom.yml @@ -35,7 +35,7 @@ steps: PackageName: ${{ parameters.packageName }} BuildDropPath: ${{ parameters.buildDropPath }} PackageVersion: ${{ parameters.packageVersion }} - ManifestDirPath: ${{ parameters.manifestDirPath }} + ManifestDirPath: ${{ parameters.manifestDirPath }}/$(ARTIFACT_NAME) ${{ if ne(parameters.IgnoreDirectories, '') }}: AdditionalComponentDetectorArgs: '--IgnoreDirectories ${{ parameters.IgnoreDirectories }}' diff --git a/eng/common/tools.ps1 b/eng/common/tools.ps1 index a00577ed1..82b2798ba 100644 --- a/eng/common/tools.ps1 +++ b/eng/common/tools.ps1 @@ -42,7 +42,7 @@ [bool]$useInstalledDotNetCli = if (Test-Path variable:useInstalledDotNetCli) { $useInstalledDotNetCli } else { $true } # Enable repos to use a particular version of the on-line dotnet-install scripts. -# default URL: https://dotnet.microsoft.com/download/dotnet/scripts/v1/dotnet-install.ps1 +# default URL: https://builds.dotnet.microsoft.com/dotnet/scripts/v1/dotnet-install.ps1 [string]$dotnetInstallScriptVersion = if (Test-Path variable:dotnetInstallScriptVersion) { $dotnetInstallScriptVersion } else { 'v1' } # True to use global NuGet cache instead of restoring packages to repository-local directory. @@ -263,7 +263,7 @@ function GetDotNetInstallScript([string] $dotnetRoot) { if (!(Test-Path $installScript)) { Create-Directory $dotnetRoot $ProgressPreference = 'SilentlyContinue' # Don't display the console progress UI - it's a huge perf hit - $uri = "https://dotnet.microsoft.com/download/dotnet/scripts/$dotnetInstallScriptVersion/dotnet-install.ps1" + $uri = "https://builds.dotnet.microsoft.com/dotnet/scripts/$dotnetInstallScriptVersion/dotnet-install.ps1" Retry({ Write-Host "GET $uri" diff --git a/eng/common/tools.sh b/eng/common/tools.sh index b9b329ce3..68db15430 100644 --- a/eng/common/tools.sh +++ b/eng/common/tools.sh @@ -54,7 +54,7 @@ warn_as_error=${warn_as_error:-true} use_installed_dotnet_cli=${use_installed_dotnet_cli:-true} # Enable repos to use a particular version of the on-line dotnet-install scripts. -# default URL: https://dotnet.microsoft.com/download/dotnet/scripts/v1/dotnet-install.sh +# default URL: https://builds.dotnet.microsoft.com/dotnet/scripts/v1/dotnet-install.sh dotnetInstallScriptVersion=${dotnetInstallScriptVersion:-'v1'} # True to use global NuGet cache instead of restoring packages to repository-local directory. @@ -297,7 +297,7 @@ function with_retries { function GetDotNetInstallScript { local root=$1 local install_script="$root/dotnet-install.sh" - local install_script_url="https://dotnet.microsoft.com/download/dotnet/scripts/$dotnetInstallScriptVersion/dotnet-install.sh" + local install_script_url="https://builds.dotnet.microsoft.com/dotnet/scripts/$dotnetInstallScriptVersion/dotnet-install.sh" if [[ ! -a "$install_script" ]]; then mkdir -p "$root" diff --git a/global.json b/global.json index e19ad6426..216d81114 100644 --- a/global.json +++ b/global.json @@ -1,10 +1,10 @@ { "tools": { - "dotnet": "8.0.113" + "dotnet": "8.0.115" }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "8.0.0-beta.25120.1", - "Microsoft.DotNet.SharedFramework.Sdk": "8.0.0-beta.25120.1", + "Microsoft.DotNet.Arcade.Sdk": "8.0.0-beta.25208.7", + "Microsoft.DotNet.SharedFramework.Sdk": "8.0.0-beta.25208.7", "Microsoft.Build.NoTargets": "3.7.0", "Microsoft.Build.Traversal": "3.4.0" } From d2da638a5e08138f762beea552136575ec5b44a2 Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Fri, 11 Apr 2025 06:14:47 +0000 Subject: [PATCH 195/222] Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-wpf build 20250410.3 Microsoft.DotNet.Wpf.GitHub , Microsoft.DotNet.Wpf.ProjectTemplates , Microsoft.NET.Sdk.WindowsDesktop From Version 8.0.16-servicing.25202.8 -> To Version 8.0.16-servicing.25210.3 --- eng/Version.Details.xml | 12 ++++++------ eng/Versions.props | 4 ++-- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 8918accff..d6477b1d3 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -9,13 +9,13 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-winforms 2c14c37b0340b3745b630670a1944d260bf3da57 - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - e5d0372872cca90ca3a6fec53bb4c50dbc6ac6d0 + adf59be824162747c98b7cbc9b81c1600bbaa955 - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - e5d0372872cca90ca3a6fec53bb4c50dbc6ac6d0 + adf59be824162747c98b7cbc9b81c1600bbaa955 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime @@ -33,9 +33,9 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-winforms 2c14c37b0340b3745b630670a1944d260bf3da57 - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - e5d0372872cca90ca3a6fec53bb4c50dbc6ac6d0 + adf59be824162747c98b7cbc9b81c1600bbaa955 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime diff --git a/eng/Versions.props b/eng/Versions.props index 32d28e121..eb612f2fc 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -69,7 +69,7 @@ 8.0.15-servicing.25165.1 8.0.15 - 8.0.16-servicing.25202.8 - 8.0.16-servicing.25202.8 + 8.0.16-servicing.25210.3 + 8.0.16-servicing.25210.3 From c5412cc8ea908e2694685a29e26c2040dbc3536e Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Thu, 17 Apr 2025 04:23:15 +0000 Subject: [PATCH 196/222] Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-wpf build 20250416.4 Microsoft.DotNet.Wpf.GitHub , Microsoft.DotNet.Wpf.ProjectTemplates , Microsoft.NET.Sdk.WindowsDesktop From Version 8.0.16-servicing.25210.3 -> To Version 8.0.16-servicing.25216.4 Dependency coherency updates Microsoft.Private.Winforms,Microsoft.Internal.Runtime.WindowsDesktop.Transport,Microsoft.Private.Winforms,Microsoft.NETCore.App.Ref,Microsoft.Private.Winforms,VS.Redist.Common.NetCore.SharedFramework.x64.8.0,Microsoft.Private.Winforms,Microsoft.NETCore.App.Runtime.win-x64,Microsoft.Dotnet.WinForms.ProjectTemplates,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,System.Diagnostics.EventLog,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,System.DirectoryServices.Protocols,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,System.Drawing.Common From Version 8.0.15-servicing.25165.1 -> To Version 8.0.16-servicing.25216.4 (parent: Microsoft.DotNet.Wpf.GitHub --- NuGet.config | 16 ++++----------- eng/Version.Details.xml | 44 ++++++++++++++++++++--------------------- eng/Versions.props | 18 ++++++++--------- 3 files changed, 35 insertions(+), 43 deletions(-) diff --git a/NuGet.config b/NuGet.config index f80cec900..62ebaa859 100644 --- a/NuGet.config +++ b/NuGet.config @@ -9,14 +9,10 @@ - - - + - - - + @@ -29,14 +25,10 @@ - - - + - - - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index d6477b1d3..3bc0bd218 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,41 +1,41 @@ - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 50c4cb9fc31c47f03eac865d7bc518af173b74b7 + efd5742bb5dd1677fbbbeb277bcfb5c9025548e5 - + https://dev.azure.com/dnceng/internal/_git/dotnet-winforms - 2c14c37b0340b3745b630670a1944d260bf3da57 + fc2e4431b565fd5b2e8d71a224d99d963f380dab - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - adf59be824162747c98b7cbc9b81c1600bbaa955 + 1a7a066fb7594c1083fb07e8ce5d1a8c81bc3b5d - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - adf59be824162747c98b7cbc9b81c1600bbaa955 + 1a7a066fb7594c1083fb07e8ce5d1a8c81bc3b5d - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 50c4cb9fc31c47f03eac865d7bc518af173b74b7 + efd5742bb5dd1677fbbbeb277bcfb5c9025548e5 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 50c4cb9fc31c47f03eac865d7bc518af173b74b7 + efd5742bb5dd1677fbbbeb277bcfb5c9025548e5 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 50c4cb9fc31c47f03eac865d7bc518af173b74b7 + efd5742bb5dd1677fbbbeb277bcfb5c9025548e5 - + https://dev.azure.com/dnceng/internal/_git/dotnet-winforms - 2c14c37b0340b3745b630670a1944d260bf3da57 + fc2e4431b565fd5b2e8d71a224d99d963f380dab - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - adf59be824162747c98b7cbc9b81c1600bbaa955 + 1a7a066fb7594c1083fb07e8ce5d1a8c81bc3b5d https://dev.azure.com/dnceng/internal/_git/dotnet-runtime @@ -67,7 +67,7 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 50c4cb9fc31c47f03eac865d7bc518af173b74b7 + 9e47be69725f0fae92a957c273337c22a70f4cbd https://dev.azure.com/dnceng/internal/_git/dotnet-runtime @@ -79,7 +79,7 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 50c4cb9fc31c47f03eac865d7bc518af173b74b7 + 9e47be69725f0fae92a957c273337c22a70f4cbd https://dev.azure.com/dnceng/internal/_git/dotnet-runtime @@ -145,9 +145,9 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime 5535e31a712343a63f5d7d796cd874e563e5ac14 - + https://dev.azure.com/dnceng/internal/_git/dotnet-winforms - 2c14c37b0340b3745b630670a1944d260bf3da57 + fc2e4431b565fd5b2e8d71a224d99d963f380dab diff --git a/eng/Versions.props b/eng/Versions.props index eb612f2fc..f29408c72 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -25,9 +25,9 @@ 6.2.4 - 8.0.15-servicing.25164.13 - 8.0.15 - 8.0.15 + 8.0.16-servicing.25215.6 + 8.0.16 + 8.0.16 8.0.0 5.0.0 8.0.0 @@ -61,15 +61,15 @@ 8.0.0 8.0.0 8.0.0 - 8.0.15-servicing.25164.13 + 8.0.16-servicing.25215.6 4.10.0 - 8.0.15-servicing.25165.1 - 8.0.15-servicing.25165.1 - 8.0.15 + 8.0.16-servicing.25216.4 + 8.0.16-servicing.25216.4 + 8.0.16 - 8.0.16-servicing.25210.3 - 8.0.16-servicing.25210.3 + 8.0.16-servicing.25216.4 + 8.0.16-servicing.25216.4 From 31bdbcfd8dd5ae24e7bd8dcc8d8ebc4b53d7dc85 Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Fri, 18 Apr 2025 00:49:48 +0000 Subject: [PATCH 197/222] Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-wpf build 20250417.3 Microsoft.DotNet.Wpf.GitHub , Microsoft.DotNet.Wpf.ProjectTemplates , Microsoft.NET.Sdk.WindowsDesktop From Version 8.0.16-servicing.25216.4 -> To Version 8.0.16-servicing.25217.3 Dependency coherency updates Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Dotnet.WinForms.ProjectTemplates,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,System.Diagnostics.EventLog,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,System.DirectoryServices.Protocols,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,System.Drawing.Common From Version 8.0.16-servicing.25216.4 -> To Version 8.0.16-servicing.25217.2 (parent: Microsoft.DotNet.Wpf.GitHub --- NuGet.config | 4 ++-- eng/Version.Details.xml | 26 +++++++++++++------------- eng/Versions.props | 8 ++++---- 3 files changed, 19 insertions(+), 19 deletions(-) diff --git a/NuGet.config b/NuGet.config index 62ebaa859..efcb65001 100644 --- a/NuGet.config +++ b/NuGet.config @@ -12,7 +12,7 @@ - + @@ -28,7 +28,7 @@ - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 3bc0bd218..2be9732c2 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -5,17 +5,17 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime efd5742bb5dd1677fbbbeb277bcfb5c9025548e5 - + https://dev.azure.com/dnceng/internal/_git/dotnet-winforms - fc2e4431b565fd5b2e8d71a224d99d963f380dab + c4b79deca3753d92e126fa2df778fe10ab4e6d6d - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - 1a7a066fb7594c1083fb07e8ce5d1a8c81bc3b5d + 5bf5c017e225debf2b431cf33d0e4fad03039032 - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - 1a7a066fb7594c1083fb07e8ce5d1a8c81bc3b5d + 5bf5c017e225debf2b431cf33d0e4fad03039032 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime @@ -29,13 +29,13 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime efd5742bb5dd1677fbbbeb277bcfb5c9025548e5 - + https://dev.azure.com/dnceng/internal/_git/dotnet-winforms - fc2e4431b565fd5b2e8d71a224d99d963f380dab + c4b79deca3753d92e126fa2df778fe10ab4e6d6d - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - 1a7a066fb7594c1083fb07e8ce5d1a8c81bc3b5d + 5bf5c017e225debf2b431cf33d0e4fad03039032 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime @@ -67,7 +67,7 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 9e47be69725f0fae92a957c273337c22a70f4cbd + 50c4cb9fc31c47f03eac865d7bc518af173b74b7 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime @@ -79,7 +79,7 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 9e47be69725f0fae92a957c273337c22a70f4cbd + 50c4cb9fc31c47f03eac865d7bc518af173b74b7 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime @@ -147,7 +147,7 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-winforms - fc2e4431b565fd5b2e8d71a224d99d963f380dab + c4b79deca3753d92e126fa2df778fe10ab4e6d6d diff --git a/eng/Versions.props b/eng/Versions.props index f29408c72..5b4e9ff65 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -65,11 +65,11 @@ 4.10.0 - 8.0.16-servicing.25216.4 - 8.0.16-servicing.25216.4 + 8.0.16-servicing.25217.2 + 8.0.16-servicing.25217.2 8.0.16 - 8.0.16-servicing.25216.4 - 8.0.16-servicing.25216.4 + 8.0.16-servicing.25217.3 + 8.0.16-servicing.25217.3 From ba37b88097f728ca3123b1fa2fbd2c7e193872b4 Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Wed, 23 Apr 2025 07:19:18 +0000 Subject: [PATCH 198/222] Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-wpf build 20250422.9 Microsoft.DotNet.Wpf.GitHub , Microsoft.DotNet.Wpf.ProjectTemplates , Microsoft.NET.Sdk.WindowsDesktop From Version 8.0.16-servicing.25217.3 -> To Version 8.0.16-servicing.25222.9 --- NuGet.config | 4 ++++ eng/Version.Details.xml | 12 ++++++------ eng/Versions.props | 4 ++-- 3 files changed, 12 insertions(+), 8 deletions(-) diff --git a/NuGet.config b/NuGet.config index efcb65001..ab03295d7 100644 --- a/NuGet.config +++ b/NuGet.config @@ -10,9 +10,11 @@ + + @@ -25,9 +27,11 @@ + + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 2be9732c2..7383de6bf 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -9,13 +9,13 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-winforms c4b79deca3753d92e126fa2df778fe10ab4e6d6d - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - 5bf5c017e225debf2b431cf33d0e4fad03039032 + 45ad2ce8cf7c70820371c93864116338cfbd9499 - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - 5bf5c017e225debf2b431cf33d0e4fad03039032 + 45ad2ce8cf7c70820371c93864116338cfbd9499 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime @@ -33,9 +33,9 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-winforms c4b79deca3753d92e126fa2df778fe10ab4e6d6d - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - 5bf5c017e225debf2b431cf33d0e4fad03039032 + 45ad2ce8cf7c70820371c93864116338cfbd9499 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime diff --git a/eng/Versions.props b/eng/Versions.props index 5b4e9ff65..8608a9d3b 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -69,7 +69,7 @@ 8.0.16-servicing.25217.2 8.0.16 - 8.0.16-servicing.25217.3 - 8.0.16-servicing.25217.3 + 8.0.16-servicing.25222.9 + 8.0.16-servicing.25222.9 From 9f9bcf9519237453fd3a2e530eae4b053d47a3af Mon Sep 17 00:00:00 2001 From: Sean Reeser Date: Wed, 7 May 2025 14:47:20 -0700 Subject: [PATCH 199/222] Update branding to 8.0.17 --- eng/Versions.props | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eng/Versions.props b/eng/Versions.props index f9cc58f92..a0f389855 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -2,7 +2,7 @@ 8 0 - 16 + 17 servicing From abde00d4106ea9e0cecb8c8ca35f9108d2a13280 Mon Sep 17 00:00:00 2001 From: Tanya Solyanik Date: Fri, 9 May 2025 15:39:58 -0700 Subject: [PATCH 200/222] * Update Windows.Compatibility external packages --- eng/Versions.props | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/eng/Versions.props b/eng/Versions.props index a0f389855..1204761f5 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -18,7 +18,7 @@ 8.0.0-beta.25208.7 4.5.0 - 4.8.6 + 4.9.0 4.7.0 4.7.0 4.7.0 @@ -63,7 +63,7 @@ 8.0.0 8.0.15-servicing.25164.13 - 4.10.0 + 4.10.3 8.0.15-servicing.25165.1 8.0.15-servicing.25165.1 From 7102020c81624e13a08dc20146e3e41b65ee4f30 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Wed, 14 May 2025 21:25:11 +0000 Subject: [PATCH 201/222] [release/8.0] Update dependencies from dotnet/arcade (#5090) [release/8.0] Update dependencies from dotnet/arcade --- NuGet.config | 16 +++++++++++++ eng/Version.Details.xml | 24 +++++++++---------- eng/Versions.props | 8 +++---- eng/common/sdl/packages.config | 2 +- .../templates-official/job/source-build.yml | 2 +- .../job/source-index-stage1.yml | 4 ++-- .../templates-official/jobs/source-build.yml | 2 +- eng/common/templates/job/source-build.yml | 4 ++-- .../templates/job/source-index-stage1.yml | 4 ++-- eng/common/templates/jobs/source-build.yml | 2 +- global.json | 6 ++--- 11 files changed, 45 insertions(+), 29 deletions(-) diff --git a/NuGet.config b/NuGet.config index efcb65001..e5f66ab06 100644 --- a/NuGet.config +++ b/NuGet.config @@ -10,9 +10,17 @@ + + + + + + + + @@ -25,9 +33,17 @@ + + + + + + + + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 2be9732c2..98eec13a7 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -151,29 +151,29 @@ - + https://github.com/dotnet/arcade - c7a36e53f91e41943746f97a8c183549364c5092 + 20ab70a74d52b68f4271bd946884e24049b14f83 - + https://github.com/dotnet/arcade - c7a36e53f91e41943746f97a8c183549364c5092 + 20ab70a74d52b68f4271bd946884e24049b14f83 - + https://github.com/dotnet/arcade - c7a36e53f91e41943746f97a8c183549364c5092 + 20ab70a74d52b68f4271bd946884e24049b14f83 - + https://github.com/dotnet/arcade - c7a36e53f91e41943746f97a8c183549364c5092 + 20ab70a74d52b68f4271bd946884e24049b14f83 - + https://github.com/dotnet/arcade - c7a36e53f91e41943746f97a8c183549364c5092 + 20ab70a74d52b68f4271bd946884e24049b14f83 - + https://github.com/dotnet/arcade - c7a36e53f91e41943746f97a8c183549364c5092 + 20ab70a74d52b68f4271bd946884e24049b14f83 diff --git a/eng/Versions.props b/eng/Versions.props index cf7c67b38..c1978197f 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -12,10 +12,10 @@ - 8.0.0-beta.25208.7 - 8.0.0-beta.25208.7 - 8.0.0-beta.25208.7 - 8.0.0-beta.25208.7 + 8.0.0-beta.25263.4 + 8.0.0-beta.25263.4 + 8.0.0-beta.25263.4 + 8.0.0-beta.25263.4 4.5.0 4.9.0 diff --git a/eng/common/sdl/packages.config b/eng/common/sdl/packages.config index 4585cfd6b..e5f543ea6 100644 --- a/eng/common/sdl/packages.config +++ b/eng/common/sdl/packages.config @@ -1,4 +1,4 @@ - + diff --git a/eng/common/templates-official/job/source-build.yml b/eng/common/templates-official/job/source-build.yml index f983033bb..4217d6d8b 100644 --- a/eng/common/templates-official/job/source-build.yml +++ b/eng/common/templates-official/job/source-build.yml @@ -54,7 +54,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.1804.Amd64.Open + demands: ImageOverride -equals Build.Ubuntu.2204.Amd64.Open ${{ 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')] diff --git a/eng/common/templates-official/job/source-index-stage1.yml b/eng/common/templates-official/job/source-index-stage1.yml index 60dfb6b2d..fb632b71a 100644 --- a/eng/common/templates-official/job/source-index-stage1.yml +++ b/eng/common/templates-official/job/source-index-stage1.yml @@ -1,7 +1,7 @@ parameters: runAsPublic: false - sourceIndexUploadPackageVersion: 2.0.0-20240502.12 - sourceIndexProcessBinlogPackageVersion: 1.0.1-20240129.2 + sourceIndexUploadPackageVersion: 2.0.0-20250425.2 + sourceIndexProcessBinlogPackageVersion: 1.0.1-20250425.2 sourceIndexPackageSource: https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet-tools/nuget/v3/index.json sourceIndexBuildCommand: powershell -NoLogo -NoProfile -ExecutionPolicy Bypass -Command "eng/common/build.ps1 -restore -build -binarylog -ci" preSteps: [] diff --git a/eng/common/templates-official/jobs/source-build.yml b/eng/common/templates-official/jobs/source-build.yml index 5cf6a269c..b9247be15 100644 --- a/eng/common/templates-official/jobs/source-build.yml +++ b/eng/common/templates-official/jobs/source-build.yml @@ -14,7 +14,7 @@ parameters: # This is the default platform provided by Arcade, intended for use by a managed-only repo. defaultManagedPlatform: name: 'Managed' - container: 'mcr.microsoft.com/dotnet-buildtools/prereqs:centos-stream8' + container: 'mcr.microsoft.com/dotnet-buildtools/prereqs:centos-stream-9-amd64' # Defines the platforms on which to run build jobs. One job is created for each platform, and the # object in this array is sent to the job template as 'platform'. If no platforms are specified, diff --git a/eng/common/templates/job/source-build.yml b/eng/common/templates/job/source-build.yml index c0ff472b6..c48f95d93 100644 --- a/eng/common/templates/job/source-build.yml +++ b/eng/common/templates/job/source-build.yml @@ -54,11 +54,11 @@ 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.1804.Amd64.Open + demands: ImageOverride -equals Build.Ubuntu.2204.Amd64.Open ${{ 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')] - demands: ImageOverride -equals Build.Ubuntu.1804.Amd64 + demands: ImageOverride -equals Build.Ubuntu.2204.Amd64 ${{ if ne(parameters.platform.pool, '') }}: pool: ${{ parameters.platform.pool }} diff --git a/eng/common/templates/job/source-index-stage1.yml b/eng/common/templates/job/source-index-stage1.yml index 0b6bb89dc..8538f44ba 100644 --- a/eng/common/templates/job/source-index-stage1.yml +++ b/eng/common/templates/job/source-index-stage1.yml @@ -1,7 +1,7 @@ parameters: runAsPublic: false - sourceIndexUploadPackageVersion: 2.0.0-20240502.12 - sourceIndexProcessBinlogPackageVersion: 1.0.1-20240129.2 + sourceIndexUploadPackageVersion: 2.0.0-20250425.2 + sourceIndexProcessBinlogPackageVersion: 1.0.1-20250425.2 sourceIndexPackageSource: https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet-tools/nuget/v3/index.json sourceIndexBuildCommand: powershell -NoLogo -NoProfile -ExecutionPolicy Bypass -Command "eng/common/build.ps1 -restore -build -binarylog -ci" preSteps: [] diff --git a/eng/common/templates/jobs/source-build.yml b/eng/common/templates/jobs/source-build.yml index 5f46bfa89..3ec997108 100644 --- a/eng/common/templates/jobs/source-build.yml +++ b/eng/common/templates/jobs/source-build.yml @@ -14,7 +14,7 @@ parameters: # This is the default platform provided by Arcade, intended for use by a managed-only repo. defaultManagedPlatform: name: 'Managed' - container: 'mcr.microsoft.com/dotnet-buildtools/prereqs:centos-stream8' + container: 'mcr.microsoft.com/dotnet-buildtools/prereqs:centos-stream-9-amd64' # Defines the platforms on which to run build jobs. One job is created for each platform, and the # object in this array is sent to the job template as 'platform'. If no platforms are specified, diff --git a/global.json b/global.json index 216d81114..82b35667f 100644 --- a/global.json +++ b/global.json @@ -1,10 +1,10 @@ { "tools": { - "dotnet": "8.0.115" + "dotnet": "8.0.116" }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "8.0.0-beta.25208.7", - "Microsoft.DotNet.SharedFramework.Sdk": "8.0.0-beta.25208.7", + "Microsoft.DotNet.Arcade.Sdk": "8.0.0-beta.25263.4", + "Microsoft.DotNet.SharedFramework.Sdk": "8.0.0-beta.25263.4", "Microsoft.Build.NoTargets": "3.7.0", "Microsoft.Build.Traversal": "3.4.0" } From 116fb8811bc22b08988c78d20f872fad99ef5e02 Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Fri, 16 May 2025 06:24:16 +0000 Subject: [PATCH 202/222] Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-wpf build 20250515.5 Microsoft.DotNet.Wpf.GitHub , Microsoft.DotNet.Wpf.ProjectTemplates , Microsoft.NET.Sdk.WindowsDesktop From Version 8.0.16-servicing.25222.9 -> To Version 8.0.17-servicing.25265.5 --- NuGet.config | 12 ++++++++++++ eng/Version.Details.xml | 12 ++++++------ eng/Versions.props | 4 ++-- 3 files changed, 20 insertions(+), 8 deletions(-) diff --git a/NuGet.config b/NuGet.config index ab03295d7..e5f66ab06 100644 --- a/NuGet.config +++ b/NuGet.config @@ -10,10 +10,16 @@ + + + + + + @@ -28,10 +34,16 @@ + + + + + + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 7383de6bf..c897a295b 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -9,13 +9,13 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-winforms c4b79deca3753d92e126fa2df778fe10ab4e6d6d - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - 45ad2ce8cf7c70820371c93864116338cfbd9499 + cdf148630c1ea684d466e123fa46fc50ca8c3329 - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - 45ad2ce8cf7c70820371c93864116338cfbd9499 + cdf148630c1ea684d466e123fa46fc50ca8c3329 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime @@ -33,9 +33,9 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-winforms c4b79deca3753d92e126fa2df778fe10ab4e6d6d - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - 45ad2ce8cf7c70820371c93864116338cfbd9499 + cdf148630c1ea684d466e123fa46fc50ca8c3329 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime diff --git a/eng/Versions.props b/eng/Versions.props index caad27bcd..e81338cb8 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -69,7 +69,7 @@ 8.0.16-servicing.25217.2 8.0.16 - 8.0.16-servicing.25222.9 - 8.0.16-servicing.25222.9 + 8.0.17-servicing.25265.5 + 8.0.17-servicing.25265.5 From 6ada4994caf8d8d24d8e5c9eb8cfc1fa8fbeeeca Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Fri, 16 May 2025 19:06:02 +0000 Subject: [PATCH 203/222] Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-wpf build 20250516.7 Microsoft.DotNet.Wpf.GitHub , Microsoft.DotNet.Wpf.ProjectTemplates , Microsoft.NET.Sdk.WindowsDesktop From Version 8.0.17-servicing.25265.5 -> To Version 8.0.17-servicing.25266.7 Dependency coherency updates Microsoft.Private.Winforms,Microsoft.Internal.Runtime.WindowsDesktop.Transport,Microsoft.Private.Winforms,Microsoft.NETCore.App.Ref,Microsoft.Private.Winforms,VS.Redist.Common.NetCore.SharedFramework.x64.8.0,Microsoft.Private.Winforms,Microsoft.NETCore.App.Runtime.win-x64,Microsoft.Dotnet.WinForms.ProjectTemplates,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,System.DirectoryServices.Protocols,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,System.Drawing.Common From Version 8.0.16-servicing.25217.2 -> To Version 8.0.17-servicing.25266.2 (parent: Microsoft.DotNet.Wpf.GitHub --- NuGet.config | 24 ++++------------------ eng/Version.Details.xml | 44 ++++++++++++++++++++--------------------- eng/Versions.props | 20 +++++++++---------- 3 files changed, 36 insertions(+), 52 deletions(-) diff --git a/NuGet.config b/NuGet.config index e5f66ab06..2ce067998 100644 --- a/NuGet.config +++ b/NuGet.config @@ -9,18 +9,10 @@ - - - - - + - - - - - + @@ -33,18 +25,10 @@ - - - - - + - - - - - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 8bb2bf08d..9c3c2882d 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,41 +1,41 @@ - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - efd5742bb5dd1677fbbbeb277bcfb5c9025548e5 + 77545d6fd5ca79bc08198fd6d8037c14843f14ad - + https://dev.azure.com/dnceng/internal/_git/dotnet-winforms - c4b79deca3753d92e126fa2df778fe10ab4e6d6d + 48a12d4e97f6788bae27335477aa66a932c33b3a - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - cdf148630c1ea684d466e123fa46fc50ca8c3329 + b69de2e98b14e30aeeb10668209dcf471fabc79a - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - cdf148630c1ea684d466e123fa46fc50ca8c3329 + b69de2e98b14e30aeeb10668209dcf471fabc79a - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - efd5742bb5dd1677fbbbeb277bcfb5c9025548e5 + 77545d6fd5ca79bc08198fd6d8037c14843f14ad - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - efd5742bb5dd1677fbbbeb277bcfb5c9025548e5 + 77545d6fd5ca79bc08198fd6d8037c14843f14ad - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - efd5742bb5dd1677fbbbeb277bcfb5c9025548e5 + 77545d6fd5ca79bc08198fd6d8037c14843f14ad - + https://dev.azure.com/dnceng/internal/_git/dotnet-winforms - c4b79deca3753d92e126fa2df778fe10ab4e6d6d + 48a12d4e97f6788bae27335477aa66a932c33b3a - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - cdf148630c1ea684d466e123fa46fc50ca8c3329 + b69de2e98b14e30aeeb10668209dcf471fabc79a https://dev.azure.com/dnceng/internal/_git/dotnet-runtime @@ -77,9 +77,9 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime 81cabf2857a01351e5ab578947c7403a5b128ad1 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 50c4cb9fc31c47f03eac865d7bc518af173b74b7 + 77545d6fd5ca79bc08198fd6d8037c14843f14ad https://dev.azure.com/dnceng/internal/_git/dotnet-runtime @@ -145,9 +145,9 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime 5535e31a712343a63f5d7d796cd874e563e5ac14 - + https://dev.azure.com/dnceng/internal/_git/dotnet-winforms - c4b79deca3753d92e126fa2df778fe10ab4e6d6d + 48a12d4e97f6788bae27335477aa66a932c33b3a diff --git a/eng/Versions.props b/eng/Versions.props index dbc357fbb..38576e015 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -25,9 +25,9 @@ 6.2.4 - 8.0.16-servicing.25215.6 - 8.0.16 - 8.0.16 + 8.0.17-servicing.25266.2 + 8.0.17 + 8.0.17 8.0.0 5.0.0 8.0.0 @@ -40,7 +40,7 @@ 8.0.2 8.0.1 8.0.1 - 8.0.1 + 8.0.2 8.0.0 5.0.0 8.0.1 @@ -61,15 +61,15 @@ 8.0.0 8.0.0 8.0.0 - 8.0.16-servicing.25215.6 + 8.0.17-servicing.25266.2 4.10.3 - 8.0.16-servicing.25217.2 - 8.0.16-servicing.25217.2 - 8.0.16 + 8.0.17-servicing.25266.2 + 8.0.17-servicing.25266.2 + 8.0.17 - 8.0.17-servicing.25265.5 - 8.0.17-servicing.25265.5 + 8.0.17-servicing.25266.7 + 8.0.17-servicing.25266.7 From b86b1a4c0d741ab72eab3a0480f9830459f20826 Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Sat, 17 May 2025 01:40:04 +0000 Subject: [PATCH 204/222] Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-wpf build 20250516.9 Microsoft.DotNet.Wpf.GitHub , Microsoft.DotNet.Wpf.ProjectTemplates , Microsoft.NET.Sdk.WindowsDesktop From Version 8.0.17-servicing.25266.7 -> To Version 8.0.17-servicing.25266.9 Dependency coherency updates Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Dotnet.WinForms.ProjectTemplates,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,System.Drawing.Common From Version 8.0.17-servicing.25266.2 -> To Version 8.0.17-servicing.25266.4 (parent: Microsoft.DotNet.Wpf.GitHub --- NuGet.config | 4 ++-- eng/Version.Details.xml | 22 +++++++++++----------- eng/Versions.props | 8 ++++---- 3 files changed, 17 insertions(+), 17 deletions(-) diff --git a/NuGet.config b/NuGet.config index 2ce067998..f155d4bef 100644 --- a/NuGet.config +++ b/NuGet.config @@ -12,7 +12,7 @@ - + @@ -28,7 +28,7 @@ - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 9c3c2882d..ea3ddf7be 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -5,17 +5,17 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime 77545d6fd5ca79bc08198fd6d8037c14843f14ad - + https://dev.azure.com/dnceng/internal/_git/dotnet-winforms - 48a12d4e97f6788bae27335477aa66a932c33b3a + f3291acee6a0b0b2340013b1320af91fe160096f - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - b69de2e98b14e30aeeb10668209dcf471fabc79a + 3385cf1d42f4e488140452369a247a4a16183ce4 - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - b69de2e98b14e30aeeb10668209dcf471fabc79a + 3385cf1d42f4e488140452369a247a4a16183ce4 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime @@ -29,13 +29,13 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime 77545d6fd5ca79bc08198fd6d8037c14843f14ad - + https://dev.azure.com/dnceng/internal/_git/dotnet-winforms - 48a12d4e97f6788bae27335477aa66a932c33b3a + f3291acee6a0b0b2340013b1320af91fe160096f - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - b69de2e98b14e30aeeb10668209dcf471fabc79a + 3385cf1d42f4e488140452369a247a4a16183ce4 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime @@ -147,7 +147,7 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-winforms - 48a12d4e97f6788bae27335477aa66a932c33b3a + f3291acee6a0b0b2340013b1320af91fe160096f diff --git a/eng/Versions.props b/eng/Versions.props index 38576e015..4ba53cb11 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -65,11 +65,11 @@ 4.10.3 - 8.0.17-servicing.25266.2 - 8.0.17-servicing.25266.2 + 8.0.17-servicing.25266.4 + 8.0.17-servicing.25266.4 8.0.17 - 8.0.17-servicing.25266.7 - 8.0.17-servicing.25266.7 + 8.0.17-servicing.25266.9 + 8.0.17-servicing.25266.9 From 8cdb40ed3a1786931c526ad18b2c0a6875d3f253 Mon Sep 17 00:00:00 2001 From: Sean Reeser Date: Wed, 4 Jun 2025 09:20:29 -0700 Subject: [PATCH 205/222] Update branding to 8.0.18 --- eng/Versions.props | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eng/Versions.props b/eng/Versions.props index c1978197f..ca6447be1 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -2,7 +2,7 @@ 8 0 - 17 + 18 servicing From ee5053375976bc60251206b6d566fa99b645b86a Mon Sep 17 00:00:00 2001 From: Leaf Shi <132890443+LeafShi1@users.noreply.github.com> Date: Wed, 11 Jun 2025 10:37:06 +0800 Subject: [PATCH 206/222] Merge pull request #5136 from LeafShi1/Update-image-to-vs2022-in-release8.0 Update image to vs2022 in release8.0 --- eng/common/templates/job/execute-sdl.yml | 2 +- eng/common/templates/job/onelocbuild.yml | 2 +- eng/common/templates/job/publish-build-assets.yml | 2 +- eng/common/templates/job/source-index-stage1.yml | 4 ++-- eng/common/templates/post-build/post-build.yml | 8 ++++---- 5 files changed, 9 insertions(+), 9 deletions(-) diff --git a/eng/common/templates/job/execute-sdl.yml b/eng/common/templates/job/execute-sdl.yml index 7870f93bc..28ccaaa48 100644 --- a/eng/common/templates/job/execute-sdl.yml +++ b/eng/common/templates/job/execute-sdl.yml @@ -55,7 +55,7 @@ jobs: # If it's not devdiv, it's dnceng ${{ if ne(variables['System.TeamProject'], 'DevDiv') }}: name: $(DncEngInternalBuildPool) - demands: ImageOverride -equals windows.vs2019.amd64 + demands: ImageOverride -equals windows.vs2022.amd64 steps: - checkout: self clean: true diff --git a/eng/common/templates/job/onelocbuild.yml b/eng/common/templates/job/onelocbuild.yml index 60ab00c4d..404a36027 100644 --- a/eng/common/templates/job/onelocbuild.yml +++ b/eng/common/templates/job/onelocbuild.yml @@ -54,7 +54,7 @@ jobs: # If it's not devdiv, it's dnceng ${{ if ne(variables['System.TeamProject'], 'DevDiv') }}: name: $(DncEngInternalBuildPool) - demands: ImageOverride -equals windows.vs2019.amd64 + demands: ImageOverride -equals windows.vs2022.amd64 steps: - ${{ if ne(parameters.SkipLocProjectJsonGeneration, 'true') }}: diff --git a/eng/common/templates/job/publish-build-assets.yml b/eng/common/templates/job/publish-build-assets.yml index cc2b346ba..043fe3d1c 100644 --- a/eng/common/templates/job/publish-build-assets.yml +++ b/eng/common/templates/job/publish-build-assets.yml @@ -59,7 +59,7 @@ jobs: # If it's not devdiv, it's dnceng ${{ if ne(variables['System.TeamProject'], 'DevDiv') }}: name: NetCore1ESPool-Publishing-Internal - demands: ImageOverride -equals windows.vs2019.amd64 + demands: ImageOverride -equals windows.vs2022.amd64 steps: - ${{ if and(eq(parameters.runAsPublic, 'false'), ne(variables['System.TeamProject'], 'public'), notin(variables['Build.Reason'], 'PullRequest')) }}: diff --git a/eng/common/templates/job/source-index-stage1.yml b/eng/common/templates/job/source-index-stage1.yml index 8538f44ba..278c5fda1 100644 --- a/eng/common/templates/job/source-index-stage1.yml +++ b/eng/common/templates/job/source-index-stage1.yml @@ -31,10 +31,10 @@ jobs: pool: ${{ if eq(variables['System.TeamProject'], 'public') }}: name: $(DncEngPublicBuildPool) - demands: ImageOverride -equals windows.vs2019.amd64.open + demands: ImageOverride -equals windows.vs2022.amd64.open ${{ if eq(variables['System.TeamProject'], 'internal') }}: name: $(DncEngInternalBuildPool) - demands: ImageOverride -equals windows.vs2019.amd64 + demands: ImageOverride -equals windows.vs2022.amd64 steps: - ${{ each preStep in parameters.preSteps }}: diff --git a/eng/common/templates/post-build/post-build.yml b/eng/common/templates/post-build/post-build.yml index c3b6a3012..2c21839ab 100644 --- a/eng/common/templates/post-build/post-build.yml +++ b/eng/common/templates/post-build/post-build.yml @@ -108,7 +108,7 @@ stages: # If it's not devdiv, it's dnceng ${{ else }}: name: $(DncEngInternalBuildPool) - demands: ImageOverride -equals windows.vs2019.amd64 + demands: ImageOverride -equals windows.vs2022.amd64 steps: - template: setup-maestro-vars.yml @@ -145,7 +145,7 @@ stages: # If it's not devdiv, it's dnceng ${{ else }}: name: $(DncEngInternalBuildPool) - demands: ImageOverride -equals windows.vs2019.amd64 + demands: ImageOverride -equals windows.vs2022.amd64 steps: - template: setup-maestro-vars.yml parameters: @@ -199,7 +199,7 @@ stages: # If it's not devdiv, it's dnceng ${{ else }}: name: $(DncEngInternalBuildPool) - demands: ImageOverride -equals windows.vs2019.amd64 + demands: ImageOverride -equals windows.vs2022.amd64 steps: - template: setup-maestro-vars.yml parameters: @@ -259,7 +259,7 @@ stages: # If it's not devdiv, it's dnceng ${{ else }}: name: NetCore1ESPool-Publishing-Internal - demands: ImageOverride -equals windows.vs2019.amd64 + demands: ImageOverride -equals windows.vs2022.amd64 steps: - template: setup-maestro-vars.yml parameters: From d57882e1714c98b7f465cdb633e4c8315380385b Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Wed, 11 Jun 2025 14:45:23 +0000 Subject: [PATCH 207/222] [release/8.0] Update dependencies from dotnet/arcade (#5137) [release/8.0] Update dependencies from dotnet/arcade --- NuGet.config | 20 ---------------- eng/Version.Details.xml | 24 +++++++++---------- eng/Versions.props | 8 +++---- eng/common/templates/job/execute-sdl.yml | 2 +- eng/common/templates/job/onelocbuild.yml | 2 +- .../templates/job/publish-build-assets.yml | 2 +- .../templates/job/source-index-stage1.yml | 4 ++-- .../templates/post-build/post-build.yml | 8 +++---- global.json | 6 ++--- 9 files changed, 28 insertions(+), 48 deletions(-) diff --git a/NuGet.config b/NuGet.config index e5f66ab06..1bd49f5bf 100644 --- a/NuGet.config +++ b/NuGet.config @@ -9,18 +9,8 @@ - - - - - - - - - - @@ -33,18 +23,8 @@ - - - - - - - - - - diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 98eec13a7..b01ff8bb9 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -151,29 +151,29 @@ - + https://github.com/dotnet/arcade - 20ab70a74d52b68f4271bd946884e24049b14f83 + 2ce3f8c7b2614c2b19985b669ffcd934bc39ffd1 - + https://github.com/dotnet/arcade - 20ab70a74d52b68f4271bd946884e24049b14f83 + 2ce3f8c7b2614c2b19985b669ffcd934bc39ffd1 - + https://github.com/dotnet/arcade - 20ab70a74d52b68f4271bd946884e24049b14f83 + 2ce3f8c7b2614c2b19985b669ffcd934bc39ffd1 - + https://github.com/dotnet/arcade - 20ab70a74d52b68f4271bd946884e24049b14f83 + 2ce3f8c7b2614c2b19985b669ffcd934bc39ffd1 - + https://github.com/dotnet/arcade - 20ab70a74d52b68f4271bd946884e24049b14f83 + 2ce3f8c7b2614c2b19985b669ffcd934bc39ffd1 - + https://github.com/dotnet/arcade - 20ab70a74d52b68f4271bd946884e24049b14f83 + 2ce3f8c7b2614c2b19985b669ffcd934bc39ffd1 diff --git a/eng/Versions.props b/eng/Versions.props index ca6447be1..8e4e3eff8 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -12,10 +12,10 @@ - 8.0.0-beta.25263.4 - 8.0.0-beta.25263.4 - 8.0.0-beta.25263.4 - 8.0.0-beta.25263.4 + 8.0.0-beta.25310.3 + 8.0.0-beta.25310.3 + 8.0.0-beta.25310.3 + 8.0.0-beta.25310.3 4.5.0 4.9.0 diff --git a/eng/common/templates/job/execute-sdl.yml b/eng/common/templates/job/execute-sdl.yml index 28ccaaa48..7870f93bc 100644 --- a/eng/common/templates/job/execute-sdl.yml +++ b/eng/common/templates/job/execute-sdl.yml @@ -55,7 +55,7 @@ jobs: # If it's not devdiv, it's dnceng ${{ if ne(variables['System.TeamProject'], 'DevDiv') }}: name: $(DncEngInternalBuildPool) - demands: ImageOverride -equals windows.vs2022.amd64 + demands: ImageOverride -equals windows.vs2019.amd64 steps: - checkout: self clean: true diff --git a/eng/common/templates/job/onelocbuild.yml b/eng/common/templates/job/onelocbuild.yml index 404a36027..60ab00c4d 100644 --- a/eng/common/templates/job/onelocbuild.yml +++ b/eng/common/templates/job/onelocbuild.yml @@ -54,7 +54,7 @@ jobs: # If it's not devdiv, it's dnceng ${{ if ne(variables['System.TeamProject'], 'DevDiv') }}: name: $(DncEngInternalBuildPool) - demands: ImageOverride -equals windows.vs2022.amd64 + demands: ImageOverride -equals windows.vs2019.amd64 steps: - ${{ if ne(parameters.SkipLocProjectJsonGeneration, 'true') }}: diff --git a/eng/common/templates/job/publish-build-assets.yml b/eng/common/templates/job/publish-build-assets.yml index 043fe3d1c..cc2b346ba 100644 --- a/eng/common/templates/job/publish-build-assets.yml +++ b/eng/common/templates/job/publish-build-assets.yml @@ -59,7 +59,7 @@ jobs: # If it's not devdiv, it's dnceng ${{ if ne(variables['System.TeamProject'], 'DevDiv') }}: name: NetCore1ESPool-Publishing-Internal - demands: ImageOverride -equals windows.vs2022.amd64 + demands: ImageOverride -equals windows.vs2019.amd64 steps: - ${{ if and(eq(parameters.runAsPublic, 'false'), ne(variables['System.TeamProject'], 'public'), notin(variables['Build.Reason'], 'PullRequest')) }}: diff --git a/eng/common/templates/job/source-index-stage1.yml b/eng/common/templates/job/source-index-stage1.yml index 278c5fda1..8538f44ba 100644 --- a/eng/common/templates/job/source-index-stage1.yml +++ b/eng/common/templates/job/source-index-stage1.yml @@ -31,10 +31,10 @@ jobs: pool: ${{ if eq(variables['System.TeamProject'], 'public') }}: name: $(DncEngPublicBuildPool) - demands: ImageOverride -equals windows.vs2022.amd64.open + demands: ImageOverride -equals windows.vs2019.amd64.open ${{ if eq(variables['System.TeamProject'], 'internal') }}: name: $(DncEngInternalBuildPool) - demands: ImageOverride -equals windows.vs2022.amd64 + demands: ImageOverride -equals windows.vs2019.amd64 steps: - ${{ each preStep in parameters.preSteps }}: diff --git a/eng/common/templates/post-build/post-build.yml b/eng/common/templates/post-build/post-build.yml index 2c21839ab..c3b6a3012 100644 --- a/eng/common/templates/post-build/post-build.yml +++ b/eng/common/templates/post-build/post-build.yml @@ -108,7 +108,7 @@ stages: # If it's not devdiv, it's dnceng ${{ else }}: name: $(DncEngInternalBuildPool) - demands: ImageOverride -equals windows.vs2022.amd64 + demands: ImageOverride -equals windows.vs2019.amd64 steps: - template: setup-maestro-vars.yml @@ -145,7 +145,7 @@ stages: # If it's not devdiv, it's dnceng ${{ else }}: name: $(DncEngInternalBuildPool) - demands: ImageOverride -equals windows.vs2022.amd64 + demands: ImageOverride -equals windows.vs2019.amd64 steps: - template: setup-maestro-vars.yml parameters: @@ -199,7 +199,7 @@ stages: # If it's not devdiv, it's dnceng ${{ else }}: name: $(DncEngInternalBuildPool) - demands: ImageOverride -equals windows.vs2022.amd64 + demands: ImageOverride -equals windows.vs2019.amd64 steps: - template: setup-maestro-vars.yml parameters: @@ -259,7 +259,7 @@ stages: # If it's not devdiv, it's dnceng ${{ else }}: name: NetCore1ESPool-Publishing-Internal - demands: ImageOverride -equals windows.vs2022.amd64 + demands: ImageOverride -equals windows.vs2019.amd64 steps: - template: setup-maestro-vars.yml parameters: diff --git a/global.json b/global.json index 82b35667f..2e61e47aa 100644 --- a/global.json +++ b/global.json @@ -1,10 +1,10 @@ { "tools": { - "dotnet": "8.0.116" + "dotnet": "8.0.117" }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "8.0.0-beta.25263.4", - "Microsoft.DotNet.SharedFramework.Sdk": "8.0.0-beta.25263.4", + "Microsoft.DotNet.Arcade.Sdk": "8.0.0-beta.25310.3", + "Microsoft.DotNet.SharedFramework.Sdk": "8.0.0-beta.25310.3", "Microsoft.Build.NoTargets": "3.7.0", "Microsoft.Build.Traversal": "3.4.0" } From 01451792728dc4a73431ed55bab3cf47fa8c172c Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Fri, 13 Jun 2025 10:45:11 +0000 Subject: [PATCH 208/222] Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-wpf build 20250613.2 Microsoft.DotNet.Wpf.GitHub , Microsoft.DotNet.Wpf.ProjectTemplates , Microsoft.NET.Sdk.WindowsDesktop From Version 8.0.17-servicing.25266.9 -> To Version 8.0.18-servicing.25313.2 Dependency coherency updates Microsoft.Private.Winforms,Microsoft.Internal.Runtime.WindowsDesktop.Transport,Microsoft.Private.Winforms,Microsoft.NETCore.App.Ref,Microsoft.Private.Winforms,VS.Redist.Common.NetCore.SharedFramework.x64.8.0,Microsoft.Private.Winforms,Microsoft.NETCore.App.Runtime.win-x64,Microsoft.Dotnet.WinForms.ProjectTemplates,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,System.Drawing.Common From Version 8.0.17-servicing.25266.4 -> To Version 8.0.18-servicing.25312.3 (parent: Microsoft.DotNet.Wpf.GitHub --- NuGet.config | 13 ++++++++++--- eng/Version.Details.xml | 40 ++++++++++++++++++++-------------------- eng/Versions.props | 18 +++++++++--------- 3 files changed, 39 insertions(+), 32 deletions(-) diff --git a/NuGet.config b/NuGet.config index d80aa70d0..59c375a97 100644 --- a/NuGet.config +++ b/NuGet.config @@ -9,11 +9,14 @@ + + + + - - + @@ -26,10 +29,14 @@ + + + + - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 0aaffceab..d7632c16a 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,41 +1,41 @@ - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 77545d6fd5ca79bc08198fd6d8037c14843f14ad + ef853a71052646a42abf17e888ec6d9a69614ad9 - + https://dev.azure.com/dnceng/internal/_git/dotnet-winforms - f3291acee6a0b0b2340013b1320af91fe160096f + 92d43c655032c60ddf0b3727041e05c93055ee97 - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - 3385cf1d42f4e488140452369a247a4a16183ce4 + c8ef90c1fc2ee2778b82b40148c04cd4880e0c35 - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - 3385cf1d42f4e488140452369a247a4a16183ce4 + c8ef90c1fc2ee2778b82b40148c04cd4880e0c35 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 77545d6fd5ca79bc08198fd6d8037c14843f14ad + ef853a71052646a42abf17e888ec6d9a69614ad9 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 77545d6fd5ca79bc08198fd6d8037c14843f14ad + ef853a71052646a42abf17e888ec6d9a69614ad9 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 77545d6fd5ca79bc08198fd6d8037c14843f14ad + ef853a71052646a42abf17e888ec6d9a69614ad9 - + https://dev.azure.com/dnceng/internal/_git/dotnet-winforms - f3291acee6a0b0b2340013b1320af91fe160096f + 92d43c655032c60ddf0b3727041e05c93055ee97 - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - 3385cf1d42f4e488140452369a247a4a16183ce4 + c8ef90c1fc2ee2778b82b40148c04cd4880e0c35 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime @@ -145,9 +145,9 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime 5535e31a712343a63f5d7d796cd874e563e5ac14 - + https://dev.azure.com/dnceng/internal/_git/dotnet-winforms - f3291acee6a0b0b2340013b1320af91fe160096f + 92d43c655032c60ddf0b3727041e05c93055ee97 diff --git a/eng/Versions.props b/eng/Versions.props index 2e69b752b..7855e7aa4 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -25,9 +25,9 @@ 6.2.4 - 8.0.17-servicing.25266.2 - 8.0.17 - 8.0.17 + 8.0.18-servicing.25311.17 + 8.0.18 + 8.0.18 8.0.0 5.0.0 8.0.0 @@ -61,15 +61,15 @@ 8.0.0 8.0.0 8.0.0 - 8.0.17-servicing.25266.2 + 8.0.18-servicing.25311.17 4.10.3 - 8.0.17-servicing.25266.4 - 8.0.17-servicing.25266.4 - 8.0.17 + 8.0.18-servicing.25312.3 + 8.0.18-servicing.25312.3 + 8.0.18 - 8.0.17-servicing.25266.9 - 8.0.17-servicing.25266.9 + 8.0.18-servicing.25313.2 + 8.0.18-servicing.25313.2 From f97459c66dad443744bea68c9bfeffda811318ff Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Tue, 17 Jun 2025 15:34:31 +0000 Subject: [PATCH 209/222] Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-wpf build 20250617.3 Microsoft.DotNet.Wpf.GitHub , Microsoft.DotNet.Wpf.ProjectTemplates , Microsoft.NET.Sdk.WindowsDesktop From Version 8.0.18-servicing.25313.2 -> To Version 8.0.18-servicing.25317.3 --- NuGet.config | 8 -------- eng/Version.Details.xml | 12 ++++++------ eng/Versions.props | 4 ++-- 3 files changed, 8 insertions(+), 16 deletions(-) diff --git a/NuGet.config b/NuGet.config index 59c375a97..737f40013 100644 --- a/NuGet.config +++ b/NuGet.config @@ -10,10 +10,6 @@ - - - - @@ -29,10 +25,6 @@ - - - - diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index d7632c16a..5c0592b36 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -9,13 +9,13 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-winforms 92d43c655032c60ddf0b3727041e05c93055ee97 - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - c8ef90c1fc2ee2778b82b40148c04cd4880e0c35 + 480ddbb714f16a09b74e75cff57e1da769e9d82d - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - c8ef90c1fc2ee2778b82b40148c04cd4880e0c35 + 480ddbb714f16a09b74e75cff57e1da769e9d82d https://dev.azure.com/dnceng/internal/_git/dotnet-runtime @@ -33,9 +33,9 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-winforms 92d43c655032c60ddf0b3727041e05c93055ee97 - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - c8ef90c1fc2ee2778b82b40148c04cd4880e0c35 + 480ddbb714f16a09b74e75cff57e1da769e9d82d https://dev.azure.com/dnceng/internal/_git/dotnet-runtime diff --git a/eng/Versions.props b/eng/Versions.props index 7855e7aa4..093e39f96 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -69,7 +69,7 @@ 8.0.18-servicing.25312.3 8.0.18 - 8.0.18-servicing.25313.2 - 8.0.18-servicing.25313.2 + 8.0.18-servicing.25317.3 + 8.0.18-servicing.25317.3 From c4d46c07baee1b34b519424db469c4864852b6ae Mon Sep 17 00:00:00 2001 From: Sean Reeser Date: Thu, 3 Jul 2025 10:28:35 -0700 Subject: [PATCH 210/222] Update branding to 8.0.19 --- eng/Versions.props | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eng/Versions.props b/eng/Versions.props index 2e69b752b..03f4b040f 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -2,7 +2,7 @@ 8 0 - 18 + 19 servicing From a1de1736a245a1ce756ba63c243269414a40666e Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Mon, 7 Jul 2025 06:08:38 +0000 Subject: [PATCH 211/222] Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-wpf build 20250706.3 Microsoft.DotNet.Wpf.GitHub , Microsoft.DotNet.Wpf.ProjectTemplates , Microsoft.NET.Sdk.WindowsDesktop From Version 8.0.18-servicing.25317.3 -> To Version 8.0.19-servicing.25356.3 --- NuGet.config | 16 ++++++++++++++++ eng/Version.Details.xml | 12 ++++++------ eng/Versions.props | 4 ++-- 3 files changed, 24 insertions(+), 8 deletions(-) diff --git a/NuGet.config b/NuGet.config index 737f40013..e122df62c 100644 --- a/NuGet.config +++ b/NuGet.config @@ -10,9 +10,17 @@ + + + + + + + + @@ -25,9 +33,17 @@ + + + + + + + + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 5c0592b36..a32cab38e 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -9,13 +9,13 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-winforms 92d43c655032c60ddf0b3727041e05c93055ee97 - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - 480ddbb714f16a09b74e75cff57e1da769e9d82d + 6ab7f6e73faac65637b4077b98a71cfcd02fd3b3 - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - 480ddbb714f16a09b74e75cff57e1da769e9d82d + 6ab7f6e73faac65637b4077b98a71cfcd02fd3b3 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime @@ -33,9 +33,9 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-winforms 92d43c655032c60ddf0b3727041e05c93055ee97 - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - 480ddbb714f16a09b74e75cff57e1da769e9d82d + 6ab7f6e73faac65637b4077b98a71cfcd02fd3b3 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime diff --git a/eng/Versions.props b/eng/Versions.props index c4993289e..e7f081cc9 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -69,7 +69,7 @@ 8.0.18-servicing.25312.3 8.0.18 - 8.0.18-servicing.25317.3 - 8.0.18-servicing.25317.3 + 8.0.19-servicing.25356.3 + 8.0.19-servicing.25356.3 From f45aa8c531bebe5d9e242b0a8152cda594868acf Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Thu, 10 Jul 2025 21:54:36 +0000 Subject: [PATCH 212/222] Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-wpf build 20250710.4 Microsoft.DotNet.Wpf.GitHub , Microsoft.DotNet.Wpf.ProjectTemplates , Microsoft.NET.Sdk.WindowsDesktop From Version 8.0.18-servicing.25317.3 -> To Version 8.0.19-servicing.25360.4 Dependency coherency updates Microsoft.Private.Winforms,Microsoft.Internal.Runtime.WindowsDesktop.Transport,Microsoft.Private.Winforms,Microsoft.NETCore.App.Ref,Microsoft.Private.Winforms,VS.Redist.Common.NetCore.SharedFramework.x64.8.0,Microsoft.Private.Winforms,Microsoft.NETCore.App.Runtime.win-x64,Microsoft.Dotnet.WinForms.ProjectTemplates,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,System.Drawing.Common From Version 8.0.18-servicing.25312.3 -> To Version 8.0.19-servicing.25360.3 (parent: Microsoft.DotNet.Wpf.GitHub --- NuGet.config | 24 ++++-------------------- eng/Version.Details.xml | 40 ++++++++++++++++++++-------------------- eng/Versions.props | 18 +++++++++--------- 3 files changed, 33 insertions(+), 49 deletions(-) diff --git a/NuGet.config b/NuGet.config index e122df62c..d84fede70 100644 --- a/NuGet.config +++ b/NuGet.config @@ -9,18 +9,10 @@ - - - - - + - - - - - + @@ -33,18 +25,10 @@ - - - - - + - - - - - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index a32cab38e..8264e0572 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,41 +1,41 @@ - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - ef853a71052646a42abf17e888ec6d9a69614ad9 + 5d9419d7cc870d0c199a8e61c947fd1c63487623 - + https://dev.azure.com/dnceng/internal/_git/dotnet-winforms - 92d43c655032c60ddf0b3727041e05c93055ee97 + 22c99b20dfbfb693a0d0a7b5fc4f6527f36b500a - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - 6ab7f6e73faac65637b4077b98a71cfcd02fd3b3 + 975ab37614b1ffc61700c7f7234f4cb71a68a1fc - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - 6ab7f6e73faac65637b4077b98a71cfcd02fd3b3 + 975ab37614b1ffc61700c7f7234f4cb71a68a1fc - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - ef853a71052646a42abf17e888ec6d9a69614ad9 + 5d9419d7cc870d0c199a8e61c947fd1c63487623 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - ef853a71052646a42abf17e888ec6d9a69614ad9 + 5d9419d7cc870d0c199a8e61c947fd1c63487623 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - ef853a71052646a42abf17e888ec6d9a69614ad9 + 5d9419d7cc870d0c199a8e61c947fd1c63487623 - + https://dev.azure.com/dnceng/internal/_git/dotnet-winforms - 92d43c655032c60ddf0b3727041e05c93055ee97 + 22c99b20dfbfb693a0d0a7b5fc4f6527f36b500a - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - 6ab7f6e73faac65637b4077b98a71cfcd02fd3b3 + 975ab37614b1ffc61700c7f7234f4cb71a68a1fc https://dev.azure.com/dnceng/internal/_git/dotnet-runtime @@ -145,9 +145,9 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime 5535e31a712343a63f5d7d796cd874e563e5ac14 - + https://dev.azure.com/dnceng/internal/_git/dotnet-winforms - 92d43c655032c60ddf0b3727041e05c93055ee97 + 22c99b20dfbfb693a0d0a7b5fc4f6527f36b500a diff --git a/eng/Versions.props b/eng/Versions.props index e7f081cc9..428e5c10b 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -25,9 +25,9 @@ 6.2.4 - 8.0.18-servicing.25311.17 - 8.0.18 - 8.0.18 + 8.0.19-servicing.25359.23 + 8.0.19 + 8.0.19 8.0.0 5.0.0 8.0.0 @@ -61,15 +61,15 @@ 8.0.0 8.0.0 8.0.0 - 8.0.18-servicing.25311.17 + 8.0.19-servicing.25359.23 4.10.3 - 8.0.18-servicing.25312.3 - 8.0.18-servicing.25312.3 - 8.0.18 + 8.0.19-servicing.25360.3 + 8.0.19-servicing.25360.3 + 8.0.19 - 8.0.19-servicing.25356.3 - 8.0.19-servicing.25356.3 + 8.0.19-servicing.25360.4 + 8.0.19-servicing.25360.4 From fc4eea54303944e058533e33aa6c17cc70496383 Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Fri, 11 Jul 2025 10:23:04 +0000 Subject: [PATCH 213/222] Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-wpf build 20250711.1 Microsoft.DotNet.Wpf.GitHub , Microsoft.DotNet.Wpf.ProjectTemplates , Microsoft.NET.Sdk.WindowsDesktop From Version 8.0.18-servicing.25317.3 -> To Version 8.0.19-servicing.25361.1 Dependency coherency updates Microsoft.Private.Winforms,Microsoft.Internal.Runtime.WindowsDesktop.Transport,Microsoft.Private.Winforms,Microsoft.NETCore.App.Ref,Microsoft.Private.Winforms,VS.Redist.Common.NetCore.SharedFramework.x64.8.0,Microsoft.Private.Winforms,Microsoft.NETCore.App.Runtime.win-x64,Microsoft.Dotnet.WinForms.ProjectTemplates,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,System.Drawing.Common From Version 8.0.18-servicing.25312.3 -> To Version 8.0.19-servicing.25360.6 (parent: Microsoft.DotNet.Wpf.GitHub --- NuGet.config | 8 ++++---- eng/Version.Details.xml | 34 +++++++++++++++++----------------- eng/Versions.props | 12 ++++++------ 3 files changed, 27 insertions(+), 27 deletions(-) diff --git a/NuGet.config b/NuGet.config index d84fede70..8f04f633c 100644 --- a/NuGet.config +++ b/NuGet.config @@ -9,10 +9,10 @@ - + - + @@ -25,10 +25,10 @@ - + - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 8264e0572..eeb199b8a 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,41 +1,41 @@ - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 5d9419d7cc870d0c199a8e61c947fd1c63487623 + 653dfdfd75c3e98989361b4154703d13649be4cb - + https://dev.azure.com/dnceng/internal/_git/dotnet-winforms - 22c99b20dfbfb693a0d0a7b5fc4f6527f36b500a + ca7aee3837dded67261b8e1620e575e219885644 - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - 975ab37614b1ffc61700c7f7234f4cb71a68a1fc + 5588eeaad1ae8305c4cf34c4983fc24067af13ec - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - 975ab37614b1ffc61700c7f7234f4cb71a68a1fc + 5588eeaad1ae8305c4cf34c4983fc24067af13ec https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 5d9419d7cc870d0c199a8e61c947fd1c63487623 + 653dfdfd75c3e98989361b4154703d13649be4cb - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 5d9419d7cc870d0c199a8e61c947fd1c63487623 + 653dfdfd75c3e98989361b4154703d13649be4cb https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 5d9419d7cc870d0c199a8e61c947fd1c63487623 + 653dfdfd75c3e98989361b4154703d13649be4cb - + https://dev.azure.com/dnceng/internal/_git/dotnet-winforms - 22c99b20dfbfb693a0d0a7b5fc4f6527f36b500a + ca7aee3837dded67261b8e1620e575e219885644 - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - 975ab37614b1ffc61700c7f7234f4cb71a68a1fc + 5588eeaad1ae8305c4cf34c4983fc24067af13ec https://dev.azure.com/dnceng/internal/_git/dotnet-runtime @@ -147,7 +147,7 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-winforms - 22c99b20dfbfb693a0d0a7b5fc4f6527f36b500a + ca7aee3837dded67261b8e1620e575e219885644 diff --git a/eng/Versions.props b/eng/Versions.props index 428e5c10b..132e9e028 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -25,7 +25,7 @@ 6.2.4 - 8.0.19-servicing.25359.23 + 8.0.19-servicing.25360.7 8.0.19 8.0.19 8.0.0 @@ -61,15 +61,15 @@ 8.0.0 8.0.0 8.0.0 - 8.0.19-servicing.25359.23 + 8.0.19-servicing.25360.7 4.10.3 - 8.0.19-servicing.25360.3 - 8.0.19-servicing.25360.3 + 8.0.19-servicing.25360.6 + 8.0.19-servicing.25360.6 8.0.19 - 8.0.19-servicing.25360.4 - 8.0.19-servicing.25360.4 + 8.0.19-servicing.25361.1 + 8.0.19-servicing.25361.1 From 9cebf046fa16255d10e5f6efd6019ff12f31ab32 Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Fri, 18 Jul 2025 22:44:02 +0000 Subject: [PATCH 214/222] Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-wpf build 20250718.11 Microsoft.DotNet.Wpf.GitHub , Microsoft.DotNet.Wpf.ProjectTemplates , Microsoft.NET.Sdk.WindowsDesktop From Version 8.0.19-servicing.25361.1 -> To Version 8.0.19-servicing.25368.11 Dependency coherency updates Microsoft.Private.Winforms,Microsoft.Internal.Runtime.WindowsDesktop.Transport,Microsoft.Private.Winforms,Microsoft.NETCore.App.Ref,Microsoft.Private.Winforms,VS.Redist.Common.NetCore.SharedFramework.x64.8.0,Microsoft.Private.Winforms,Microsoft.NETCore.App.Runtime.win-x64,Microsoft.Dotnet.WinForms.ProjectTemplates,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,System.Drawing.Common From Version 8.0.19-servicing.25360.6 -> To Version 8.0.19-servicing.25367.3 (parent: Microsoft.DotNet.Wpf.GitHub --- NuGet.config | 8 ++++---- eng/Version.Details.xml | 34 +++++++++++++++++----------------- eng/Versions.props | 12 ++++++------ 3 files changed, 27 insertions(+), 27 deletions(-) diff --git a/NuGet.config b/NuGet.config index 8f04f633c..18912ffea 100644 --- a/NuGet.config +++ b/NuGet.config @@ -9,10 +9,10 @@ - + - + @@ -25,10 +25,10 @@ - + - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index eeb199b8a..f82014e26 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,41 +1,41 @@ - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 653dfdfd75c3e98989361b4154703d13649be4cb + fce8ed90dc43047eabec2b32c04ee46b789ad5d1 - + https://dev.azure.com/dnceng/internal/_git/dotnet-winforms - ca7aee3837dded67261b8e1620e575e219885644 + 1957eae58462d524ab5ba1ee3b335405082dc05f - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - 5588eeaad1ae8305c4cf34c4983fc24067af13ec + 43d1a9a5f6207405244e36ac6a2950c8050442f8 - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - 5588eeaad1ae8305c4cf34c4983fc24067af13ec + 43d1a9a5f6207405244e36ac6a2950c8050442f8 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 653dfdfd75c3e98989361b4154703d13649be4cb + fce8ed90dc43047eabec2b32c04ee46b789ad5d1 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 653dfdfd75c3e98989361b4154703d13649be4cb + fce8ed90dc43047eabec2b32c04ee46b789ad5d1 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 653dfdfd75c3e98989361b4154703d13649be4cb + fce8ed90dc43047eabec2b32c04ee46b789ad5d1 - + https://dev.azure.com/dnceng/internal/_git/dotnet-winforms - ca7aee3837dded67261b8e1620e575e219885644 + 1957eae58462d524ab5ba1ee3b335405082dc05f - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - 5588eeaad1ae8305c4cf34c4983fc24067af13ec + 43d1a9a5f6207405244e36ac6a2950c8050442f8 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime @@ -147,7 +147,7 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-winforms - ca7aee3837dded67261b8e1620e575e219885644 + 1957eae58462d524ab5ba1ee3b335405082dc05f diff --git a/eng/Versions.props b/eng/Versions.props index 132e9e028..156094002 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -25,7 +25,7 @@ 6.2.4 - 8.0.19-servicing.25360.7 + 8.0.19-servicing.25365.14 8.0.19 8.0.19 8.0.0 @@ -61,15 +61,15 @@ 8.0.0 8.0.0 8.0.0 - 8.0.19-servicing.25360.7 + 8.0.19-servicing.25365.14 4.10.3 - 8.0.19-servicing.25360.6 - 8.0.19-servicing.25360.6 + 8.0.19-servicing.25367.3 + 8.0.19-servicing.25367.3 8.0.19 - 8.0.19-servicing.25361.1 - 8.0.19-servicing.25361.1 + 8.0.19-servicing.25368.11 + 8.0.19-servicing.25368.11 From 716d252a321a33363b67a32414670d269fa77285 Mon Sep 17 00:00:00 2001 From: Sean Reeser Date: Mon, 4 Aug 2025 10:41:10 -0700 Subject: [PATCH 215/222] Update branding to 8.0.20 --- eng/Versions.props | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eng/Versions.props b/eng/Versions.props index c4993289e..3487e45cc 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -2,7 +2,7 @@ 8 0 - 19 + 20 servicing From d38228436ad52dd9d85df87bf8f1f17f25e1c6b1 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Fri, 8 Aug 2025 14:51:50 +0000 Subject: [PATCH 216/222] Update dependencies from https://github.com/dotnet/arcade build 20250807.1 Microsoft.DotNet.Arcade.Sdk , Microsoft.DotNet.Build.Tasks.Archives , Microsoft.DotNet.Build.Tasks.Feed , Microsoft.DotNet.Build.Tasks.Installers , Microsoft.DotNet.SharedFramework.Sdk , Microsoft.DotNet.VersionTools.Tasks From Version 8.0.0-beta.25310.3 -> To Version 8.0.0-beta.25407.1 --- NuGet.config | 8 ++++++++ eng/Version.Details.xml | 24 +++++++++++------------ eng/Versions.props | 8 ++++---- eng/common/templates-official/job/job.yml | 6 ++++++ eng/common/templates/job/job.yml | 4 ++++ eng/common/tools.ps1 | 2 +- global.json | 6 +++--- 7 files changed, 38 insertions(+), 20 deletions(-) diff --git a/NuGet.config b/NuGet.config index 18912ffea..00ab80ac1 100644 --- a/NuGet.config +++ b/NuGet.config @@ -10,9 +10,13 @@ + + + + @@ -25,9 +29,13 @@ + + + + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index f82014e26..8da47c029 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -151,29 +151,29 @@ - + https://github.com/dotnet/arcade - 2ce3f8c7b2614c2b19985b669ffcd934bc39ffd1 + a5ec3fab69ac440afe6764b2e046af6e8fcafa74 - + https://github.com/dotnet/arcade - 2ce3f8c7b2614c2b19985b669ffcd934bc39ffd1 + a5ec3fab69ac440afe6764b2e046af6e8fcafa74 - + https://github.com/dotnet/arcade - 2ce3f8c7b2614c2b19985b669ffcd934bc39ffd1 + a5ec3fab69ac440afe6764b2e046af6e8fcafa74 - + https://github.com/dotnet/arcade - 2ce3f8c7b2614c2b19985b669ffcd934bc39ffd1 + a5ec3fab69ac440afe6764b2e046af6e8fcafa74 - + https://github.com/dotnet/arcade - 2ce3f8c7b2614c2b19985b669ffcd934bc39ffd1 + a5ec3fab69ac440afe6764b2e046af6e8fcafa74 - + https://github.com/dotnet/arcade - 2ce3f8c7b2614c2b19985b669ffcd934bc39ffd1 + a5ec3fab69ac440afe6764b2e046af6e8fcafa74 diff --git a/eng/Versions.props b/eng/Versions.props index 25e532475..77f46a75f 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -12,10 +12,10 @@ - 8.0.0-beta.25310.3 - 8.0.0-beta.25310.3 - 8.0.0-beta.25310.3 - 8.0.0-beta.25310.3 + 8.0.0-beta.25407.1 + 8.0.0-beta.25407.1 + 8.0.0-beta.25407.1 + 8.0.0-beta.25407.1 4.5.0 4.9.0 diff --git a/eng/common/templates-official/job/job.yml b/eng/common/templates-official/job/job.yml index 98ccbd7a9..b98f6a650 100644 --- a/eng/common/templates-official/job/job.yml +++ b/eng/common/templates-official/job/job.yml @@ -21,6 +21,7 @@ parameters: # See schema documentation - https://github.com/dotnet/arcade/blob/master/Documentation/AzureDevOps/TemplateSchema.md artifacts: '' enableMicrobuild: false + microbuildUseESRP: true enablePublishBuildArtifacts: false enablePublishBuildAssets: false enablePublishTestResults: false @@ -135,6 +136,11 @@ jobs: signType: $(_SignType) zipSources: false feedSource: https://dnceng.pkgs.visualstudio.com/_packaging/MicroBuildToolset/nuget/v3/index.json + ${{ if eq(parameters.microbuildUseESRP, true) }}: + ${{ if eq(variables['System.TeamProject'], 'DevDiv') }}: + ConnectedPMEServiceName: 6cc74545-d7b9-4050-9dfa-ebefcc8961ea + ${{ else }}: + ConnectedPMEServiceName: 248d384a-b39b-46e3-8ad5-c2c210d5e7ca env: TeamName: $(_TeamName) MicroBuildOutputFolderOverride: '$(Agent.TempDirectory)' diff --git a/eng/common/templates/job/job.yml b/eng/common/templates/job/job.yml index e295031c0..2856f7de1 100644 --- a/eng/common/templates/job/job.yml +++ b/eng/common/templates/job/job.yml @@ -134,6 +134,10 @@ jobs: signType: $(_SignType) zipSources: false feedSource: https://dnceng.pkgs.visualstudio.com/_packaging/MicroBuildToolset/nuget/v3/index.json + ${{ if eq(variables['System.TeamProject'], 'DevDiv') }}: + ConnectedPMEServiceName: 6cc74545-d7b9-4050-9dfa-ebefcc8961ea + ${{ else }}: + ConnectedPMEServiceName: 248d384a-b39b-46e3-8ad5-c2c210d5e7ca env: TeamName: $(_TeamName) continueOnError: ${{ parameters.continueOnError }} diff --git a/eng/common/tools.ps1 b/eng/common/tools.ps1 index 82b2798ba..bb048ad12 100644 --- a/eng/common/tools.ps1 +++ b/eng/common/tools.ps1 @@ -417,7 +417,7 @@ function InitializeVisualStudioMSBuild([bool]$install, [object]$vsRequirements = # Locate Visual Studio installation or download x-copy msbuild. $vsInfo = LocateVisualStudio $vsRequirements - if ($vsInfo -ne $null) { + if ($vsInfo -ne $null -and $env:ForceUseXCopyMSBuild -eq $null) { # Ensure vsInstallDir has a trailing slash $vsInstallDir = Join-Path $vsInfo.installationPath "\" $vsMajorVersion = $vsInfo.installationVersion.Split('.')[0] diff --git a/global.json b/global.json index 2e61e47aa..d6f022f5c 100644 --- a/global.json +++ b/global.json @@ -1,10 +1,10 @@ { "tools": { - "dotnet": "8.0.117" + "dotnet": "8.0.119" }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "8.0.0-beta.25310.3", - "Microsoft.DotNet.SharedFramework.Sdk": "8.0.0-beta.25310.3", + "Microsoft.DotNet.Arcade.Sdk": "8.0.0-beta.25407.1", + "Microsoft.DotNet.SharedFramework.Sdk": "8.0.0-beta.25407.1", "Microsoft.Build.NoTargets": "3.7.0", "Microsoft.Build.Traversal": "3.4.0" } From 791a332cf13dc1eebf37a391c85922e001b1809c Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Wed, 13 Aug 2025 17:37:49 +0000 Subject: [PATCH 217/222] Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-wpf build 20250813.5 Microsoft.DotNet.Wpf.GitHub , Microsoft.DotNet.Wpf.ProjectTemplates , Microsoft.NET.Sdk.WindowsDesktop From Version 8.0.19-servicing.25368.11 -> To Version 8.0.20-servicing.25413.5 Dependency coherency updates Microsoft.Private.Winforms,Microsoft.Internal.Runtime.WindowsDesktop.Transport,Microsoft.Private.Winforms,Microsoft.NETCore.App.Ref,Microsoft.Private.Winforms,VS.Redist.Common.NetCore.SharedFramework.x64.8.0,Microsoft.Private.Winforms,Microsoft.NETCore.App.Runtime.win-x64,Microsoft.Dotnet.WinForms.ProjectTemplates,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,System.Drawing.Common From Version 8.0.19-servicing.25367.3 -> To Version 8.0.20-servicing.25412.5 (parent: Microsoft.DotNet.Wpf.GitHub --- NuGet.config | 8 ++++---- eng/Version.Details.xml | 40 ++++++++++++++++++++-------------------- eng/Versions.props | 18 +++++++++--------- 3 files changed, 33 insertions(+), 33 deletions(-) diff --git a/NuGet.config b/NuGet.config index 18912ffea..dfebf50f7 100644 --- a/NuGet.config +++ b/NuGet.config @@ -9,10 +9,10 @@ - + - + @@ -25,10 +25,10 @@ - + - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index f82014e26..889c4172e 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,41 +1,41 @@ - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - fce8ed90dc43047eabec2b32c04ee46b789ad5d1 + 6b12df1a810008460d16ef9bfd2cecb1a9a8c29f - + https://dev.azure.com/dnceng/internal/_git/dotnet-winforms - 1957eae58462d524ab5ba1ee3b335405082dc05f + 3f3da6b164de3b3b0f1448f8a05915715ba9aa12 - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - 43d1a9a5f6207405244e36ac6a2950c8050442f8 + 2d7eca6fab93a8568ab489034f975d937502322a - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - 43d1a9a5f6207405244e36ac6a2950c8050442f8 + 2d7eca6fab93a8568ab489034f975d937502322a - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - fce8ed90dc43047eabec2b32c04ee46b789ad5d1 + 6b12df1a810008460d16ef9bfd2cecb1a9a8c29f - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - fce8ed90dc43047eabec2b32c04ee46b789ad5d1 + 6b12df1a810008460d16ef9bfd2cecb1a9a8c29f - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - fce8ed90dc43047eabec2b32c04ee46b789ad5d1 + 6b12df1a810008460d16ef9bfd2cecb1a9a8c29f - + https://dev.azure.com/dnceng/internal/_git/dotnet-winforms - 1957eae58462d524ab5ba1ee3b335405082dc05f + 3f3da6b164de3b3b0f1448f8a05915715ba9aa12 - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - 43d1a9a5f6207405244e36ac6a2950c8050442f8 + 2d7eca6fab93a8568ab489034f975d937502322a https://dev.azure.com/dnceng/internal/_git/dotnet-runtime @@ -145,9 +145,9 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime 5535e31a712343a63f5d7d796cd874e563e5ac14 - + https://dev.azure.com/dnceng/internal/_git/dotnet-winforms - 1957eae58462d524ab5ba1ee3b335405082dc05f + 3f3da6b164de3b3b0f1448f8a05915715ba9aa12 diff --git a/eng/Versions.props b/eng/Versions.props index 25e532475..64a5ccdcc 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -25,9 +25,9 @@ 6.2.4 - 8.0.19-servicing.25365.14 - 8.0.19 - 8.0.19 + 8.0.20-servicing.25412.10 + 8.0.20 + 8.0.20 8.0.0 5.0.0 8.0.0 @@ -61,15 +61,15 @@ 8.0.0 8.0.0 8.0.0 - 8.0.19-servicing.25365.14 + 8.0.20-servicing.25412.10 4.10.3 - 8.0.19-servicing.25367.3 - 8.0.19-servicing.25367.3 - 8.0.19 + 8.0.20-servicing.25412.5 + 8.0.20-servicing.25412.5 + 8.0.20 - 8.0.19-servicing.25368.11 - 8.0.19-servicing.25368.11 + 8.0.20-servicing.25413.5 + 8.0.20-servicing.25413.5 From 211253af24578b7772a9287e11df5e67f19be74a Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Sat, 16 Aug 2025 03:36:52 +0000 Subject: [PATCH 218/222] Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-wpf build 20250815.2 Microsoft.DotNet.Wpf.GitHub , Microsoft.DotNet.Wpf.ProjectTemplates , Microsoft.NET.Sdk.WindowsDesktop From Version 8.0.20-servicing.25413.5 -> To Version 8.0.20-servicing.25415.2 Dependency coherency updates Microsoft.Private.Winforms,Microsoft.Internal.Runtime.WindowsDesktop.Transport,Microsoft.Private.Winforms,Microsoft.NETCore.App.Ref,Microsoft.Private.Winforms,VS.Redist.Common.NetCore.SharedFramework.x64.8.0,Microsoft.Private.Winforms,Microsoft.NETCore.App.Runtime.win-x64,Microsoft.Dotnet.WinForms.ProjectTemplates,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,System.Drawing.Common From Version 8.0.20-servicing.25412.5 -> To Version 8.0.20-servicing.25415.4 (parent: Microsoft.DotNet.Wpf.GitHub --- NuGet.config | 8 ++++---- eng/Version.Details.xml | 34 +++++++++++++++++----------------- eng/Versions.props | 12 ++++++------ 3 files changed, 27 insertions(+), 27 deletions(-) diff --git a/NuGet.config b/NuGet.config index dfebf50f7..c73fe4ba0 100644 --- a/NuGet.config +++ b/NuGet.config @@ -9,10 +9,10 @@ - + - + @@ -25,10 +25,10 @@ - + - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 889c4172e..358a3734d 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,41 +1,41 @@ - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 6b12df1a810008460d16ef9bfd2cecb1a9a8c29f + dd6010a8a425962e7793cc741e1f79f8681e4882 - + https://dev.azure.com/dnceng/internal/_git/dotnet-winforms - 3f3da6b164de3b3b0f1448f8a05915715ba9aa12 + de77bf5c9bfef9bf77cb581f854a905eaf395a91 - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - 2d7eca6fab93a8568ab489034f975d937502322a + 6d0860a9836d13b717b2bf679798d6de0cd15129 - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - 2d7eca6fab93a8568ab489034f975d937502322a + 6d0860a9836d13b717b2bf679798d6de0cd15129 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 6b12df1a810008460d16ef9bfd2cecb1a9a8c29f + dd6010a8a425962e7793cc741e1f79f8681e4882 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 6b12df1a810008460d16ef9bfd2cecb1a9a8c29f + dd6010a8a425962e7793cc741e1f79f8681e4882 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - 6b12df1a810008460d16ef9bfd2cecb1a9a8c29f + dd6010a8a425962e7793cc741e1f79f8681e4882 - + https://dev.azure.com/dnceng/internal/_git/dotnet-winforms - 3f3da6b164de3b3b0f1448f8a05915715ba9aa12 + de77bf5c9bfef9bf77cb581f854a905eaf395a91 - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - 2d7eca6fab93a8568ab489034f975d937502322a + 6d0860a9836d13b717b2bf679798d6de0cd15129 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime @@ -147,7 +147,7 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-winforms - 3f3da6b164de3b3b0f1448f8a05915715ba9aa12 + de77bf5c9bfef9bf77cb581f854a905eaf395a91 diff --git a/eng/Versions.props b/eng/Versions.props index 64a5ccdcc..91cb95164 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -25,7 +25,7 @@ 6.2.4 - 8.0.20-servicing.25412.10 + 8.0.20-servicing.25415.11 8.0.20 8.0.20 8.0.0 @@ -61,15 +61,15 @@ 8.0.0 8.0.0 8.0.0 - 8.0.20-servicing.25412.10 + 8.0.20-servicing.25415.11 4.10.3 - 8.0.20-servicing.25412.5 - 8.0.20-servicing.25412.5 + 8.0.20-servicing.25415.4 + 8.0.20-servicing.25415.4 8.0.20 - 8.0.20-servicing.25413.5 - 8.0.20-servicing.25413.5 + 8.0.20-servicing.25415.2 + 8.0.20-servicing.25415.2 From f0e944fd6def0eb592160cebb070ba304ba695aa Mon Sep 17 00:00:00 2001 From: DotNet-Bot Date: Wed, 20 Aug 2025 08:56:08 +0000 Subject: [PATCH 219/222] Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-wpf build 20250820.2 Microsoft.DotNet.Wpf.GitHub , Microsoft.DotNet.Wpf.ProjectTemplates , Microsoft.NET.Sdk.WindowsDesktop From Version 8.0.20-servicing.25415.2 -> To Version 8.0.20-servicing.25420.2 Dependency coherency updates Microsoft.Private.Winforms,Microsoft.Internal.Runtime.WindowsDesktop.Transport,Microsoft.Private.Winforms,Microsoft.NETCore.App.Ref,Microsoft.Private.Winforms,VS.Redist.Common.NetCore.SharedFramework.x64.8.0,Microsoft.Private.Winforms,Microsoft.NETCore.App.Runtime.win-x64,Microsoft.Dotnet.WinForms.ProjectTemplates,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,Microsoft.Private.Winforms,System.Drawing.Common From Version 8.0.20-servicing.25415.4 -> To Version 8.0.20-servicing.25419.4 (parent: Microsoft.DotNet.Wpf.GitHub --- NuGet.config | 8 ++++---- eng/Version.Details.xml | 34 +++++++++++++++++----------------- eng/Versions.props | 12 ++++++------ 3 files changed, 27 insertions(+), 27 deletions(-) diff --git a/NuGet.config b/NuGet.config index c73fe4ba0..dba151e14 100644 --- a/NuGet.config +++ b/NuGet.config @@ -9,10 +9,10 @@ - + - + @@ -25,10 +25,10 @@ - + - + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 358a3734d..e355de734 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -1,41 +1,41 @@ - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - dd6010a8a425962e7793cc741e1f79f8681e4882 + 574100b692e71fa3426931adf4c1ba42e4ee5213 - + https://dev.azure.com/dnceng/internal/_git/dotnet-winforms - de77bf5c9bfef9bf77cb581f854a905eaf395a91 + 8dbcd442e337f1b9b07e689b0252b37051e5b99f - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - 6d0860a9836d13b717b2bf679798d6de0cd15129 + 7b95ca673ef08b7325429a3b675184b815482564 - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - 6d0860a9836d13b717b2bf679798d6de0cd15129 + 7b95ca673ef08b7325429a3b675184b815482564 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - dd6010a8a425962e7793cc741e1f79f8681e4882 + 574100b692e71fa3426931adf4c1ba42e4ee5213 - + https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - dd6010a8a425962e7793cc741e1f79f8681e4882 + 574100b692e71fa3426931adf4c1ba42e4ee5213 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime - dd6010a8a425962e7793cc741e1f79f8681e4882 + 574100b692e71fa3426931adf4c1ba42e4ee5213 - + https://dev.azure.com/dnceng/internal/_git/dotnet-winforms - de77bf5c9bfef9bf77cb581f854a905eaf395a91 + 8dbcd442e337f1b9b07e689b0252b37051e5b99f - + https://dev.azure.com/dnceng/internal/_git/dotnet-wpf - 6d0860a9836d13b717b2bf679798d6de0cd15129 + 7b95ca673ef08b7325429a3b675184b815482564 https://dev.azure.com/dnceng/internal/_git/dotnet-runtime @@ -147,7 +147,7 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-winforms - de77bf5c9bfef9bf77cb581f854a905eaf395a91 + 8dbcd442e337f1b9b07e689b0252b37051e5b99f diff --git a/eng/Versions.props b/eng/Versions.props index 91cb95164..ac45bdd5a 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -25,7 +25,7 @@ 6.2.4 - 8.0.20-servicing.25415.11 + 8.0.20-servicing.25419.14 8.0.20 8.0.20 8.0.0 @@ -61,15 +61,15 @@ 8.0.0 8.0.0 8.0.0 - 8.0.20-servicing.25415.11 + 8.0.20-servicing.25419.14 4.10.3 - 8.0.20-servicing.25415.4 - 8.0.20-servicing.25415.4 + 8.0.20-servicing.25419.4 + 8.0.20-servicing.25419.4 8.0.20 - 8.0.20-servicing.25415.2 - 8.0.20-servicing.25415.2 + 8.0.20-servicing.25420.2 + 8.0.20-servicing.25420.2 From d70d0f45e36830cb77bd4ecdaf9d93790ff1073a Mon Sep 17 00:00:00 2001 From: Sean Reeser Date: Tue, 2 Sep 2025 09:36:07 -0700 Subject: [PATCH 220/222] Update branding to 8.0.21 --- eng/Versions.props | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eng/Versions.props b/eng/Versions.props index 77f46a75f..1731932d0 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -2,7 +2,7 @@ 8 0 - 20 + 21 servicing From 27af1b95ac9a84fc5e4251e2b0d19156c5d45f40 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Fri, 12 Sep 2025 21:28:14 +0000 Subject: [PATCH 221/222] [release/8.0] Update dependencies from dotnet/arcade (#5259) [release/8.0] Update dependencies from dotnet/arcade --- NuGet.config | 16 +++++++++++++ eng/Version.Details.xml | 24 +++++++++---------- eng/Versions.props | 8 +++---- eng/common/SetupNugetSources.ps1 | 4 ++-- eng/common/SetupNugetSources.sh | 4 ++-- eng/common/templates-official/job/job.yml | 12 +++++----- .../templates-official/job/onelocbuild.yml | 6 ++--- .../job/publish-build-assets.yml | 13 ++++++---- .../templates-official/job/source-build.yml | 4 ++++ .../job/source-index-stage1.yml | 2 +- .../templates-official/jobs/codeql-build.yml | 2 +- eng/common/templates-official/jobs/jobs.yml | 2 ++ .../templates-official/jobs/source-build.yml | 5 ++++ .../post-build/post-build.yml | 8 +++---- .../post-build/trigger-subscription.yml | 2 +- .../steps/add-build-to-channel.yml | 2 +- .../templates-official/steps/execute-sdl.yml | 14 +++++------ .../steps/generate-sbom.yml | 2 +- .../templates-official/steps/publish-logs.yml | 6 ++--- .../templates-official/steps/source-build.yml | 14 +++++++---- .../variables/sdl-variables.yml | 2 +- eng/common/templates/job/job.yml | 12 +++++----- eng/common/templates/job/onelocbuild.yml | 6 ++--- .../templates/job/publish-build-assets.yml | 13 ++++++---- eng/common/templates/job/source-build.yml | 4 ++++ .../templates/job/source-index-stage1.yml | 2 +- eng/common/templates/jobs/codeql-build.yml | 2 +- eng/common/templates/jobs/jobs.yml | 2 ++ eng/common/templates/jobs/source-build.yml | 5 ++++ .../templates/post-build/post-build.yml | 8 +++---- .../post-build/setup-maestro-vars.yml | 2 +- .../post-build/trigger-subscription.yml | 2 +- .../templates/steps/add-build-to-channel.yml | 2 +- eng/common/templates/steps/execute-sdl.yml | 14 +++++------ eng/common/templates/steps/generate-sbom.yml | 2 +- eng/common/templates/steps/publish-logs.yml | 6 ++--- eng/common/templates/steps/source-build.yml | 14 +++++++---- .../templates/variables/sdl-variables.yml | 2 +- global.json | 6 ++--- 39 files changed, 158 insertions(+), 98 deletions(-) diff --git a/NuGet.config b/NuGet.config index dba151e14..586b30681 100644 --- a/NuGet.config +++ b/NuGet.config @@ -10,9 +10,17 @@ + + + + + + + + @@ -25,9 +33,17 @@ + + + + + + + + diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 726d4f487..922836f4a 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -151,29 +151,29 @@ - + https://github.com/dotnet/arcade - a5ec3fab69ac440afe6764b2e046af6e8fcafa74 + 958612453c58fd32328461580b19ce5ecf4aedd2 - + https://github.com/dotnet/arcade - a5ec3fab69ac440afe6764b2e046af6e8fcafa74 + 958612453c58fd32328461580b19ce5ecf4aedd2 - + https://github.com/dotnet/arcade - a5ec3fab69ac440afe6764b2e046af6e8fcafa74 + 958612453c58fd32328461580b19ce5ecf4aedd2 - + https://github.com/dotnet/arcade - a5ec3fab69ac440afe6764b2e046af6e8fcafa74 + 958612453c58fd32328461580b19ce5ecf4aedd2 - + https://github.com/dotnet/arcade - a5ec3fab69ac440afe6764b2e046af6e8fcafa74 + 958612453c58fd32328461580b19ce5ecf4aedd2 - + https://github.com/dotnet/arcade - a5ec3fab69ac440afe6764b2e046af6e8fcafa74 + 958612453c58fd32328461580b19ce5ecf4aedd2 diff --git a/eng/Versions.props b/eng/Versions.props index 13c52a18b..d8d29ff77 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -12,10 +12,10 @@ - 8.0.0-beta.25407.1 - 8.0.0-beta.25407.1 - 8.0.0-beta.25407.1 - 8.0.0-beta.25407.1 + 8.0.0-beta.25461.1 + 8.0.0-beta.25461.1 + 8.0.0-beta.25461.1 + 8.0.0-beta.25461.1 4.5.0 4.9.0 diff --git a/eng/common/SetupNugetSources.ps1 b/eng/common/SetupNugetSources.ps1 index efa2fd72b..59b2d55e1 100644 --- a/eng/common/SetupNugetSources.ps1 +++ b/eng/common/SetupNugetSources.ps1 @@ -17,8 +17,8 @@ # displayName: Setup Private Feeds Credentials # condition: eq(variables['Agent.OS'], 'Windows_NT') # inputs: -# filePath: $(Build.SourcesDirectory)/eng/common/SetupNugetSources.ps1 -# arguments: -ConfigFile $(Build.SourcesDirectory)/NuGet.config -Password $Env:Token +# filePath: $(System.DefaultWorkingDirectory)/eng/common/SetupNugetSources.ps1 +# arguments: -ConfigFile $(System.DefaultWorkingDirectory)/NuGet.config -Password $Env:Token # env: # Token: $(dn-bot-dnceng-artifact-feeds-rw) diff --git a/eng/common/SetupNugetSources.sh b/eng/common/SetupNugetSources.sh index d387c7eac..c0e7bbef2 100644 --- a/eng/common/SetupNugetSources.sh +++ b/eng/common/SetupNugetSources.sh @@ -18,8 +18,8 @@ # - task: Bash@3 # displayName: Setup Private Feeds Credentials # inputs: -# filePath: $(Build.SourcesDirectory)/eng/common/SetupNugetSources.sh -# arguments: $(Build.SourcesDirectory)/NuGet.config $Token +# filePath: $(System.DefaultWorkingDirectory)/eng/common/SetupNugetSources.sh +# arguments: $(System.DefaultWorkingDirectory)/NuGet.config $Token # condition: ne(variables['Agent.OS'], 'Windows_NT') # env: # Token: $(dn-bot-dnceng-artifact-feeds-rw) diff --git a/eng/common/templates-official/job/job.yml b/eng/common/templates-official/job/job.yml index b98f6a650..4cca1114f 100644 --- a/eng/common/templates-official/job/job.yml +++ b/eng/common/templates-official/job/job.yml @@ -38,7 +38,7 @@ parameters: # Sbom related params enableSbom: true PackageVersion: 7.0.0 - BuildDropPath: '$(Build.SourcesDirectory)/artifacts' + BuildDropPath: '$(System.DefaultWorkingDirectory)/artifacts' ManifestDirPath: $(Build.ArtifactStagingDirectory)/sbom jobs: @@ -167,7 +167,7 @@ jobs: inputs: languages: ${{ coalesce(parameters.richCodeNavigationLanguage, 'csharp') }} environment: ${{ coalesce(parameters.richCodeNavigationEnvironment, 'production') }} - richNavLogOutputDirectory: $(Build.SourcesDirectory)/artifacts/bin + richNavLogOutputDirectory: $(System.DefaultWorkingDirectory)/artifacts/bin uploadRichNavArtifacts: ${{ coalesce(parameters.richCodeNavigationUploadArtifacts, false) }} continueOnError: true @@ -226,7 +226,7 @@ jobs: - task: 1ES.PublishBuildArtifacts@1 displayName: Publish Logs inputs: - PathtoPublish: '$(Build.SourcesDirectory)/artifacts/log/$(_BuildConfig)' + PathtoPublish: '$(System.DefaultWorkingDirectory)/artifacts/log/$(_BuildConfig)' PublishLocation: Container ArtifactName: ${{ coalesce(parameters.enablePublishBuildArtifacts.artifactName, '$(Agent.Os)_$(Agent.JobName)' ) }} continueOnError: true @@ -238,7 +238,7 @@ jobs: inputs: testResultsFormat: 'xUnit' testResultsFiles: '*.xml' - searchFolder: '$(Build.SourcesDirectory)/artifacts/TestResults/$(_BuildConfig)' + searchFolder: '$(System.DefaultWorkingDirectory)/artifacts/TestResults/$(_BuildConfig)' testRunTitle: ${{ coalesce(parameters.testRunTitle, parameters.name, '$(System.JobName)') }}-xunit mergeTestResults: ${{ parameters.mergeTestResults }} continueOnError: true @@ -249,7 +249,7 @@ jobs: inputs: testResultsFormat: 'VSTest' testResultsFiles: '*.trx' - searchFolder: '$(Build.SourcesDirectory)/artifacts/TestResults/$(_BuildConfig)' + searchFolder: '$(System.DefaultWorkingDirectory)/artifacts/TestResults/$(_BuildConfig)' testRunTitle: ${{ coalesce(parameters.testRunTitle, parameters.name, '$(System.JobName)') }}-trx mergeTestResults: ${{ parameters.mergeTestResults }} continueOnError: true @@ -265,7 +265,7 @@ jobs: - ${{ if eq(parameters.enableBuildRetry, 'true') }}: - task: 1ES.PublishPipelineArtifact@1 inputs: - targetPath: '$(Build.SourcesDirectory)\eng\common\BuildConfiguration' + targetPath: '$(System.DefaultWorkingDirectory)\eng\common\BuildConfiguration' artifactName: 'BuildConfiguration' displayName: 'Publish build retry configuration' continueOnError: true diff --git a/eng/common/templates-official/job/onelocbuild.yml b/eng/common/templates-official/job/onelocbuild.yml index 52b4d05d3..68e7a6560 100644 --- a/eng/common/templates-official/job/onelocbuild.yml +++ b/eng/common/templates-official/job/onelocbuild.yml @@ -8,7 +8,7 @@ parameters: CeapexPat: $(dn-bot-ceapex-package-r) # PAT for the loc AzDO instance https://dev.azure.com/ceapex GithubPat: $(BotAccount-dotnet-bot-repo-PAT) - SourcesDirectory: $(Build.SourcesDirectory) + SourcesDirectory: $(System.DefaultWorkingDirectory) CreatePr: true AutoCompletePr: false ReusePr: true @@ -63,7 +63,7 @@ jobs: - ${{ if ne(parameters.SkipLocProjectJsonGeneration, 'true') }}: - task: Powershell@2 inputs: - filePath: $(Build.SourcesDirectory)/eng/common/generate-locproject.ps1 + filePath: $(System.DefaultWorkingDirectory)/eng/common/generate-locproject.ps1 arguments: $(_GenerateLocProjectArguments) displayName: Generate LocProject.json condition: ${{ parameters.condition }} @@ -106,7 +106,7 @@ jobs: - task: 1ES.PublishBuildArtifacts@1 displayName: Publish LocProject.json inputs: - PathtoPublish: '$(Build.SourcesDirectory)/eng/Localize/' + PathtoPublish: '$(System.DefaultWorkingDirectory)/eng/Localize/' PublishLocation: Container ArtifactName: Loc condition: ${{ parameters.condition }} \ No newline at end of file diff --git a/eng/common/templates-official/job/publish-build-assets.yml b/eng/common/templates-official/job/publish-build-assets.yml index b2ccd9df6..7a320e9ba 100644 --- a/eng/common/templates-official/job/publish-build-assets.yml +++ b/eng/common/templates-official/job/publish-build-assets.yml @@ -30,6 +30,8 @@ parameters: signingValidationAdditionalParameters: '' + repositoryAlias: self + jobs: - job: Asset_Registry_Publish @@ -65,6 +67,9 @@ jobs: os: windows steps: - ${{ if and(eq(parameters.runAsPublic, 'false'), ne(variables['System.TeamProject'], 'public'), notin(variables['Build.Reason'], 'PullRequest')) }}: + - checkout: ${{ parameters.repositoryAlias }} + fetchDepth: 3 + clean: true - task: DownloadBuildArtifacts@0 displayName: Download artifact inputs: @@ -82,7 +87,7 @@ jobs: azureSubscription: "Darc: Maestro Production" scriptType: ps scriptLocation: scriptPath - scriptPath: $(Build.SourcesDirectory)/eng/common/sdk-task.ps1 + scriptPath: $(System.DefaultWorkingDirectory)/eng/common/sdk-task.ps1 arguments: > -task PublishBuildAssets -restore -msbuildEngine dotnet /p:ManifestsPath='$(Build.StagingDirectory)/Download/AssetManifests' @@ -115,7 +120,7 @@ jobs: inputs: targetType: inline script: | - $symbolExclusionfile = "$(Build.SourcesDirectory)/eng/SymbolPublishingExclusionsFile.txt" + $symbolExclusionfile = "$(System.DefaultWorkingDirectory)/eng/SymbolPublishingExclusionsFile.txt" if(Test-Path -Path $symbolExclusionfile) { Write-Host "SymbolExclusionFile exists" @@ -130,7 +135,7 @@ jobs: displayName: Publish SymbolPublishingExclusionsFile Artifact condition: eq(variables['SymbolExclusionFile'], 'true') inputs: - PathtoPublish: '$(Build.SourcesDirectory)/eng/SymbolPublishingExclusionsFile.txt' + PathtoPublish: '$(System.DefaultWorkingDirectory)/eng/SymbolPublishingExclusionsFile.txt' PublishLocation: Container ArtifactName: ReleaseConfigs @@ -146,7 +151,7 @@ jobs: azureSubscription: "Darc: Maestro Production" scriptType: ps scriptLocation: scriptPath - scriptPath: $(Build.SourcesDirectory)/eng/common/post-build/publish-using-darc.ps1 + scriptPath: $(System.DefaultWorkingDirectory)/eng/common/post-build/publish-using-darc.ps1 arguments: -BuildId $(BARBuildId) -PublishingInfraVersion 3 -AzdoToken '$(System.AccessToken)' diff --git a/eng/common/templates-official/job/source-build.yml b/eng/common/templates-official/job/source-build.yml index 4217d6d8b..7b9c58a90 100644 --- a/eng/common/templates-official/job/source-build.yml +++ b/eng/common/templates-official/job/source-build.yml @@ -31,6 +31,9 @@ parameters: # container and pool. platform: {} + # Optional list of directories to ignore for component governance scans. + cgIgnoreDirectories: [] + # If set to true and running on a non-public project, # Internal blob storage locations will be enabled. # This is not enabled by default because many repositories do not need internal sources @@ -73,3 +76,4 @@ jobs: - template: /eng/common/templates-official/steps/source-build.yml parameters: platform: ${{ parameters.platform }} + cgIgnoreDirectories: ${{ parameters.cgIgnoreDirectories }} diff --git a/eng/common/templates-official/job/source-index-stage1.yml b/eng/common/templates-official/job/source-index-stage1.yml index fb632b71a..0579e692f 100644 --- a/eng/common/templates-official/job/source-index-stage1.yml +++ b/eng/common/templates-official/job/source-index-stage1.yml @@ -59,7 +59,7 @@ jobs: - script: ${{ parameters.sourceIndexBuildCommand }} displayName: Build Repository - - script: $(Agent.TempDirectory)/.source-index/tools/BinLogToSln -i $(BinlogPath) -r $(Build.SourcesDirectory) -n $(Build.Repository.Name) -o .source-index/stage1output + - script: $(Agent.TempDirectory)/.source-index/tools/BinLogToSln -i $(BinlogPath) -r $(System.DefaultWorkingDirectory) -n $(Build.Repository.Name) -o .source-index/stage1output displayName: Process Binlog into indexable sln - ${{ if and(eq(parameters.runAsPublic, 'false'), ne(variables['System.TeamProject'], 'public'), notin(variables['Build.Reason'], 'PullRequest')) }}: diff --git a/eng/common/templates-official/jobs/codeql-build.yml b/eng/common/templates-official/jobs/codeql-build.yml index b68d3c2f3..f6476912a 100644 --- a/eng/common/templates-official/jobs/codeql-build.yml +++ b/eng/common/templates-official/jobs/codeql-build.yml @@ -23,7 +23,7 @@ jobs: - name: DefaultGuardianVersion value: 0.109.0 - name: GuardianPackagesConfigFile - value: $(Build.SourcesDirectory)\eng\common\sdl\packages.config + value: $(System.DefaultWorkingDirectory)\eng\common\sdl\packages.config - name: GuardianVersion value: ${{ coalesce(parameters.overrideGuardianVersion, '$(DefaultGuardianVersion)') }} diff --git a/eng/common/templates-official/jobs/jobs.yml b/eng/common/templates-official/jobs/jobs.yml index 857a0f8ba..803a95aac 100644 --- a/eng/common/templates-official/jobs/jobs.yml +++ b/eng/common/templates-official/jobs/jobs.yml @@ -40,6 +40,7 @@ parameters: enableSourceIndex: false sourceIndexParams: {} + repositoryAlias: self # Internal resources (telemetry, microbuild) can only be accessed from non-public projects, # and some (Microbuild) should only be applied to non-PR cases for internal builds. @@ -95,3 +96,4 @@ jobs: enablePublishBuildArtifacts: ${{ parameters.enablePublishBuildArtifacts }} artifactsPublishingAdditionalParameters: ${{ parameters.artifactsPublishingAdditionalParameters }} signingValidationAdditionalParameters: ${{ parameters.signingValidationAdditionalParameters }} + repositoryAlias: ${{ parameters.repositoryAlias }} diff --git a/eng/common/templates-official/jobs/source-build.yml b/eng/common/templates-official/jobs/source-build.yml index b9247be15..21a346fbd 100644 --- a/eng/common/templates-official/jobs/source-build.yml +++ b/eng/common/templates-official/jobs/source-build.yml @@ -21,6 +21,9 @@ parameters: # one job runs on 'defaultManagedPlatform'. platforms: [] + # Optional list of directories to ignore for component governance scans. + cgIgnoreDirectories: [] + # If set to true and running on a non-public project, # Internal nuget and blob storage locations will be enabled. # This is not enabled by default because many repositories do not need internal sources @@ -44,6 +47,7 @@ jobs: parameters: jobNamePrefix: ${{ parameters.jobNamePrefix }} platform: ${{ platform }} + cgIgnoreDirectories: ${{ parameters.cgIgnoreDirectories }} enableInternalSources: ${{ parameters.enableInternalSources }} - ${{ if eq(length(parameters.platforms), 0) }}: @@ -51,4 +55,5 @@ jobs: parameters: jobNamePrefix: ${{ parameters.jobNamePrefix }} platform: ${{ parameters.defaultManagedPlatform }} + cgIgnoreDirectories: ${{ parameters.cgIgnoreDirectories }} enableInternalSources: ${{ parameters.enableInternalSources }} diff --git a/eng/common/templates-official/post-build/post-build.yml b/eng/common/templates-official/post-build/post-build.yml index b81b8770b..9fef81039 100644 --- a/eng/common/templates-official/post-build/post-build.yml +++ b/eng/common/templates-official/post-build/post-build.yml @@ -133,7 +133,7 @@ stages: - task: PowerShell@2 displayName: Validate inputs: - filePath: $(Build.SourcesDirectory)/eng/common/post-build/nuget-validation.ps1 + filePath: $(System.DefaultWorkingDirectory)/eng/common/post-build/nuget-validation.ps1 arguments: -PackagesPath $(Build.ArtifactStagingDirectory)/PackageArtifacts/ -ToolDestinationPath $(Agent.BuildDirectory)/Extract/ @@ -186,7 +186,7 @@ stages: filePath: eng\common\sdk-task.ps1 arguments: -task SigningValidation -restore -msbuildEngine vs /p:PackageBasePath='$(Build.ArtifactStagingDirectory)/PackageArtifacts' - /p:SignCheckExclusionsFile='$(Build.SourcesDirectory)/eng/SignCheckExclusionsFile.txt' + /p:SignCheckExclusionsFile='$(System.DefaultWorkingDirectory)/eng/SignCheckExclusionsFile.txt' ${{ parameters.signingValidationAdditionalParameters }} - template: ../steps/publish-logs.yml @@ -230,7 +230,7 @@ stages: - task: PowerShell@2 displayName: Validate inputs: - filePath: $(Build.SourcesDirectory)/eng/common/post-build/sourcelink-validation.ps1 + filePath: $(System.DefaultWorkingDirectory)/eng/common/post-build/sourcelink-validation.ps1 arguments: -InputPath $(Build.ArtifactStagingDirectory)/BlobArtifacts/ -ExtractPath $(Agent.BuildDirectory)/Extract/ -GHRepoName $(Build.Repository.Name) @@ -278,7 +278,7 @@ stages: azureSubscription: "Darc: Maestro Production" scriptType: ps scriptLocation: scriptPath - scriptPath: $(Build.SourcesDirectory)/eng/common/post-build/publish-using-darc.ps1 + scriptPath: $(System.DefaultWorkingDirectory)/eng/common/post-build/publish-using-darc.ps1 arguments: -BuildId $(BARBuildId) -PublishingInfraVersion ${{ parameters.publishingInfraVersion }} -AzdoToken '$(System.AccessToken)' diff --git a/eng/common/templates-official/post-build/trigger-subscription.yml b/eng/common/templates-official/post-build/trigger-subscription.yml index da669030d..52df70774 100644 --- a/eng/common/templates-official/post-build/trigger-subscription.yml +++ b/eng/common/templates-official/post-build/trigger-subscription.yml @@ -5,7 +5,7 @@ steps: - task: PowerShell@2 displayName: Triggering subscriptions inputs: - filePath: $(Build.SourcesDirectory)/eng/common/post-build/trigger-subscriptions.ps1 + filePath: $(System.DefaultWorkingDirectory)/eng/common/post-build/trigger-subscriptions.ps1 arguments: -SourceRepo $(Build.Repository.Uri) -ChannelId ${{ parameters.ChannelId }} -MaestroApiAccessToken $(MaestroAccessToken) diff --git a/eng/common/templates-official/steps/add-build-to-channel.yml b/eng/common/templates-official/steps/add-build-to-channel.yml index f67a210d6..5b6fec257 100644 --- a/eng/common/templates-official/steps/add-build-to-channel.yml +++ b/eng/common/templates-official/steps/add-build-to-channel.yml @@ -5,7 +5,7 @@ steps: - task: PowerShell@2 displayName: Add Build to Channel inputs: - filePath: $(Build.SourcesDirectory)/eng/common/post-build/add-build-to-channel.ps1 + filePath: $(System.DefaultWorkingDirectory)/eng/common/post-build/add-build-to-channel.ps1 arguments: -BuildId $(BARBuildId) -ChannelId ${{ parameters.ChannelId }} -MaestroApiAccessToken $(MaestroApiAccessToken) diff --git a/eng/common/templates-official/steps/execute-sdl.yml b/eng/common/templates-official/steps/execute-sdl.yml index 301d5c591..d9dcd1e1c 100644 --- a/eng/common/templates-official/steps/execute-sdl.yml +++ b/eng/common/templates-official/steps/execute-sdl.yml @@ -15,17 +15,17 @@ steps: - ${{ if ne(parameters.overrideGuardianVersion, '') }}: - pwsh: | - Set-Location -Path $(Build.SourcesDirectory)\eng\common\sdl + Set-Location -Path $(System.DefaultWorkingDirectory)\eng\common\sdl . .\sdl.ps1 - $guardianCliLocation = Install-Gdn -Path $(Build.SourcesDirectory)\.artifacts -Version ${{ parameters.overrideGuardianVersion }} + $guardianCliLocation = Install-Gdn -Path $(System.DefaultWorkingDirectory)\.artifacts -Version ${{ parameters.overrideGuardianVersion }} Write-Host "##vso[task.setvariable variable=GuardianCliLocation]$guardianCliLocation" displayName: Install Guardian (Overridden) - ${{ if eq(parameters.overrideGuardianVersion, '') }}: - pwsh: | - Set-Location -Path $(Build.SourcesDirectory)\eng\common\sdl + Set-Location -Path $(System.DefaultWorkingDirectory)\eng\common\sdl . .\sdl.ps1 - $guardianCliLocation = Install-Gdn -Path $(Build.SourcesDirectory)\.artifacts + $guardianCliLocation = Install-Gdn -Path $(System.DefaultWorkingDirectory)\.artifacts Write-Host "##vso[task.setvariable variable=GuardianCliLocation]$guardianCliLocation" displayName: Install Guardian @@ -38,7 +38,7 @@ steps: - ${{ if eq(parameters.overrideParameters, '') }}: - powershell: ${{ parameters.executeAllSdlToolsScript }} -GuardianCliLocation $(GuardianCliLocation) - -NugetPackageDirectory $(Build.SourcesDirectory)\.packages + -NugetPackageDirectory $(System.DefaultWorkingDirectory)\.packages -AzureDevOpsAccessToken $(dn-bot-dotnet-build-rw-code-rw) ${{ parameters.additionalParameters }} displayName: Execute SDL @@ -73,7 +73,7 @@ steps: flattenFolders: true sourceFolder: $(Agent.BuildDirectory)/.gdn/rc/ contents: '**/*.sarif' - targetFolder: $(Build.SourcesDirectory)/CodeAnalysisLogs + targetFolder: $(System.DefaultWorkingDirectory)/CodeAnalysisLogs condition: succeededOrFailed() # Use PublishBuildArtifacts because the SARIF extension only checks this case @@ -81,6 +81,6 @@ steps: - task: PublishBuildArtifacts@1 displayName: Publish SARIF files to CodeAnalysisLogs container inputs: - pathToPublish: $(Build.SourcesDirectory)/CodeAnalysisLogs + pathToPublish: $(System.DefaultWorkingDirectory)/CodeAnalysisLogs artifactName: CodeAnalysisLogs condition: succeededOrFailed() \ No newline at end of file diff --git a/eng/common/templates-official/steps/generate-sbom.yml b/eng/common/templates-official/steps/generate-sbom.yml index daf0957b6..153635356 100644 --- a/eng/common/templates-official/steps/generate-sbom.yml +++ b/eng/common/templates-official/steps/generate-sbom.yml @@ -6,7 +6,7 @@ parameters: PackageVersion: 8.0.0 - BuildDropPath: '$(Build.SourcesDirectory)/artifacts' + BuildDropPath: '$(System.DefaultWorkingDirectory)/artifacts' PackageName: '.NET' ManifestDirPath: $(Build.ArtifactStagingDirectory)/sbom IgnoreDirectories: '' diff --git a/eng/common/templates-official/steps/publish-logs.yml b/eng/common/templates-official/steps/publish-logs.yml index 04012fed1..af5a40b64 100644 --- a/eng/common/templates-official/steps/publish-logs.yml +++ b/eng/common/templates-official/steps/publish-logs.yml @@ -8,15 +8,15 @@ steps: inputs: targetType: inline script: | - New-Item -ItemType Directory $(Build.SourcesDirectory)/PostBuildLogs/${{parameters.StageLabel}}/${{parameters.JobLabel}}/ - Move-Item -Path $(Build.SourcesDirectory)/artifacts/log/Debug/* $(Build.SourcesDirectory)/PostBuildLogs/${{parameters.StageLabel}}/${{parameters.JobLabel}}/ + New-Item -ItemType Directory $(System.DefaultWorkingDirectory)/PostBuildLogs/${{parameters.StageLabel}}/${{parameters.JobLabel}}/ + Move-Item -Path $(System.DefaultWorkingDirectory)/artifacts/log/Debug/* $(System.DefaultWorkingDirectory)/PostBuildLogs/${{parameters.StageLabel}}/${{parameters.JobLabel}}/ continueOnError: true condition: always() - task: 1ES.PublishBuildArtifacts@1 displayName: Publish Logs inputs: - PathtoPublish: '$(Build.SourcesDirectory)/PostBuildLogs' + PathtoPublish: '$(System.DefaultWorkingDirectory)/PostBuildLogs' PublishLocation: Container ArtifactName: PostBuildLogs continueOnError: true diff --git a/eng/common/templates-official/steps/source-build.yml b/eng/common/templates-official/steps/source-build.yml index 829f17c34..b63043da4 100644 --- a/eng/common/templates-official/steps/source-build.yml +++ b/eng/common/templates-official/steps/source-build.yml @@ -12,6 +12,9 @@ parameters: # the usage of the properties on this object is split between the 'job' and 'steps' templates. platform: {} + # Optional list of directories to ignore for component governance scans. + cgIgnoreDirectories: [] + steps: # Build. Keep it self-contained for simple reusability. (No source-build-specific job variables.) - script: | @@ -26,8 +29,8 @@ steps: internalRestoreArgs= if [ '$(dn-bot-dnceng-artifact-feeds-rw)' != '$''(dn-bot-dnceng-artifact-feeds-rw)' ]; then # Temporarily work around https://github.com/dotnet/arcade/issues/7709 - chmod +x $(Build.SourcesDirectory)/eng/common/SetupNugetSources.sh - $(Build.SourcesDirectory)/eng/common/SetupNugetSources.sh $(Build.SourcesDirectory)/NuGet.config $(dn-bot-dnceng-artifact-feeds-rw) + chmod +x $(System.DefaultWorkingDirectory)/eng/common/SetupNugetSources.sh + $(System.DefaultWorkingDirectory)/eng/common/SetupNugetSources.sh $(System.DefaultWorkingDirectory)/NuGet.config $(dn-bot-dnceng-artifact-feeds-rw) internalRestoreArgs='/p:CopyWipIntoInnerSourceBuildRepo=true' # The 'Copy WIP' feature of source build uses git stash to apply changes from the original repo. @@ -101,7 +104,7 @@ steps: - task: CopyFiles@2 displayName: Prepare BuildLogs staging directory inputs: - SourceFolder: '$(Build.SourcesDirectory)' + SourceFolder: '$(System.DefaultWorkingDirectory)' Contents: | **/*.log **/*.binlog @@ -126,4 +129,7 @@ steps: - task: ComponentGovernanceComponentDetection@0 displayName: Component Detection (Exclude upstream cache) inputs: - ignoreDirectories: '$(Build.SourcesDirectory)/artifacts/source-build/self/src/artifacts/obj/source-built-upstream-cache' + ${{ if eq(length(parameters.cgIgnoreDirectories), 0) }}: + ignoreDirectories: '$(System.DefaultWorkingDirectory)/artifacts/source-build/self/src/artifacts/obj/source-built-upstream-cache' + ${{ else }}: + ignoreDirectories: ${{ join(',', parameters.cgIgnoreDirectories) }} diff --git a/eng/common/templates-official/variables/sdl-variables.yml b/eng/common/templates-official/variables/sdl-variables.yml index dbdd66d4a..f1311bbb1 100644 --- a/eng/common/templates-official/variables/sdl-variables.yml +++ b/eng/common/templates-official/variables/sdl-variables.yml @@ -4,4 +4,4 @@ variables: - name: DefaultGuardianVersion value: 0.109.0 - name: GuardianPackagesConfigFile - value: $(Build.SourcesDirectory)\eng\common\sdl\packages.config \ No newline at end of file + value: $(System.DefaultWorkingDirectory)\eng\common\sdl\packages.config \ No newline at end of file diff --git a/eng/common/templates/job/job.yml b/eng/common/templates/job/job.yml index 2856f7de1..80454d5a5 100644 --- a/eng/common/templates/job/job.yml +++ b/eng/common/templates/job/job.yml @@ -37,7 +37,7 @@ parameters: # Sbom related params enableSbom: true PackageVersion: 7.0.0 - BuildDropPath: '$(Build.SourcesDirectory)/artifacts' + BuildDropPath: '$(System.DefaultWorkingDirectory)/artifacts' jobs: - job: ${{ parameters.name }} @@ -163,7 +163,7 @@ jobs: inputs: languages: ${{ coalesce(parameters.richCodeNavigationLanguage, 'csharp') }} environment: ${{ coalesce(parameters.richCodeNavigationEnvironment, 'production') }} - richNavLogOutputDirectory: $(Build.SourcesDirectory)/artifacts/bin + richNavLogOutputDirectory: $(System.DefaultWorkingDirectory)/artifacts/bin uploadRichNavArtifacts: ${{ coalesce(parameters.richCodeNavigationUploadArtifacts, false) }} continueOnError: true @@ -220,7 +220,7 @@ jobs: - task: PublishBuildArtifacts@1 displayName: Publish Logs inputs: - PathtoPublish: '$(Build.SourcesDirectory)/artifacts/log/$(_BuildConfig)' + PathtoPublish: '$(System.DefaultWorkingDirectory)/artifacts/log/$(_BuildConfig)' PublishLocation: Container ArtifactName: ${{ coalesce(parameters.enablePublishBuildArtifacts.artifactName, '$(Agent.Os)_$(Agent.JobName)' ) }} continueOnError: true @@ -232,7 +232,7 @@ jobs: inputs: testResultsFormat: 'xUnit' testResultsFiles: '*.xml' - searchFolder: '$(Build.SourcesDirectory)/artifacts/TestResults/$(_BuildConfig)' + searchFolder: '$(System.DefaultWorkingDirectory)/artifacts/TestResults/$(_BuildConfig)' testRunTitle: ${{ coalesce(parameters.testRunTitle, parameters.name, '$(System.JobName)') }}-xunit mergeTestResults: ${{ parameters.mergeTestResults }} continueOnError: true @@ -243,7 +243,7 @@ jobs: inputs: testResultsFormat: 'VSTest' testResultsFiles: '*.trx' - searchFolder: '$(Build.SourcesDirectory)/artifacts/TestResults/$(_BuildConfig)' + searchFolder: '$(System.DefaultWorkingDirectory)/artifacts/TestResults/$(_BuildConfig)' testRunTitle: ${{ coalesce(parameters.testRunTitle, parameters.name, '$(System.JobName)') }}-trx mergeTestResults: ${{ parameters.mergeTestResults }} continueOnError: true @@ -257,7 +257,7 @@ jobs: IgnoreDirectories: ${{ parameters.componentGovernanceIgnoreDirectories }} - ${{ if eq(parameters.enableBuildRetry, 'true') }}: - - publish: $(Build.SourcesDirectory)\eng\common\BuildConfiguration + - publish: $(System.DefaultWorkingDirectory)\eng\common\BuildConfiguration artifact: BuildConfiguration displayName: Publish build retry configuration continueOnError: true diff --git a/eng/common/templates/job/onelocbuild.yml b/eng/common/templates/job/onelocbuild.yml index 60ab00c4d..2cd3840c9 100644 --- a/eng/common/templates/job/onelocbuild.yml +++ b/eng/common/templates/job/onelocbuild.yml @@ -8,7 +8,7 @@ parameters: CeapexPat: $(dn-bot-ceapex-package-r) # PAT for the loc AzDO instance https://dev.azure.com/ceapex GithubPat: $(BotAccount-dotnet-bot-repo-PAT) - SourcesDirectory: $(Build.SourcesDirectory) + SourcesDirectory: $(System.DefaultWorkingDirectory) CreatePr: true AutoCompletePr: false ReusePr: true @@ -60,7 +60,7 @@ jobs: - ${{ if ne(parameters.SkipLocProjectJsonGeneration, 'true') }}: - task: Powershell@2 inputs: - filePath: $(Build.SourcesDirectory)/eng/common/generate-locproject.ps1 + filePath: $(System.DefaultWorkingDirectory)/eng/common/generate-locproject.ps1 arguments: $(_GenerateLocProjectArguments) displayName: Generate LocProject.json condition: ${{ parameters.condition }} @@ -103,7 +103,7 @@ jobs: - task: PublishBuildArtifacts@1 displayName: Publish LocProject.json inputs: - PathtoPublish: '$(Build.SourcesDirectory)/eng/Localize/' + PathtoPublish: '$(System.DefaultWorkingDirectory)/eng/Localize/' PublishLocation: Container ArtifactName: Loc condition: ${{ parameters.condition }} \ No newline at end of file diff --git a/eng/common/templates/job/publish-build-assets.yml b/eng/common/templates/job/publish-build-assets.yml index cc2b346ba..2956d8117 100644 --- a/eng/common/templates/job/publish-build-assets.yml +++ b/eng/common/templates/job/publish-build-assets.yml @@ -30,6 +30,8 @@ parameters: signingValidationAdditionalParameters: '' + repositoryAlias: self + jobs: - job: Asset_Registry_Publish @@ -63,6 +65,9 @@ jobs: steps: - ${{ if and(eq(parameters.runAsPublic, 'false'), ne(variables['System.TeamProject'], 'public'), notin(variables['Build.Reason'], 'PullRequest')) }}: + - checkout: ${{ parameters.repositoryAlias }} + fetchDepth: 3 + clean: true - task: DownloadBuildArtifacts@0 displayName: Download artifact inputs: @@ -80,7 +85,7 @@ jobs: azureSubscription: "Darc: Maestro Production" scriptType: ps scriptLocation: scriptPath - scriptPath: $(Build.SourcesDirectory)/eng/common/sdk-task.ps1 + scriptPath: $(System.DefaultWorkingDirectory)/eng/common/sdk-task.ps1 arguments: > -task PublishBuildAssets -restore -msbuildEngine dotnet /p:ManifestsPath='$(Build.StagingDirectory)/Download/AssetManifests' @@ -111,7 +116,7 @@ jobs: inputs: targetType: inline script: | - $symbolExclusionfile = "$(Build.SourcesDirectory)/eng/SymbolPublishingExclusionsFile.txt" + $symbolExclusionfile = "$(System.DefaultWorkingDirectory)/eng/SymbolPublishingExclusionsFile.txt" if(Test-Path -Path $symbolExclusionfile) { Write-Host "SymbolExclusionFile exists" @@ -126,7 +131,7 @@ jobs: displayName: Publish SymbolPublishingExclusionsFile Artifact condition: eq(variables['SymbolExclusionFile'], 'true') inputs: - PathtoPublish: '$(Build.SourcesDirectory)/eng/SymbolPublishingExclusionsFile.txt' + PathtoPublish: '$(System.DefaultWorkingDirectory)/eng/SymbolPublishingExclusionsFile.txt' PublishLocation: Container ArtifactName: ReleaseConfigs @@ -142,7 +147,7 @@ jobs: azureSubscription: "Darc: Maestro Production" scriptType: ps scriptLocation: scriptPath - scriptPath: $(Build.SourcesDirectory)/eng/common/post-build/publish-using-darc.ps1 + scriptPath: $(System.DefaultWorkingDirectory)/eng/common/post-build/publish-using-darc.ps1 arguments: -BuildId $(BARBuildId) -PublishingInfraVersion 3 -AzdoToken '$(System.AccessToken)' diff --git a/eng/common/templates/job/source-build.yml b/eng/common/templates/job/source-build.yml index c48f95d93..97021335c 100644 --- a/eng/common/templates/job/source-build.yml +++ b/eng/common/templates/job/source-build.yml @@ -31,6 +31,9 @@ parameters: # container and pool. platform: {} + # Optional list of directories to ignore for component governance scans. + cgIgnoreDirectories: [] + # If set to true and running on a non-public project, # Internal blob storage locations will be enabled. # This is not enabled by default because many repositories do not need internal sources @@ -72,3 +75,4 @@ jobs: - template: /eng/common/templates/steps/source-build.yml parameters: platform: ${{ parameters.platform }} + cgIgnoreDirectories: ${{ parameters.cgIgnoreDirectories }} diff --git a/eng/common/templates/job/source-index-stage1.yml b/eng/common/templates/job/source-index-stage1.yml index 8538f44ba..81606fd9a 100644 --- a/eng/common/templates/job/source-index-stage1.yml +++ b/eng/common/templates/job/source-index-stage1.yml @@ -58,7 +58,7 @@ jobs: - script: ${{ parameters.sourceIndexBuildCommand }} displayName: Build Repository - - script: $(Agent.TempDirectory)/.source-index/tools/BinLogToSln -i $(BinlogPath) -r $(Build.SourcesDirectory) -n $(Build.Repository.Name) -o .source-index/stage1output + - script: $(Agent.TempDirectory)/.source-index/tools/BinLogToSln -i $(BinlogPath) -r $(System.DefaultWorkingDirectory) -n $(Build.Repository.Name) -o .source-index/stage1output displayName: Process Binlog into indexable sln - ${{ if and(eq(parameters.runAsPublic, 'false'), ne(variables['System.TeamProject'], 'public'), notin(variables['Build.Reason'], 'PullRequest')) }}: diff --git a/eng/common/templates/jobs/codeql-build.yml b/eng/common/templates/jobs/codeql-build.yml index f7dc5ea4a..e8b43e3b4 100644 --- a/eng/common/templates/jobs/codeql-build.yml +++ b/eng/common/templates/jobs/codeql-build.yml @@ -23,7 +23,7 @@ jobs: - name: DefaultGuardianVersion value: 0.109.0 - name: GuardianPackagesConfigFile - value: $(Build.SourcesDirectory)\eng\common\sdl\packages.config + value: $(System.DefaultWorkingDirectory)\eng\common\sdl\packages.config - name: GuardianVersion value: ${{ coalesce(parameters.overrideGuardianVersion, '$(DefaultGuardianVersion)') }} diff --git a/eng/common/templates/jobs/jobs.yml b/eng/common/templates/jobs/jobs.yml index 289bb2396..34387a8c7 100644 --- a/eng/common/templates/jobs/jobs.yml +++ b/eng/common/templates/jobs/jobs.yml @@ -40,6 +40,7 @@ parameters: enableSourceIndex: false sourceIndexParams: {} + repositoryAlias: self # Internal resources (telemetry, microbuild) can only be accessed from non-public projects, # and some (Microbuild) should only be applied to non-PR cases for internal builds. @@ -95,3 +96,4 @@ jobs: enablePublishBuildArtifacts: ${{ parameters.enablePublishBuildArtifacts }} artifactsPublishingAdditionalParameters: ${{ parameters.artifactsPublishingAdditionalParameters }} signingValidationAdditionalParameters: ${{ parameters.signingValidationAdditionalParameters }} + repositoryAlias: ${{ parameters.repositoryAlias }} diff --git a/eng/common/templates/jobs/source-build.yml b/eng/common/templates/jobs/source-build.yml index 3ec997108..4dde599ad 100644 --- a/eng/common/templates/jobs/source-build.yml +++ b/eng/common/templates/jobs/source-build.yml @@ -21,6 +21,9 @@ parameters: # one job runs on 'defaultManagedPlatform'. platforms: [] + # Optional list of directories to ignore for component governance scans. + cgIgnoreDirectories: [] + # If set to true and running on a non-public project, # Internal nuget and blob storage locations will be enabled. # This is not enabled by default because many repositories do not need internal sources @@ -44,6 +47,7 @@ jobs: parameters: jobNamePrefix: ${{ parameters.jobNamePrefix }} platform: ${{ platform }} + cgIgnoreDirectories: ${{ parameters.cgIgnoreDirectories }} enableInternalSources: ${{ parameters.enableInternalSources }} - ${{ if eq(length(parameters.platforms), 0) }}: @@ -51,4 +55,5 @@ jobs: parameters: jobNamePrefix: ${{ parameters.jobNamePrefix }} platform: ${{ parameters.defaultManagedPlatform }} + cgIgnoreDirectories: ${{ parameters.cgIgnoreDirectories }} enableInternalSources: ${{ parameters.enableInternalSources }} diff --git a/eng/common/templates/post-build/post-build.yml b/eng/common/templates/post-build/post-build.yml index c3b6a3012..6e5722dc2 100644 --- a/eng/common/templates/post-build/post-build.yml +++ b/eng/common/templates/post-build/post-build.yml @@ -130,7 +130,7 @@ stages: - task: PowerShell@2 displayName: Validate inputs: - filePath: $(Build.SourcesDirectory)/eng/common/post-build/nuget-validation.ps1 + filePath: $(System.DefaultWorkingDirectory)/eng/common/post-build/nuget-validation.ps1 arguments: -PackagesPath $(Build.ArtifactStagingDirectory)/PackageArtifacts/ -ToolDestinationPath $(Agent.BuildDirectory)/Extract/ @@ -180,7 +180,7 @@ stages: filePath: eng\common\sdk-task.ps1 arguments: -task SigningValidation -restore -msbuildEngine vs /p:PackageBasePath='$(Build.ArtifactStagingDirectory)/PackageArtifacts' - /p:SignCheckExclusionsFile='$(Build.SourcesDirectory)/eng/SignCheckExclusionsFile.txt' + /p:SignCheckExclusionsFile='$(System.DefaultWorkingDirectory)/eng/SignCheckExclusionsFile.txt' ${{ parameters.signingValidationAdditionalParameters }} - template: ../steps/publish-logs.yml @@ -220,7 +220,7 @@ stages: - task: PowerShell@2 displayName: Validate inputs: - filePath: $(Build.SourcesDirectory)/eng/common/post-build/sourcelink-validation.ps1 + filePath: $(System.DefaultWorkingDirectory)/eng/common/post-build/sourcelink-validation.ps1 arguments: -InputPath $(Build.ArtifactStagingDirectory)/BlobArtifacts/ -ExtractPath $(Agent.BuildDirectory)/Extract/ -GHRepoName $(Build.Repository.Name) @@ -274,7 +274,7 @@ stages: azureSubscription: "Darc: Maestro Production" scriptType: ps scriptLocation: scriptPath - scriptPath: $(Build.SourcesDirectory)/eng/common/post-build/publish-using-darc.ps1 + scriptPath: $(System.DefaultWorkingDirectory)/eng/common/post-build/publish-using-darc.ps1 arguments: -BuildId $(BARBuildId) -PublishingInfraVersion ${{ parameters.publishingInfraVersion }} -AzdoToken '$(System.AccessToken)' diff --git a/eng/common/templates/post-build/setup-maestro-vars.yml b/eng/common/templates/post-build/setup-maestro-vars.yml index 64b9abc68..4347fa80b 100644 --- a/eng/common/templates/post-build/setup-maestro-vars.yml +++ b/eng/common/templates/post-build/setup-maestro-vars.yml @@ -32,7 +32,7 @@ steps: $AzureDevOpsBuildId = $Env:Build_BuildId } else { - . $(Build.SourcesDirectory)\eng\common\tools.ps1 + . $(System.DefaultWorkingDirectory)\eng\common\tools.ps1 $darc = Get-Darc $buildInfo = & $darc get-build ` --id ${{ parameters.BARBuildId }} ` diff --git a/eng/common/templates/post-build/trigger-subscription.yml b/eng/common/templates/post-build/trigger-subscription.yml index da669030d..52df70774 100644 --- a/eng/common/templates/post-build/trigger-subscription.yml +++ b/eng/common/templates/post-build/trigger-subscription.yml @@ -5,7 +5,7 @@ steps: - task: PowerShell@2 displayName: Triggering subscriptions inputs: - filePath: $(Build.SourcesDirectory)/eng/common/post-build/trigger-subscriptions.ps1 + filePath: $(System.DefaultWorkingDirectory)/eng/common/post-build/trigger-subscriptions.ps1 arguments: -SourceRepo $(Build.Repository.Uri) -ChannelId ${{ parameters.ChannelId }} -MaestroApiAccessToken $(MaestroAccessToken) diff --git a/eng/common/templates/steps/add-build-to-channel.yml b/eng/common/templates/steps/add-build-to-channel.yml index f67a210d6..5b6fec257 100644 --- a/eng/common/templates/steps/add-build-to-channel.yml +++ b/eng/common/templates/steps/add-build-to-channel.yml @@ -5,7 +5,7 @@ steps: - task: PowerShell@2 displayName: Add Build to Channel inputs: - filePath: $(Build.SourcesDirectory)/eng/common/post-build/add-build-to-channel.ps1 + filePath: $(System.DefaultWorkingDirectory)/eng/common/post-build/add-build-to-channel.ps1 arguments: -BuildId $(BARBuildId) -ChannelId ${{ parameters.ChannelId }} -MaestroApiAccessToken $(MaestroApiAccessToken) diff --git a/eng/common/templates/steps/execute-sdl.yml b/eng/common/templates/steps/execute-sdl.yml index fe0ebf8c9..047e8281e 100644 --- a/eng/common/templates/steps/execute-sdl.yml +++ b/eng/common/templates/steps/execute-sdl.yml @@ -15,17 +15,17 @@ steps: - ${{ if ne(parameters.overrideGuardianVersion, '') }}: - pwsh: | - Set-Location -Path $(Build.SourcesDirectory)\eng\common\sdl + Set-Location -Path $(System.DefaultWorkingDirectory)\eng\common\sdl . .\sdl.ps1 - $guardianCliLocation = Install-Gdn -Path $(Build.SourcesDirectory)\.artifacts -Version ${{ parameters.overrideGuardianVersion }} + $guardianCliLocation = Install-Gdn -Path $(System.DefaultWorkingDirectory)\.artifacts -Version ${{ parameters.overrideGuardianVersion }} Write-Host "##vso[task.setvariable variable=GuardianCliLocation]$guardianCliLocation" displayName: Install Guardian (Overridden) - ${{ if eq(parameters.overrideGuardianVersion, '') }}: - pwsh: | - Set-Location -Path $(Build.SourcesDirectory)\eng\common\sdl + Set-Location -Path $(System.DefaultWorkingDirectory)\eng\common\sdl . .\sdl.ps1 - $guardianCliLocation = Install-Gdn -Path $(Build.SourcesDirectory)\.artifacts + $guardianCliLocation = Install-Gdn -Path $(System.DefaultWorkingDirectory)\.artifacts Write-Host "##vso[task.setvariable variable=GuardianCliLocation]$guardianCliLocation" displayName: Install Guardian @@ -40,7 +40,7 @@ steps: - ${{ if eq(parameters.overrideParameters, '') }}: - powershell: ${{ parameters.executeAllSdlToolsScript }} -GuardianCliLocation $(GuardianCliLocation) - -NugetPackageDirectory $(Build.SourcesDirectory)\.packages + -NugetPackageDirectory $(System.DefaultWorkingDirectory)\.packages ${{ parameters.additionalParameters }} displayName: Execute SDL continueOnError: ${{ parameters.sdlContinueOnError }} @@ -76,7 +76,7 @@ steps: flattenFolders: true sourceFolder: $(Agent.BuildDirectory)/.gdn/rc/ contents: '**/*.sarif' - targetFolder: $(Build.SourcesDirectory)/CodeAnalysisLogs + targetFolder: $(System.DefaultWorkingDirectory)/CodeAnalysisLogs condition: succeededOrFailed() # Use PublishBuildArtifacts because the SARIF extension only checks this case @@ -84,6 +84,6 @@ steps: - task: PublishBuildArtifacts@1 displayName: Publish SARIF files to CodeAnalysisLogs container inputs: - pathToPublish: $(Build.SourcesDirectory)/CodeAnalysisLogs + pathToPublish: $(System.DefaultWorkingDirectory)/CodeAnalysisLogs artifactName: CodeAnalysisLogs condition: succeededOrFailed() \ No newline at end of file diff --git a/eng/common/templates/steps/generate-sbom.yml b/eng/common/templates/steps/generate-sbom.yml index 2b21eae42..b1fe8b394 100644 --- a/eng/common/templates/steps/generate-sbom.yml +++ b/eng/common/templates/steps/generate-sbom.yml @@ -6,7 +6,7 @@ parameters: PackageVersion: 8.0.0 - BuildDropPath: '$(Build.SourcesDirectory)/artifacts' + BuildDropPath: '$(System.DefaultWorkingDirectory)/artifacts' PackageName: '.NET' ManifestDirPath: $(Build.ArtifactStagingDirectory)/sbom IgnoreDirectories: '' diff --git a/eng/common/templates/steps/publish-logs.yml b/eng/common/templates/steps/publish-logs.yml index 88f238f36..e2f8413d8 100644 --- a/eng/common/templates/steps/publish-logs.yml +++ b/eng/common/templates/steps/publish-logs.yml @@ -8,15 +8,15 @@ steps: inputs: targetType: inline script: | - New-Item -ItemType Directory $(Build.SourcesDirectory)/PostBuildLogs/${{parameters.StageLabel}}/${{parameters.JobLabel}}/ - Move-Item -Path $(Build.SourcesDirectory)/artifacts/log/Debug/* $(Build.SourcesDirectory)/PostBuildLogs/${{parameters.StageLabel}}/${{parameters.JobLabel}}/ + New-Item -ItemType Directory $(System.DefaultWorkingDirectory)/PostBuildLogs/${{parameters.StageLabel}}/${{parameters.JobLabel}}/ + Move-Item -Path $(System.DefaultWorkingDirectory)/artifacts/log/Debug/* $(System.DefaultWorkingDirectory)/PostBuildLogs/${{parameters.StageLabel}}/${{parameters.JobLabel}}/ continueOnError: true condition: always() - task: PublishBuildArtifacts@1 displayName: Publish Logs inputs: - PathtoPublish: '$(Build.SourcesDirectory)/PostBuildLogs' + PathtoPublish: '$(System.DefaultWorkingDirectory)/PostBuildLogs' PublishLocation: Container ArtifactName: PostBuildLogs continueOnError: true diff --git a/eng/common/templates/steps/source-build.yml b/eng/common/templates/steps/source-build.yml index 41bbb9157..ae06b26ea 100644 --- a/eng/common/templates/steps/source-build.yml +++ b/eng/common/templates/steps/source-build.yml @@ -12,6 +12,9 @@ parameters: # the usage of the properties on this object is split between the 'job' and 'steps' templates. platform: {} + # Optional list of directories to ignore for component governance scans. + cgIgnoreDirectories: [] + steps: # Build. Keep it self-contained for simple reusability. (No source-build-specific job variables.) - script: | @@ -26,8 +29,8 @@ steps: internalRestoreArgs= if [ '$(dn-bot-dnceng-artifact-feeds-rw)' != '$''(dn-bot-dnceng-artifact-feeds-rw)' ]; then # Temporarily work around https://github.com/dotnet/arcade/issues/7709 - chmod +x $(Build.SourcesDirectory)/eng/common/SetupNugetSources.sh - $(Build.SourcesDirectory)/eng/common/SetupNugetSources.sh $(Build.SourcesDirectory)/NuGet.config $(dn-bot-dnceng-artifact-feeds-rw) + chmod +x $(System.DefaultWorkingDirectory)/eng/common/SetupNugetSources.sh + $(System.DefaultWorkingDirectory)/eng/common/SetupNugetSources.sh $(System.DefaultWorkingDirectory)/NuGet.config $(dn-bot-dnceng-artifact-feeds-rw) internalRestoreArgs='/p:CopyWipIntoInnerSourceBuildRepo=true' # The 'Copy WIP' feature of source build uses git stash to apply changes from the original repo. @@ -101,7 +104,7 @@ steps: - task: CopyFiles@2 displayName: Prepare BuildLogs staging directory inputs: - SourceFolder: '$(Build.SourcesDirectory)' + SourceFolder: '$(System.DefaultWorkingDirectory)' Contents: | **/*.log **/*.binlog @@ -126,4 +129,7 @@ steps: - task: ComponentGovernanceComponentDetection@0 displayName: Component Detection (Exclude upstream cache) inputs: - ignoreDirectories: '$(Build.SourcesDirectory)/artifacts/source-build/self/src/artifacts/obj/source-built-upstream-cache' + ${{ if eq(length(parameters.cgIgnoreDirectories), 0) }}: + ignoreDirectories: '$(System.DefaultWorkingDirectory)/artifacts/source-build/self/src/artifacts/obj/source-built-upstream-cache' + ${{ else }}: + ignoreDirectories: ${{ join(',', parameters.cgIgnoreDirectories) }} diff --git a/eng/common/templates/variables/sdl-variables.yml b/eng/common/templates/variables/sdl-variables.yml index dbdd66d4a..f1311bbb1 100644 --- a/eng/common/templates/variables/sdl-variables.yml +++ b/eng/common/templates/variables/sdl-variables.yml @@ -4,4 +4,4 @@ variables: - name: DefaultGuardianVersion value: 0.109.0 - name: GuardianPackagesConfigFile - value: $(Build.SourcesDirectory)\eng\common\sdl\packages.config \ No newline at end of file + value: $(System.DefaultWorkingDirectory)\eng\common\sdl\packages.config \ No newline at end of file diff --git a/global.json b/global.json index d6f022f5c..cf56df862 100644 --- a/global.json +++ b/global.json @@ -1,10 +1,10 @@ { "tools": { - "dotnet": "8.0.119" + "dotnet": "8.0.120" }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "8.0.0-beta.25407.1", - "Microsoft.DotNet.SharedFramework.Sdk": "8.0.0-beta.25407.1", + "Microsoft.DotNet.Arcade.Sdk": "8.0.0-beta.25461.1", + "Microsoft.DotNet.SharedFramework.Sdk": "8.0.0-beta.25461.1", "Microsoft.Build.NoTargets": "3.7.0", "Microsoft.Build.Traversal": "3.4.0" } From cc18665235a2cf9c4ce929bbedaaec504fc8dc0d Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Tue, 23 Sep 2025 21:52:14 +0000 Subject: [PATCH 222/222] [release/8.0] Update dependencies from dotnet/arcade (#5282) [release/8.0] Update dependencies from dotnet/arcade --- NuGet.config | 20 ---------------- eng/Version.Details.xml | 24 +++++++++---------- eng/Versions.props | 8 +++---- .../job/publish-build-assets.yml | 9 ++++++- eng/common/templates-official/jobs/jobs.yml | 2 ++ .../templates/job/publish-build-assets.yml | 9 ++++++- eng/common/templates/jobs/jobs.yml | 2 ++ global.json | 4 ++-- 8 files changed, 38 insertions(+), 40 deletions(-) diff --git a/NuGet.config b/NuGet.config index 586b30681..1bd49f5bf 100644 --- a/NuGet.config +++ b/NuGet.config @@ -9,18 +9,8 @@ - - - - - - - - - - @@ -33,18 +23,8 @@ - - - - - - - - - - diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 922836f4a..8343fd77b 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -151,29 +151,29 @@ - + https://github.com/dotnet/arcade - 958612453c58fd32328461580b19ce5ecf4aedd2 + ea77ace912db0e1cf28f199cb456b27fe311635e - + https://github.com/dotnet/arcade - 958612453c58fd32328461580b19ce5ecf4aedd2 + ea77ace912db0e1cf28f199cb456b27fe311635e - + https://github.com/dotnet/arcade - 958612453c58fd32328461580b19ce5ecf4aedd2 + ea77ace912db0e1cf28f199cb456b27fe311635e - + https://github.com/dotnet/arcade - 958612453c58fd32328461580b19ce5ecf4aedd2 + ea77ace912db0e1cf28f199cb456b27fe311635e - + https://github.com/dotnet/arcade - 958612453c58fd32328461580b19ce5ecf4aedd2 + ea77ace912db0e1cf28f199cb456b27fe311635e - + https://github.com/dotnet/arcade - 958612453c58fd32328461580b19ce5ecf4aedd2 + ea77ace912db0e1cf28f199cb456b27fe311635e diff --git a/eng/Versions.props b/eng/Versions.props index d8d29ff77..9f0fb9efc 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -12,10 +12,10 @@ - 8.0.0-beta.25461.1 - 8.0.0-beta.25461.1 - 8.0.0-beta.25461.1 - 8.0.0-beta.25461.1 + 8.0.0-beta.25473.1 + 8.0.0-beta.25473.1 + 8.0.0-beta.25473.1 + 8.0.0-beta.25473.1 4.5.0 4.9.0 diff --git a/eng/common/templates-official/job/publish-build-assets.yml b/eng/common/templates-official/job/publish-build-assets.yml index 7a320e9ba..a99d79df8 100644 --- a/eng/common/templates-official/job/publish-build-assets.yml +++ b/eng/common/templates-official/job/publish-build-assets.yml @@ -32,6 +32,8 @@ parameters: repositoryAlias: self + officialBuildId: '' + jobs: - job: Asset_Registry_Publish @@ -52,6 +54,11 @@ jobs: value: false - ${{ if eq(parameters.publishAssetsImmediately, 'true') }}: - template: /eng/common/templates-official/post-build/common-variables.yml + - name: OfficialBuildId + ${{ if ne(parameters.officialBuildId, '') }}: + value: ${{ parameters.officialBuildId }} + ${{ else }}: + value: $(Build.BuildNumber) pool: # We don't use the collection uri here because it might vary (.visualstudio.com vs. dev.azure.com) @@ -93,7 +100,7 @@ jobs: /p:ManifestsPath='$(Build.StagingDirectory)/Download/AssetManifests' /p:MaestroApiEndpoint=https://maestro.dot.net /p:PublishUsingPipelines=${{ parameters.publishUsingPipelines }} - /p:OfficialBuildId=$(Build.BuildNumber) + /p:OfficialBuildId=$(OfficialBuildId) condition: ${{ parameters.condition }} continueOnError: ${{ parameters.continueOnError }} diff --git a/eng/common/templates-official/jobs/jobs.yml b/eng/common/templates-official/jobs/jobs.yml index 803a95aac..03aa64e17 100644 --- a/eng/common/templates-official/jobs/jobs.yml +++ b/eng/common/templates-official/jobs/jobs.yml @@ -41,6 +41,7 @@ parameters: enableSourceIndex: false sourceIndexParams: {} repositoryAlias: self + officialBuildId: '' # Internal resources (telemetry, microbuild) can only be accessed from non-public projects, # and some (Microbuild) should only be applied to non-PR cases for internal builds. @@ -97,3 +98,4 @@ jobs: artifactsPublishingAdditionalParameters: ${{ parameters.artifactsPublishingAdditionalParameters }} signingValidationAdditionalParameters: ${{ parameters.signingValidationAdditionalParameters }} repositoryAlias: ${{ parameters.repositoryAlias }} + officialBuildId: ${{ parameters.officialBuildId }} diff --git a/eng/common/templates/job/publish-build-assets.yml b/eng/common/templates/job/publish-build-assets.yml index 2956d8117..1fcdcc9ad 100644 --- a/eng/common/templates/job/publish-build-assets.yml +++ b/eng/common/templates/job/publish-build-assets.yml @@ -32,6 +32,8 @@ parameters: repositoryAlias: self + officialBuildId: '' + jobs: - job: Asset_Registry_Publish @@ -52,6 +54,11 @@ jobs: value: false - ${{ if eq(parameters.publishAssetsImmediately, 'true') }}: - template: /eng/common/templates/post-build/common-variables.yml + - name: OfficialBuildId + ${{ if ne(parameters.officialBuildId, '') }}: + value: ${{ parameters.officialBuildId }} + ${{ else }}: + value: $(Build.BuildNumber) pool: # We don't use the collection uri here because it might vary (.visualstudio.com vs. dev.azure.com) @@ -91,7 +98,7 @@ jobs: /p:ManifestsPath='$(Build.StagingDirectory)/Download/AssetManifests' /p:MaestroApiEndpoint=https://maestro.dot.net /p:PublishUsingPipelines=${{ parameters.publishUsingPipelines }} - /p:OfficialBuildId=$(Build.BuildNumber) + /p:OfficialBuildId=$(OfficialBuildId) condition: ${{ parameters.condition }} continueOnError: ${{ parameters.continueOnError }} diff --git a/eng/common/templates/jobs/jobs.yml b/eng/common/templates/jobs/jobs.yml index 34387a8c7..7eafc2567 100644 --- a/eng/common/templates/jobs/jobs.yml +++ b/eng/common/templates/jobs/jobs.yml @@ -41,6 +41,7 @@ parameters: enableSourceIndex: false sourceIndexParams: {} repositoryAlias: self + officialBuildId: '' # Internal resources (telemetry, microbuild) can only be accessed from non-public projects, # and some (Microbuild) should only be applied to non-PR cases for internal builds. @@ -97,3 +98,4 @@ jobs: artifactsPublishingAdditionalParameters: ${{ parameters.artifactsPublishingAdditionalParameters }} signingValidationAdditionalParameters: ${{ parameters.signingValidationAdditionalParameters }} repositoryAlias: ${{ parameters.repositoryAlias }} + officialBuildId: ${{ parameters.officialBuildId }} diff --git a/global.json b/global.json index cf56df862..0ff55cf0d 100644 --- a/global.json +++ b/global.json @@ -3,8 +3,8 @@ "dotnet": "8.0.120" }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "8.0.0-beta.25461.1", - "Microsoft.DotNet.SharedFramework.Sdk": "8.0.0-beta.25461.1", + "Microsoft.DotNet.Arcade.Sdk": "8.0.0-beta.25473.1", + "Microsoft.DotNet.SharedFramework.Sdk": "8.0.0-beta.25473.1", "Microsoft.Build.NoTargets": "3.7.0", "Microsoft.Build.Traversal": "3.4.0" }