Skip to content

Commit 966acd1

Browse files
authored
Merge pull request #4355 from mikem8361/release/stable
Merge latest main into release/stable
2 parents d951821 + 8e31e1b commit 966acd1

File tree

250 files changed

+6374
-2965
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

250 files changed

+6374
-2965
lines changed

Diff for: CMakeLists.txt

+13
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,11 @@ elseif (CLR_CMAKE_HOST_ARCH_MIPS64)
9595
add_definitions(-DMIPS64)
9696
add_definitions(-D_WIN64)
9797
add_definitions(-DBIT64=1)
98+
elseif (CLR_CMAKE_HOST_ARCH_RISCV64)
99+
add_definitions(-D_RISCV64_)
100+
add_definitions(-DRISCV64)
101+
add_definitions(-D_WIN64)
102+
add_definitions(-DBIT64=1)
98103
else ()
99104
clr_unknown_arch()
100105
endif ()
@@ -143,6 +148,14 @@ elseif (CLR_CMAKE_TARGET_ARCH_MIPS64)
143148
add_definitions(-DDBG_TARGET_64BIT=1)
144149
add_definitions(-DDBG_TARGET_WIN64=1)
145150
add_definitions(-DFEATURE_MULTIREG_RETURN)
151+
elseif (CLR_CMAKE_TARGET_ARCH_RISCV64)
152+
add_definitions(-DDBG_TARGET_RISCV64_UNIX)
153+
add_definitions(-D_TARGET_RISCV64_=1)
154+
add_definitions(-D_TARGET_64BIT_=1)
155+
add_definitions(-DDBG_TARGET_RISCV64=1)
156+
add_definitions(-DDBG_TARGET_64BIT=1)
157+
add_definitions(-DDBG_TARGET_WIN64=1)
158+
add_definitions(-DFEATURE_MULTIREG_RETURN)
146159
else ()
147160
clr_unknown_arch()
148161
endif (CLR_CMAKE_TARGET_ARCH_AMD64)

Diff for: diagnostics.sln

+44-1
Original file line numberDiff line numberDiff line change
@@ -266,7 +266,9 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "CommonTestRunner", "src\tes
266266
EndProject
267267
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DotnetStack.UnitTests", "src\tests\dotnet-stack\DotnetStack.UnitTests.csproj", "{E8F133F8-4D20-475D-9D16-2BA236DAB65F}"
268268
EndProject
269-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Microsoft.Diagnostics.WebSocketServer", "src\Microsoft.Diagnostics.WebSocketServer\Microsoft.Diagnostics.WebSocketServer.csproj", "{1043FA82-37CC-4809-80DC-C1EB06A55133}"
269+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.Diagnostics.WebSocketServer", "src\Microsoft.Diagnostics.WebSocketServer\Microsoft.Diagnostics.WebSocketServer.csproj", "{1043FA82-37CC-4809-80DC-C1EB06A55133}"
270+
EndProject
271+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "TestExtension", "src\tests\TestExtension\TestExtension.csproj", "{C6EB3C21-FDFF-4CF0-BE3A-3D1A3924408E}"
270272
EndProject
271273
Global
272274
GlobalSection(SolutionConfigurationPlatforms) = preSolution
@@ -1907,6 +1909,46 @@ Global
19071909
{1043FA82-37CC-4809-80DC-C1EB06A55133}.RelWithDebInfo|x64.Build.0 = Debug|Any CPU
19081910
{1043FA82-37CC-4809-80DC-C1EB06A55133}.RelWithDebInfo|x86.ActiveCfg = Debug|Any CPU
19091911
{1043FA82-37CC-4809-80DC-C1EB06A55133}.RelWithDebInfo|x86.Build.0 = Debug|Any CPU
1912+
{C6EB3C21-FDFF-4CF0-BE3A-3D1A3924408E}.Checked|Any CPU.ActiveCfg = Debug|Any CPU
1913+
{C6EB3C21-FDFF-4CF0-BE3A-3D1A3924408E}.Checked|Any CPU.Build.0 = Debug|Any CPU
1914+
{C6EB3C21-FDFF-4CF0-BE3A-3D1A3924408E}.Checked|ARM.ActiveCfg = Debug|Any CPU
1915+
{C6EB3C21-FDFF-4CF0-BE3A-3D1A3924408E}.Checked|ARM.Build.0 = Debug|Any CPU
1916+
{C6EB3C21-FDFF-4CF0-BE3A-3D1A3924408E}.Checked|ARM64.ActiveCfg = Debug|Any CPU
1917+
{C6EB3C21-FDFF-4CF0-BE3A-3D1A3924408E}.Checked|ARM64.Build.0 = Debug|Any CPU
1918+
{C6EB3C21-FDFF-4CF0-BE3A-3D1A3924408E}.Checked|x64.ActiveCfg = Debug|Any CPU
1919+
{C6EB3C21-FDFF-4CF0-BE3A-3D1A3924408E}.Checked|x64.Build.0 = Debug|Any CPU
1920+
{C6EB3C21-FDFF-4CF0-BE3A-3D1A3924408E}.Checked|x86.ActiveCfg = Debug|Any CPU
1921+
{C6EB3C21-FDFF-4CF0-BE3A-3D1A3924408E}.Checked|x86.Build.0 = Debug|Any CPU
1922+
{C6EB3C21-FDFF-4CF0-BE3A-3D1A3924408E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
1923+
{C6EB3C21-FDFF-4CF0-BE3A-3D1A3924408E}.Debug|Any CPU.Build.0 = Debug|Any CPU
1924+
{C6EB3C21-FDFF-4CF0-BE3A-3D1A3924408E}.Debug|ARM.ActiveCfg = Debug|Any CPU
1925+
{C6EB3C21-FDFF-4CF0-BE3A-3D1A3924408E}.Debug|ARM.Build.0 = Debug|Any CPU
1926+
{C6EB3C21-FDFF-4CF0-BE3A-3D1A3924408E}.Debug|ARM64.ActiveCfg = Debug|Any CPU
1927+
{C6EB3C21-FDFF-4CF0-BE3A-3D1A3924408E}.Debug|ARM64.Build.0 = Debug|Any CPU
1928+
{C6EB3C21-FDFF-4CF0-BE3A-3D1A3924408E}.Debug|x64.ActiveCfg = Debug|Any CPU
1929+
{C6EB3C21-FDFF-4CF0-BE3A-3D1A3924408E}.Debug|x64.Build.0 = Debug|Any CPU
1930+
{C6EB3C21-FDFF-4CF0-BE3A-3D1A3924408E}.Debug|x86.ActiveCfg = Debug|Any CPU
1931+
{C6EB3C21-FDFF-4CF0-BE3A-3D1A3924408E}.Debug|x86.Build.0 = Debug|Any CPU
1932+
{C6EB3C21-FDFF-4CF0-BE3A-3D1A3924408E}.Release|Any CPU.ActiveCfg = Release|Any CPU
1933+
{C6EB3C21-FDFF-4CF0-BE3A-3D1A3924408E}.Release|Any CPU.Build.0 = Release|Any CPU
1934+
{C6EB3C21-FDFF-4CF0-BE3A-3D1A3924408E}.Release|ARM.ActiveCfg = Release|Any CPU
1935+
{C6EB3C21-FDFF-4CF0-BE3A-3D1A3924408E}.Release|ARM.Build.0 = Release|Any CPU
1936+
{C6EB3C21-FDFF-4CF0-BE3A-3D1A3924408E}.Release|ARM64.ActiveCfg = Release|Any CPU
1937+
{C6EB3C21-FDFF-4CF0-BE3A-3D1A3924408E}.Release|ARM64.Build.0 = Release|Any CPU
1938+
{C6EB3C21-FDFF-4CF0-BE3A-3D1A3924408E}.Release|x64.ActiveCfg = Release|Any CPU
1939+
{C6EB3C21-FDFF-4CF0-BE3A-3D1A3924408E}.Release|x64.Build.0 = Release|Any CPU
1940+
{C6EB3C21-FDFF-4CF0-BE3A-3D1A3924408E}.Release|x86.ActiveCfg = Release|Any CPU
1941+
{C6EB3C21-FDFF-4CF0-BE3A-3D1A3924408E}.Release|x86.Build.0 = Release|Any CPU
1942+
{C6EB3C21-FDFF-4CF0-BE3A-3D1A3924408E}.RelWithDebInfo|Any CPU.ActiveCfg = Release|Any CPU
1943+
{C6EB3C21-FDFF-4CF0-BE3A-3D1A3924408E}.RelWithDebInfo|Any CPU.Build.0 = Release|Any CPU
1944+
{C6EB3C21-FDFF-4CF0-BE3A-3D1A3924408E}.RelWithDebInfo|ARM.ActiveCfg = Release|Any CPU
1945+
{C6EB3C21-FDFF-4CF0-BE3A-3D1A3924408E}.RelWithDebInfo|ARM.Build.0 = Release|Any CPU
1946+
{C6EB3C21-FDFF-4CF0-BE3A-3D1A3924408E}.RelWithDebInfo|ARM64.ActiveCfg = Release|Any CPU
1947+
{C6EB3C21-FDFF-4CF0-BE3A-3D1A3924408E}.RelWithDebInfo|ARM64.Build.0 = Release|Any CPU
1948+
{C6EB3C21-FDFF-4CF0-BE3A-3D1A3924408E}.RelWithDebInfo|x64.ActiveCfg = Release|Any CPU
1949+
{C6EB3C21-FDFF-4CF0-BE3A-3D1A3924408E}.RelWithDebInfo|x64.Build.0 = Release|Any CPU
1950+
{C6EB3C21-FDFF-4CF0-BE3A-3D1A3924408E}.RelWithDebInfo|x86.ActiveCfg = Release|Any CPU
1951+
{C6EB3C21-FDFF-4CF0-BE3A-3D1A3924408E}.RelWithDebInfo|x86.Build.0 = Release|Any CPU
19101952
EndGlobalSection
19111953
GlobalSection(SolutionProperties) = preSolution
19121954
HideSolutionNode = FALSE
@@ -1966,6 +2008,7 @@ Global
19662008
{DFF48CB6-4504-41C6-A8F1-F4A3D316D49F} = {03479E19-3F18-49A6-910A-F5041E27E7C0}
19672009
{E8F133F8-4D20-475D-9D16-2BA236DAB65F} = {03479E19-3F18-49A6-910A-F5041E27E7C0}
19682010
{1043FA82-37CC-4809-80DC-C1EB06A55133} = {19FAB78C-3351-4911-8F0C-8C6056401740}
2011+
{C6EB3C21-FDFF-4CF0-BE3A-3D1A3924408E} = {03479E19-3F18-49A6-910A-F5041E27E7C0}
19692012
EndGlobalSection
19702013
GlobalSection(ExtensibilityGlobals) = postSolution
19712014
SolutionGuid = {46465737-C938-44FC-BE1A-4CE139EBB5E0}

Diff for: documentation/debugging-coredump.md

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
This documentation is now located at [debug-linux-dumps](https://learn.microsoft.com/dotnet/core/diagnostics/debug-linux-dumps) This doc is no longer being updated.
2+
13
Debugging Linux or MacOS Core Dump
24
==================================
35

Diff for: documentation/design-docs/dotnet-tools.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
# Dotnet Diagnostic Tools CLI Design
1+
For the latest public documentation on using dotnet-* diagnostic tools see [dotnet-trace](https://learn.microsoft.com/dotnet/core/diagnostics/dotnet-trace), [dotnet-counters](https://learn.microsoft.com/dotnet/core/diagnostics/dotnet-counters), [dotnet-dump](https://learn.microsoft.com/dotnet/core/diagnostics/dotnet-dump), [dotnet-gcdump](https://learn.microsoft.com/dotnet/core/diagnostics/dotnet-gcdump), [dotnet-dsrouter](https://learn.microsoft.com/dotnet/core/diagnostics/dotnet-dsrouter), [dotnet-monitor](https://learn.microsoft.com/dotnet/core/diagnostics/dotnet-monitor), [dotnet-symbol](https://learn.microsoft.com/dotnet/core/diagnostics/dotnet-symbol), [dotnet-sos](https://learn.microsoft.com/dotnet/core/diagnostics/dotnet-sos).
2+
# Dotnet Diagnostic Tools CLI Design
23

34
## User workflows
45

Diff for: documentation/design-docs/eventcounters.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
The newest documentation is now maintained at [eventcounters](https://learn.microsoft.com/dotnet/core/diagnostics/event-counters). This doc is no longer being updated.
2+
13
# EventCounters in .NET Core 3.0
24

35
## Introduction
@@ -332,4 +334,4 @@ The official dotnet-trace documentation contains a [section](https://github.com/
332334

333335
TraceEvent is a managed library that makes it easy to consume ETW and EventPipe events. For more information, refer to the [TraceEvent Library Programmers Guide](https://github.com/Microsoft/perfview/blob/main/documentation/TraceEvent/TraceEventProgrammersGuide.md).
334336

335-
For some more detailed code samples, you can also try reading [Criteo Labs blog](https://medium.com/criteo-labs/net-core-counters-internals-how-to-integrate-counters-in-your-monitoring-pipeline-5354cd61b42e) on how to do this.
337+
For some more detailed code samples, you can also try reading [Criteo Labs blog](https://medium.com/criteo-labs/net-core-counters-internals-how-to-integrate-counters-in-your-monitoring-pipeline-5354cd61b42e) on how to do this.

Diff for: documentation/dotnet-counters-instructions.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
This documentation is now being maintained here: [dotnet-counters](https://learn.microsoft.com/dotnet/core/diagnostics/dotnet-counters). This doc is no longer being updated.
2+
13
# dotnet-counters
24

35
NOTE: This documentation page may contain information on some features that are still work-in-progress. For most up-to-date documentation on released version of `dotnet-counters`, please refer to [its official documentation](https://docs.microsoft.com/en-us/dotnet/core/diagnostics/dotnet-counters) page.
@@ -209,4 +211,4 @@ $ dotnet-counters monitor --counters System.Runtime[assembly-count] -- my-aspnet
209211
provider and counter names, use the list command.
210212

211213
-- <command> (for target applications running .NET 5.0 or later only)
212-
After the collection configuration parameters, the user can append `--` followed by a command to start a .NET application with at least a 5.0 runtime. `dotnet-counters` will launch a process with the provided command and collect the requested metrics.
214+
After the collection configuration parameters, the user can append `--` followed by a command to start a .NET application with at least a 5.0 runtime. `dotnet-counters` will launch a process with the provided command and collect the requested metrics.

Diff for: documentation/dotnet-dump-instructions.md

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
This documentation is now being maintained at [dotnet-dump](https://learn.microsoft.com/dotnet/core/diagnostics/dotnet-dump). This doc is no longer being updated.
2+
13
Dump collection and analysis utility (dotnet-dump)
24
==================================================
35

Diff for: documentation/dotnet-gcdump-instructions.md

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
This documentation is now being maintained at [dotnet-gcdump](https://learn.microsoft.com/dotnet/core/diagnostics/dotnet-gcdump). This doc is no longer being updated.
2+
13
# Heap Analysis Tool (dotnet-gcdump)
24

35
NOTE: This documentation page may contain information on some features that are still work-in-progress. For most up-to-date documentation on released version of `dotnet-gcdump`, please refer to [its official documentation](https://docs.microsoft.com/en-us/dotnet/core/diagnostics/dotnet-gcdump) page.

Diff for: documentation/dotnet-trace-instructions.md

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
This documentation is now being maintained at [dotnet-trace](https://learn.microsoft.com/dotnet/core/diagnostics/dotnet-trace). This doc is no longer being updated.
2+
13
# Trace for performance analysis utility (dotnet-trace)
24

35
NOTE: This documentation page may contain information on some features that are still work-in-progress. For most up-to-date documentation on released version of `dotnet-trace`, please refer to [its official documentation](https://docs.microsoft.com/en-us/dotnet/core/diagnostics/dotnet-trace) page.

Diff for: documentation/installing-sos-instructions.md

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
This documentation is now being maintained at [dotnet-sos](https://learn.microsoft.com/dotnet/core/diagnostics/dotnet-sos). This doc is no longer being updated.
2+
13
Installing SOS on Linux and MacOS
24
=================================
35

Diff for: documentation/installing-sos-windows-instructions.md

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
This documentation is now being maintained at [dotnet-sos](https://learn.microsoft.com/dotnet/core/diagnostics/dotnet-sos). This doc is no longer being updated.
2+
13
Installing SOS on Windows
24
=========================
35

Diff for: documentation/sos.md

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
This documentation is now being maintained at [dotnet-sos](https://learn.microsoft.com/dotnet/core/diagnostics/dotnet-sos). This doc is no longer being updated.
2+
13
SOS
24
===
35

Diff for: documentation/tutorial/app_is_leaking_memory_eventual_crash.md

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
The newest documentation is now being maintained at [debug-memory-leak](https://learn.microsoft.com/dotnet/core/diagnostics/debug-memory-leak). This documentation is no longer being updated.
2+
13
# App is leaking memory (eventual crash/stops responding)
24

35
http://localhost:5000/api/diagscenario/memleak/{kb}

Diff for: documentation/tutorial/app_running_slow_highcpu.md

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
The newest documentation is now being maintained at [debug-highcpu](https://learn.microsoft.com/dotnet/core/diagnostics/debug-highcpu). This documentation is no longer being updated.
2+
13
# App is running slow (due to high CPU)
24

35
http://localhost:5000/api/diagscenario/highcpu/{milliseconds}

Diff for: documentation/tutorial/hung_app.md

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
The newest documentation is now being maintained at [debug-deadlock](https://learn.microsoft.com/dotnet/core/diagnostics/debug-deadlock). This documentation is no longer being updated.
2+
13
# App stops responding
24

35
**IMPORTANT: This tutorial uses API/methods available in dotnet core preview 5. These API/methods are _subject to change._**

Diff for: documentation/tutorial/installing_the_diagnostics_tools.md

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
The newest documentation is now maintained at [dotnet-trace](https://learn.microsoft.com/dotnet/core/diagnostics/dotnet-trace), [dotnet-counters](https://learn.microsoft.com/dotnet/core/diagnostics/dotnet-counters), [dotnet-dump](https://learn.microsoft.com/dotnet/core/diagnostics/dotnet-dump), [dotnet-gcdump](https://learn.microsoft.com/dotnet/core/diagnostics/dotnet-gcdump), [dotnet-dsrouter](https://learn.microsoft.com/dotnet/core/diagnostics/dotnet-dsrouter), [dotnet-monitor](https://learn.microsoft.com/dotnet/core/diagnostics/dotnet-monitor), [dotnet-symbol](https://learn.microsoft.com/dotnet/core/diagnostics/dotnet-symbol), [dotnet-sos](https://learn.microsoft.com/dotnet/core/diagnostics/dotnet-sos). This documentation is no longer being updated.
2+
13
# Installing the diagnostics tools
24

35
Depending on the diagnostics scenario you will use one or more of the tools below to get to root cause. By default, these tools are installed to ~/.dotnet/tools.

Diff for: eng/Version.Details.xml

+22-22
Original file line numberDiff line numberDiff line change
@@ -1,55 +1,55 @@
11
<Dependencies>
22
<ProductDependencies>
3-
<Dependency Name="Microsoft.SymbolStore" Version="1.0.446801">
3+
<Dependency Name="Microsoft.SymbolStore" Version="1.0.451601">
44
<Uri>https://github.com/dotnet/symstore</Uri>
5-
<Sha>8cc6f03fdbd9c79f0bf9ffbe0a788dca1a81348a</Sha>
5+
<Sha>21508f9ab057e19d4060855647edeb376ac7d59d</Sha>
66
</Dependency>
7-
<Dependency Name="Microsoft.Diagnostics.Runtime" Version="3.0.447501">
7+
<Dependency Name="Microsoft.Diagnostics.Runtime" Version="3.1.451701">
88
<Uri>https://github.com/microsoft/clrmd</Uri>
9-
<Sha>6d7c5a7288c0e93e5eb56893a6064575ac6e3ea8</Sha>
9+
<Sha>b64f583396784300c7ded11d22c65053197e958a</Sha>
1010
</Dependency>
11-
<Dependency Name="Microsoft.Diagnostics.Runtime.Utilities" Version="3.0.447501">
11+
<Dependency Name="Microsoft.Diagnostics.Runtime.Utilities" Version="3.1.451701">
1212
<Uri>https://github.com/microsoft/clrmd</Uri>
13-
<Sha>6d7c5a7288c0e93e5eb56893a6064575ac6e3ea8</Sha>
13+
<Sha>b64f583396784300c7ded11d22c65053197e958a</Sha>
1414
</Dependency>
1515
</ProductDependencies>
1616
<ToolsetDependencies>
17-
<Dependency Name="Microsoft.DotNet.Arcade.Sdk" Version="8.0.0-beta.23463.1">
17+
<Dependency Name="Microsoft.DotNet.Arcade.Sdk" Version="9.0.0-beta.23518.2">
1818
<Uri>https://github.com/dotnet/arcade</Uri>
19-
<Sha>1d451c32dda2314c721adbf8829e1c0cd4e681ff</Sha>
19+
<Sha>6a5ca678aef84f34a1fccc46f76623f41da56553</Sha>
2020
<SourceBuild RepoName="arcade" ManagedOnly="true" />
2121
</Dependency>
22-
<Dependency Name="Microsoft.DotNet.CodeAnalysis" Version="8.0.0-beta.23463.1">
22+
<Dependency Name="Microsoft.DotNet.CodeAnalysis" Version="9.0.0-beta.23518.2">
2323
<Uri>https://github.com/dotnet/arcade</Uri>
24-
<Sha>1d451c32dda2314c721adbf8829e1c0cd4e681ff</Sha>
24+
<Sha>6a5ca678aef84f34a1fccc46f76623f41da56553</Sha>
2525
</Dependency>
2626
<Dependency Name="Microsoft.DotNet.RemoteExecutor" Version="7.0.0-beta.22316.2" Pinned="true">
2727
<Uri>https://github.com/dotnet/arcade</Uri>
2828
<Sha>ccfe6da198c5f05534863bbb1bff66e830e0c6ab</Sha>
2929
</Dependency>
30-
<Dependency Name="Microsoft.Dotnet.Sdk.Internal" Version="8.0.100-rtm.23474.2">
30+
<Dependency Name="Microsoft.Dotnet.Sdk.Internal" Version="8.0.100-rtm.23522.1">
3131
<Uri>https://github.com/dotnet/installer</Uri>
32-
<Sha>f8a61a24ac843529a82a8f6ede35fc08a6fb8c35</Sha>
32+
<Sha>30d7d24a6592aa0c97f81ac36b563fab2b451b14</Sha>
3333
</Dependency>
34-
<Dependency Name="Microsoft.AspNetCore.App.Ref.Internal" Version="8.0.0-rtm.23477.14">
34+
<Dependency Name="Microsoft.AspNetCore.App.Ref.Internal" Version="8.0.0-rtm.23520.10">
3535
<Uri>https://github.com/dotnet/aspnetcore</Uri>
36-
<Sha>96da75d67ff058d95e14de12d9fc2ff215074e3c</Sha>
36+
<Sha>c9fa5f3a34605c93bffd1459a5e39e6bc63f50cc</Sha>
3737
</Dependency>
38-
<Dependency Name="Microsoft.AspNetCore.App.Ref" Version="8.0.0-rtm.23477.14">
38+
<Dependency Name="Microsoft.AspNetCore.App.Ref" Version="8.0.0-rtm.23520.10">
3939
<Uri>https://github.com/dotnet/aspnetcore</Uri>
40-
<Sha>96da75d67ff058d95e14de12d9fc2ff215074e3c</Sha>
40+
<Sha>c9fa5f3a34605c93bffd1459a5e39e6bc63f50cc</Sha>
4141
</Dependency>
42-
<Dependency Name="Microsoft.NETCore.App.Runtime.win-x64" Version="8.0.0-rtm.23477.9">
42+
<Dependency Name="Microsoft.NETCore.App.Runtime.win-x64" Version="8.0.0-rtm.23520.16">
4343
<Uri>https://github.com/dotnet/runtime</Uri>
44-
<Sha>885100b00bc944cbb698bc4cc2ec3ec18007534f</Sha>
44+
<Sha>11ad607efb2b31c5e1b906303fcd70341e9d5206</Sha>
4545
</Dependency>
46-
<Dependency Name="VS.Redist.Common.NetCore.SharedFramework.x64.8.0" Version="8.0.0-rtm.23477.9">
46+
<Dependency Name="VS.Redist.Common.NetCore.SharedFramework.x64.8.0" Version="8.0.0-rtm.23520.16">
4747
<Uri>https://github.com/dotnet/runtime</Uri>
48-
<Sha>885100b00bc944cbb698bc4cc2ec3ec18007534f</Sha>
48+
<Sha>11ad607efb2b31c5e1b906303fcd70341e9d5206</Sha>
4949
</Dependency>
50-
<Dependency Name="Microsoft.SourceBuild.Intermediate.source-build-reference-packages" Version="9.0.0-alpha.1.23475.1">
50+
<Dependency Name="Microsoft.SourceBuild.Intermediate.source-build-reference-packages" Version="9.0.0-alpha.1.23519.2">
5151
<Uri>https://github.com/dotnet/source-build-reference-packages</Uri>
52-
<Sha>0650b50b2a5263c735d12b5c36c5deb34e7e6b60</Sha>
52+
<Sha>d3fbf3c3d4c4f142ea12efceaa6efece9ad2e6b5</Sha>
5353
<SourceBuild RepoName="source-build-reference-packages" ManagedOnly="true" />
5454
</Dependency>
5555
<Dependency Name="Microsoft.CodeAnalysis" Version="4.6.0-1.23073.4">

0 commit comments

Comments
 (0)