[main] Update dependencies from dotnet/runtime (#4678)
authordotnet-maestro[bot] <42748379+dotnet-maestro[bot]@users.noreply.github.com>
Wed, 22 May 2024 00:41:57 +0000 (17:41 -0700)
committerGitHub <noreply@github.com>
Wed, 22 May 2024 00:41:57 +0000 (17:41 -0700)
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] <dotnet-maestro[bot]@users.noreply.github.com>
Co-authored-by: Mike McLaughlin <mikem@microsoft.com>
eng/Version.Details.xml
eng/Versions.props
src/SOS/SOS.UnitTests/Debuggees/GCWhere/GCWhere.cs

index 034afe0e08e69fa8984c86cc80824e20d51a7a54..d1c8c2716f2ffe69ad8c84925e1460bc4b675a54 100644 (file)
       <Uri>https://github.com/dotnet/aspnetcore</Uri>
       <Sha>576f7cb8ec5aed536319bcc65ad4ec34149b5a16</Sha>
     </Dependency>
-    <Dependency Name="Microsoft.NETCore.App.Runtime.win-x64" Version="9.0.0-preview.5.24268.2">
+    <Dependency Name="Microsoft.NETCore.App.Runtime.win-x64" Version="9.0.0-preview.5.24271.1">
       <Uri>https://github.com/dotnet/runtime</Uri>
-      <Sha>5474ab5c50fc639e780e0322cd500b2e43ee9b0d</Sha>
+      <Sha>2bfd1b44200de244a66b7f4a7604be1f2d5585bc</Sha>
     </Dependency>
-    <Dependency Name="VS.Redist.Common.NetCore.SharedFramework.x64.9.0" Version="9.0.0-preview.5.24268.2">
+    <Dependency Name="VS.Redist.Common.NetCore.SharedFramework.x64.9.0" Version="9.0.0-preview.5.24271.1">
       <Uri>https://github.com/dotnet/runtime</Uri>
-      <Sha>5474ab5c50fc639e780e0322cd500b2e43ee9b0d</Sha>
+      <Sha>2bfd1b44200de244a66b7f4a7604be1f2d5585bc</Sha>
     </Dependency>
     <!-- Intermediate is necessary for source build. -->
     <Dependency Name="Microsoft.SourceBuild.Intermediate.source-build-reference-packages" Version="9.0.0-alpha.1.24270.1">
index 985ee5bee5f6734bea38fc8b8492e37ef248f60a..b528e8df4413bcc94e2b0422b1a6648692ce034b 100644 (file)
@@ -16,8 +16,8 @@
   </PropertyGroup>
   <PropertyGroup>
     <!-- Latest shared runtime version updated by darc -->
-    <VSRedistCommonNetCoreSharedFrameworkx6490Version>9.0.0-preview.5.24268.2</VSRedistCommonNetCoreSharedFrameworkx6490Version>
-    <MicrosoftNETCoreAppRuntimewinx64Version>9.0.0-preview.5.24268.2</MicrosoftNETCoreAppRuntimewinx64Version>
+    <VSRedistCommonNetCoreSharedFrameworkx6490Version>9.0.0-preview.5.24271.1</VSRedistCommonNetCoreSharedFrameworkx6490Version>
+    <MicrosoftNETCoreAppRuntimewinx64Version>9.0.0-preview.5.24271.1</MicrosoftNETCoreAppRuntimewinx64Version>
     <!-- Latest shared aspnetcore version updated by darc -->
     <MicrosoftAspNetCoreAppRefInternalVersion>9.0.0-preview.4.24222.16</MicrosoftAspNetCoreAppRefInternalVersion>
     <MicrosoftAspNetCoreAppRefVersion>9.0.0-preview.4.24222.16</MicrosoftAspNetCoreAppRefVersion>
index c1f4d587e0f64dd1be82c0f99f195973ca18db2d..ebf5043f96b413cab148e358b468d596568a5d5f 100644 (file)
@@ -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);