From: dotnet-maestro[bot] <42748379+dotnet-maestro[bot]@users.noreply.github.com> Date: Wed, 22 May 2024 00:41:57 +0000 (-0700) Subject: [main] Update dependencies from dotnet/runtime (#4678) X-Git-Tag: accepted/tizen/unified/20241231.014852~40^2~60 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=4a64bc5c0fd3abf17f5b10efbc91051c186db4d3;p=platform%2Fcore%2Fdotnet%2Fdiagnostics.git [main] Update dependencies from dotnet/runtime (#4678) This pull request updates the following dependencies [marker]: <> (Begin:a9fe20fc-c5cb-441c-a7ce-08dc4e3fac2f) ## From https://github.com/dotnet/runtime - **Subscription**: a9fe20fc-c5cb-441c-a7ce-08dc4e3fac2f - **Build**: 20240521.1 - **Date Produced**: May 21, 2024 11:23:14 AM UTC - **Commit**: 2bfd1b44200de244a66b7f4a7604be1f2d5585bc - **Branch**: refs/heads/main [DependencyUpdate]: <> (Begin) - **Updates**: - **Microsoft.NETCore.App.Runtime.win-x64**: [from 9.0.0-preview.5.24268.2 to 9.0.0-preview.5.24271.1][1] - **VS.Redist.Common.NetCore.SharedFramework.x64.9.0**: [from 9.0.0-preview.5.24268.2 to 9.0.0-preview.5.24271.1][1] [1]: https://github.com/dotnet/runtime/compare/5474ab5c50...2bfd1b4420 [DependencyUpdate]: <> (End) [marker]: <> (End:a9fe20fc-c5cb-441c-a7ce-08dc4e3fac2f) --------- Co-authored-by: dotnet-maestro[bot] Co-authored-by: Mike McLaughlin --- diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 034afe0e0..d1c8c2716 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -40,13 +40,13 @@ https://github.com/dotnet/aspnetcore 576f7cb8ec5aed536319bcc65ad4ec34149b5a16 - + https://github.com/dotnet/runtime - 5474ab5c50fc639e780e0322cd500b2e43ee9b0d + 2bfd1b44200de244a66b7f4a7604be1f2d5585bc - + https://github.com/dotnet/runtime - 5474ab5c50fc639e780e0322cd500b2e43ee9b0d + 2bfd1b44200de244a66b7f4a7604be1f2d5585bc diff --git a/eng/Versions.props b/eng/Versions.props index 985ee5bee..b528e8df4 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -16,8 +16,8 @@ - 9.0.0-preview.5.24268.2 - 9.0.0-preview.5.24268.2 + 9.0.0-preview.5.24271.1 + 9.0.0-preview.5.24271.1 9.0.0-preview.4.24222.16 9.0.0-preview.4.24222.16 diff --git a/src/SOS/SOS.UnitTests/Debuggees/GCWhere/GCWhere.cs b/src/SOS/SOS.UnitTests/Debuggees/GCWhere/GCWhere.cs index c1f4d587e..ebf5043f9 100644 --- a/src/SOS/SOS.UnitTests/Debuggees/GCWhere/GCWhere.cs +++ b/src/SOS/SOS.UnitTests/Debuggees/GCWhere/GCWhere.cs @@ -44,7 +44,7 @@ internal class GCWhere Debugger.Break(); // GCWhere should temp in Gen2 GC.Collect(); int genFourthTime = GC.GetGeneration(temp); - Console.WriteLine("1st: {0} 2nd: {1}, 3rd: {2} 4th: {3}", genFirstTime, genSecondTime, genThirdTime, genFourthTime); + Console.WriteLine($"1st: {genFirstTime} 2nd: {genSecondTime}, 3rd: {genThirdTime} 4th: {genFourthTime}"); Debugger.Break(); // GCWhere should temp in Gen2 PrintIt(temp); GC.KeepAlive(temp);