[main] Update dependencies from dotnet/runtime (#4845)
authordotnet-maestro[bot] <42748379+dotnet-maestro[bot]@users.noreply.github.com>
Mon, 12 Aug 2024 20:37:19 +0000 (13:37 -0700)
committerGitHub <noreply@github.com>
Mon, 12 Aug 2024 20:37:19 +0000 (13:37 -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**: 20240810.5
- **Date Produced**: August 11, 2024 10:41:29 AM UTC
- **Commit**: 7cb32e193a55a95c74fc3bd56501b951b48b700f
- **Branch**: refs/heads/main

[DependencyUpdate]: <> (Begin)

- **Updates**:
- **Microsoft.NETCore.App.Runtime.win-x64**: [from 9.0.0-rc.1.24409.6 to
9.0.0-rc.1.24410.5][2]
- **VS.Redist.Common.NetCore.SharedFramework.x64.9.0**: [from
9.0.0-rc.1.24409.6 to 9.0.0-rc.1.24410.5][2]

[2]: https://github.com/dotnet/runtime/compare/0953757c1e...7cb32e193a

[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/tests/Microsoft.Diagnostics.Monitoring.EventPipe/EventCounterPipelineUnitTests.cs

index 01ac5274424ece45cc8f0c29163bd4ac194ab360..f45103fa41ad69037d5b8e79527f7055d357b69f 100644 (file)
       <Uri>https://github.com/dotnet/aspnetcore</Uri>
       <Sha>e31445e897e416b743f436b27cb81f3c87c56d27</Sha>
     </Dependency>
-    <Dependency Name="Microsoft.NETCore.App.Runtime.win-x64" Version="9.0.0-rc.1.24408.13">
+    <Dependency Name="Microsoft.NETCore.App.Runtime.win-x64" Version="9.0.0-rc.1.24410.5">
       <Uri>https://github.com/dotnet/runtime</Uri>
-      <Sha>48aa31535f0e5f318f061eb6f8ad4f25611e6133</Sha>
+      <Sha>7cb32e193a55a95c74fc3bd56501b951b48b700f</Sha>
     </Dependency>
-    <Dependency Name="VS.Redist.Common.NetCore.SharedFramework.x64.9.0" Version="9.0.0-rc.1.24408.13">
+    <Dependency Name="VS.Redist.Common.NetCore.SharedFramework.x64.9.0" Version="9.0.0-rc.1.24410.5">
       <Uri>https://github.com/dotnet/runtime</Uri>
-      <Sha>48aa31535f0e5f318f061eb6f8ad4f25611e6133</Sha>
+      <Sha>7cb32e193a55a95c74fc3bd56501b951b48b700f</Sha>
     </Dependency>
     <!-- Intermediate is necessary for source build. -->
     <Dependency Name="Microsoft.SourceBuild.Intermediate.source-build-reference-packages" Version="9.0.0-alpha.1.24405.2">
index d6e7c1e447f359413693a9f9c84546b1351fb514..1d461d2fc276d3d46ec47eedc188430c18a8ee02 100644 (file)
@@ -16,8 +16,8 @@
   </PropertyGroup>
   <PropertyGroup>
     <!-- Latest shared runtime version updated by darc -->
-    <VSRedistCommonNetCoreSharedFrameworkx6490Version>9.0.0-rc.1.24408.13</VSRedistCommonNetCoreSharedFrameworkx6490Version>
-    <MicrosoftNETCoreAppRuntimewinx64Version>9.0.0-rc.1.24408.13</MicrosoftNETCoreAppRuntimewinx64Version>
+    <VSRedistCommonNetCoreSharedFrameworkx6490Version>9.0.0-rc.1.24410.5</VSRedistCommonNetCoreSharedFrameworkx6490Version>
+    <MicrosoftNETCoreAppRuntimewinx64Version>9.0.0-rc.1.24410.5</MicrosoftNETCoreAppRuntimewinx64Version>
     <!-- Latest shared aspnetcore version updated by darc -->
     <MicrosoftAspNetCoreAppRefInternalVersion>9.0.0-rc.1.24408.9</MicrosoftAspNetCoreAppRefInternalVersion>
     <MicrosoftAspNetCoreAppRefVersion>9.0.0-rc.1.24408.9</MicrosoftAspNetCoreAppRefVersion>
index 208d6304536f53c9aa8883f0bb80c510a0710973..355324db2f9f19ec8d7e0eb0f73d49575cdbfec7 100644 (file)
@@ -88,6 +88,10 @@ namespace Microsoft.Diagnostics.Monitoring.EventPipe.UnitTests
         [SkippableTheory, MemberData(nameof(Configurations))]
         public async Task TestCounterEventPipeline(TestConfiguration config)
         {
+            if (config.RuntimeFrameworkVersionMajor > 8)
+            {
+                throw new SkipTestException("Not supported on .NET 9.0 and greater");
+            }
             string[] expectedCounters = new[] { "cpu-usage", "working-set" };
             string expectedProvider = "System.Runtime";