Skip to content

Conversation

@am11
Copy link
Member

@am11 am11 commented Dec 2, 2022

Revives #3337
Supersedes #3492

@am11 am11 marked this pull request as ready for review December 2, 2022 09:42
@am11 am11 requested a review from a team as a code owner December 2, 2022 09:42
@mikem8361
Copy link
Contributor

I'm not sure about 2 of the CI failures (SOS.TaskNestedException/SOS.LineNums). It looks like newer lldb is segfaulting when loading the help python script (lldbhelper.py).

The other EEStack on 3.1 failure looks like a bug in the DAC GetJumpThunkTarget API that for some reason is being hit more with the new lldb. It can be disabled for 3.1 in the StackAndOtherTests script. DumpStack/EEStack are kind of unreliable on Linux/MacOS because there isn't any SEH to catch the segfaults like on Windows.

@am11
Copy link
Member Author

am11 commented Dec 3, 2022

Not sure how they are related. Last commit has no CentOS related change, and all tests were passing in previous commit. Maybe they are flaky tests?

@am11
Copy link
Member Author

am11 commented Dec 3, 2022

flaky tests

Resetting to 12fe666 revealed that it is indeed the case of flaky test. It's failing now while it was passing in previous attempt.

The other EEStack on 3.1 failure looks like a bug in the DAC GetJumpThunkTarget API that for some reason is being hit more with the new lldb.

netcoreapp3.1 and net5.0 are out of support, not sure how valuable it is to make them work with new lldb.

@mikem8361
Copy link
Contributor

Yes, NET Core 3.1 is going out of support (I think this month) but we haven't had a chance to remove testing against (and adding net 8.0). These DumpStack/EEStack command tests are already disabled for 7.0 and above. It is the commands themselves that make testing them unreliable. Maybe they should be disabled for Linux/MacOS under lldb for all runtime versions.

The other failures (SOS.TaskNestedException/SOS.LineNums) seem to be related to the new lldb (or at least the new lldb's python script support). I really don't know what to do about them.

@mikem8361
Copy link
Contributor

I'm not sure what to do here as far as the python script crash on lldb startup. Maybe @hoyosjs has some ideas.

@am11
Copy link
Member Author

am11 commented Dec 8, 2022

the python script crash on lldb startup.

The python script runs for every test, but not every test is failing. The python script looks related but it isn't.

If I run the container locally with a test script like this:

eng/docker-build.sh --docker-image mcr.microsoft.com/dotnet-buildtools/prereqs:centos-7 --source-directory $(pwd) --container-name diagnostics-100832 sh test.sh

where test.sh is:

/usr/local/bin/lldb --no-lldbinit \
  -o "settings set target.disable-aslr false" \
  -o "settings set interpreter.prompt-on-quit false" \
  -o "command script import /home/am11/projects/diagnostics/src/SOS/SOS.UnitTests/Scripts/lldbhelper.py" \
  -o version \
  $(pwd)/.dotnet-test/dotnet

it succeed, but if I remove $(pwd)/ from the last line:

/usr/local/bin/lldb --no-lldbinit \
  -o "settings set target.disable-aslr false" \
  -o "settings set interpreter.prompt-on-quit false" \
  -o "command script import /home/am11/projects/diagnostics/src/SOS/SOS.UnitTests/Scripts/lldbhelper.py" \
  -o version \
  .dotnet-test/dotnet

(which we are seeing in the CI build but I haven't found where in the code we are transforming those paths...) it throws sigsegv:

Initialize Docker Container
Docker version 20.10.18, build b40c2f6
user name: am11
user id: 1000
centos-7: Pulling from dotnet-buildtools/prereqs
Digest: sha256:55fb89b6c779a7e4afb3125d12de6b5130e574fb5b0342e3d7a7f76500bd2cd6
Status: Image is up to date for mcr.microsoft.com/dotnet-buildtools/prereqs:centos-7
mcr.microsoft.com/dotnet-buildtools/prereqs:centos-7
89c95a5a96f08388ca29dffc54ce8a833eef24e60620bf114f963c8f60fa875d
721552fad213bcbb1775f873eca64b7fce9254c4a55be73af5ecca2f1d08e975
container user name: vsts_am11
Creating mailbox file: Not a directory
Execute  sh test.sh
(lldb) target create ".dotnet-test/dotnet"
Current executable set to '.dotnet-test/dotnet' (x86_64).
(lldb) settings set target.disable-aslr false
(lldb) settings set interpreter.prompt-on-quit false
(lldb) command script import /home/am11/projects/diagnostics/src/SOS/SOS.UnitTests/Scripts/lldbhelper.py
 #0 0x00000000004214aa llvm::sys::PrintStackTrace(llvm::raw_ostream&) (/usr/local/bin/lldb+0x4214aa)
 #1 0x000000000041fa64 llvm::sys::RunSignalHandlers() (/usr/local/bin/lldb+0x41fa64)
 #2 0x000000000041fbc5 SignalHandler(int) (/usr/local/bin/lldb+0x41fbc5)
 #3 0x00007fee54458630 __restore_rt (/lib64/libpthread.so.0+0xf630)
 #4 0x00007fee4c669582 wcscmp (/lib64/libc.so.6+0xa7582)
 #5 0x00007fee4bfcca64 parse_cmd (/lib64/libedit.so.0+0x13a64)
 #6 0x00007fee4bfcba0d map_bind (/lib64/libedit.so.0+0x12a0d)
 #7 0x00007fee4bfdddc4 el_set (/lib64/libedit.so.0+0x24dc4)
 #8 0x00007fee4bfdd237 rl_variable_bind (/lib64/libedit.so.0+0x24237)
 #9 0x00007fee420ddbe3 initreadline (/usr/lib64/python2.7/lib-dynload/readline.so+0x3be3)
#10 0x00007fee4c2f0379 _PyImport_LoadDynamicModule (/lib64/libpython2.7.so.1.0+0xfa379)
#11 0x00007fee4c2ee451 (/lib64/libpython2.7.so.1.0+0xf8451)
#12 0x00007fee4c2ee736 (/lib64/libpython2.7.so.1.0+0xf8736)
#13 0x00007fee4c2ef07e PyImport_ImportModuleLevel (/lib64/libpython2.7.so.1.0+0xf907e)
#14 0x00007fee4c2d232f (/lib64/libpython2.7.so.1.0+0xdc32f)
#15 0x00007fee4c242073 PyObject_Call (/lib64/libpython2.7.so.1.0+0x4c073)
#16 0x00007fee4c2d3f07 PyEval_CallObjectWithKeywords (/lib64/libpython2.7.so.1.0+0xddf07)
#17 0x00007fee4c2d8bc5 PyEval_EvalFrameEx (/lib64/libpython2.7.so.1.0+0xe2bc5)
#18 0x00007fee4c2dd64d PyEval_EvalCodeEx (/lib64/libpython2.7.so.1.0+0xe764d)
#19 0x00007fee4c2dd752 PyEval_EvalCode (/lib64/libpython2.7.so.1.0+0xe7752)
#20 0x00007fee4c2ed53c PyImport_ExecCodeModuleEx (/lib64/libpython2.7.so.1.0+0xf753c)
#21 0x00007fee4c2ed7b8 (/lib64/libpython2.7.so.1.0+0xf77b8)
#22 0x00007fee4c2ee451 (/lib64/libpython2.7.so.1.0+0xf8451)
#23 0x00007fee4c2ee69d (/lib64/libpython2.7.so.1.0+0xf869d)
#24 0x00007fee4c2ef0b8 PyImport_ImportModuleLevel (/lib64/libpython2.7.so.1.0+0xf90b8)
#25 0x00007fee4c2d232f (/lib64/libpython2.7.so.1.0+0xdc32f)
#26 0x00007fee4c242073 PyObject_Call (/lib64/libpython2.7.so.1.0+0x4c073)
#27 0x00007fee4c2d3f07 PyEval_CallObjectWithKeywords (/lib64/libpython2.7.so.1.0+0xddf07)
#28 0x00007fee4c2d8bc5 PyEval_EvalFrameEx (/lib64/libpython2.7.so.1.0+0xe2bc5)
#29 0x00007fee4c2dd64d PyEval_EvalCodeEx (/lib64/libpython2.7.so.1.0+0xe764d)
#30 0x00007fee4c2dd752 PyEval_EvalCode (/lib64/libpython2.7.so.1.0+0xe7752)
#31 0x00007fee4c2f6b8f (/lib64/libpython2.7.so.1.0+0x100b8f)
#32 0x00007fee4c2f7a05 PyRun_StringFlags (/lib64/libpython2.7.so.1.0+0x101a05)
#33 0x00007fee4c2f93ab PyRun_SimpleStringFlags (/lib64/libpython2.7.so.1.0+0x1033ab)
#34 0x00007fee4ee37a6d lldb_private::ScriptInterpreterPythonImpl::InitializePrivate() (/usr/local/bin/../lib64/liblldb.so.9+0x143ba6d)
#35 0x00007fee4ee3b364 lldb_private::ScriptInterpreterPythonImpl::ScriptInterpreterPythonImpl(lldb_private::Debugger&) (/usr/local/bin/../lib64/liblldb.so.9+0x143f364)
#36 0x00007fee4ee3b5c9 lldb_private::ScriptInterpreterPythonImpl::CreateInstance(lldb_private::Debugger&) (/usr/local/bin/../lib64/liblldb.so.9+0x143f5c9)
#37 0x00007fee4e927eb9 lldb_private::PluginManager::GetScriptInterpreterForLanguage(lldb::ScriptLanguage, lldb_private::Debugger&) (/usr/local/bin/../lib64/liblldb.so.9+0xf2beb9)
#38 0x00007fee4e8dcaaa lldb_private::Debugger::GetScriptInterpreter(bool) (/usr/local/bin/../lib64/liblldb.so.9+0xee0aaa)
#39 0x00007fee50279076 CommandObjectCommandsScriptImport::DoExecute(lldb_private::Args&, lldb_private::CommandReturnObject&) (/usr/local/bin/../lib64/liblldb.so.9+0x287d076)
#40 0x00007fee4e9ddcb1 lldb_private::CommandObjectParsed::Execute(char const*, lldb_private::CommandReturnObject&) (/usr/local/bin/../lib64/liblldb.so.9+0xfe1cb1)
#41 0x00007fee4e9d035f lldb_private::CommandInterpreter::HandleCommand(char const*, lldb_private::LazyBool, lldb_private::CommandReturnObject&, lldb_private::ExecutionContext*, bool, bool) (/usr/local/bin/../lib64/liblldb.so.9+0xfd435f)
#42 0x00007fee4e9d1c32 lldb_private::CommandInterpreter::IOHandlerInputComplete(lldb_private::IOHandler&, std::string&) (/usr/local/bin/../lib64/liblldb.so.9+0xfd5c32)
#43 0x00007fee4e90f2f1 lldb_private::IOHandlerEditline::Run() (/usr/local/bin/../lib64/liblldb.so.9+0xf132f1)
#44 0x00007fee4e8df9b4 lldb_private::Debugger::ExecuteIOHandlers() (/usr/local/bin/../lib64/liblldb.so.9+0xee39b4)
#45 0x00007fee4e9c8933 lldb_private::CommandInterpreter::RunCommandInterpreter(bool, bool, lldb_private::CommandInterpreterRunOptions&) (/usr/local/bin/../lib64/liblldb.so.9+0xfcc933)
#46 0x00007fee4e5a63f1 lldb::SBDebugger::RunCommandInterpreter(bool, bool, lldb::SBCommandInterpreterRunOptions&, int&, bool&, bool&) (/usr/local/bin/../lib64/liblldb.so.9+0xbaa3f1)
#47 0x000000000040ae1e Driver::MainLoop() (/usr/local/bin/lldb+0x40ae1e)
#48 0x000000000040916f main (/usr/local/bin/lldb+0x40916f)
#49 0x00007fee4c5e4555 __libc_start_main (/lib64/libc.so.6+0x22555)
#50 0x000000000040a105 _start (/usr/local/bin/lldb+0x40a105)
Stack dump:
0.	Program arguments: /usr/local/bin/lldb --no-lldbinit -o settings set target.disable-aslr false -o settings set interpreter.prompt-on-quit false -o command script import /home/am11/projects/diagnostics/src/SOS/SOS.UnitTests/Scripts/lldbhelper.py -o version .dotnet-test/dotnet 
test.sh: line 6:    59 Segmentation fault      (core dumped) /usr/local/bin/lldb --no-lldbinit -o "settings set target.disable-aslr false" -o "settings set interpreter.prompt-on-quit false" -o "command script import /home/am11/projects/diagnostics/src/SOS/SOS.UnitTests/Scripts/lldbhelper.py" -o version .dotnet-test/dotnet

Current theory is that this is happening with dot files.

@mikem8361
Copy link
Contributor

It looks like your recent change made the tests fail with the segfault in python even more.

@am11
Copy link
Member Author

am11 commented Dec 10, 2022

I added "Print pwd" temporarily to check the current path and compare it to the one in the error message. It has revealed nothing new to the experiment in my previous comment, so it can be deleted.

@am11
Copy link
Member Author

am11 commented Jan 11, 2023

After merge from main, only SOS.TaskNestedException test is failing.

I think these are intermittent failures, re-running the CI build multiple times against the same commit will give different results. It could be the problem with this specific lldb and python 2.7 installation.

@mikem8361 mikem8361 closed this Feb 14, 2023
@mikem8361 mikem8361 reopened this Feb 14, 2023
@mikem8361
Copy link
Contributor

/azp run

@azure-pipelines
Copy link

Azure Pipelines successfully started running 1 pipeline(s).

@mikem8361 mikem8361 added the DO NOT MERGE do not merge this PR label Apr 26, 2023
@mikem8361 mikem8361 self-assigned this Apr 26, 2023
@mikem8361
Copy link
Contributor

This PR isn't done yet: 2 of the new docker images don't have lldb installed:

Debian_Bullseye         mcr.microsoft.com/dotnet-buildtools/prereqs:debian-11-amd64
Ubuntu_18_04            mcr.microsoft.com/dotnet-buildtools/prereqs:ubuntu-18.04

I need to figure out how to add lldb to these images.

@mikem8361 mikem8361 merged commit c31c5c8 into dotnet:main Apr 26, 2023
mikem8361 pushed a commit that referenced this pull request Jun 5, 2023
* Add -list to !sos maddress (#3798)

- Added a way to list all kinds of a specific memory type
- Added caching to NativeAddressHelper, as it was recalculating every run

* Add !dumpheap fragmentation statistics (#3799)

In my previous !dumpheap change I overlooked the fragmentation output.  This adds fragmentation output in the exact same was as the previous C++ code.

The new code now validates the Free region is actually followed by the next object, and that those objects do not live on the Pinned, Frozen, or Large object heaps.

* Fix IndexOutOfRangeException (#3800)

* Fix IndexOutOfRangeException

Fix an IndexOutOfRangeException with !sos maddress.

* Add initial parts length check

* One more fix

* maddress -orderBySize (#3803)

Added an option to order the output of !maddress by size descending, as requested by the GC team.

* [main] Update dependencies from dotnet/source-build-reference-packages (#3787)

[main] Update dependencies from dotnet/source-build-reference-packages

* Update dependencies from https://github.com/dotnet/aspnetcore build 20230406.4 (#3807)

[main] Update dependencies from dotnet/aspnetcore

* Update ClrMD version (#3804)

I moved the the "Generation" enum to ClrMD itself. It's far more useful (and accurate) to talk about an object's generation as a member of an enum which describes it rather than a simple integer. This change flowed through the SOS commands which used ClrSegment.GetGeneration.

I manually tested all commands affected.

* Reimplement !traverseheap (#3810)

* Add TraverseHeapCommand

* Remove HeapTraverser

* Remove TypeTree

* Remove Flags

* Update dependencies from https://github.com/dotnet/source-build-reference-packages build 20230411.2 (#3814)

[main] Update dependencies from dotnet/source-build-reference-packages

* Update dependencies from https://github.com/dotnet/aspnetcore build 20230410.11 (#3817)

[main] Update dependencies from dotnet/aspnetcore

* Update dependencies from https://github.com/dotnet/aspnetcore build 20230412.2 (#3821)

[main] Update dependencies from dotnet/aspnetcore

* Update dependencies from https://github.com/dotnet/source-build-reference-packages build 20230412.2 (#3820)

Microsoft.SourceBuild.Intermediate.source-build-reference-packages
 From Version 8.0.0-alpha.1.23211.2 -> To Version 8.0.0-alpha.1.23212.2

Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>

* Change lldb behavior for new managed command implementations (#3822)

* Update Logging and AsyncInterfaces versions (#3819)

* Update Logging and AsyncInterfaces versions

* Update Versions.props

* Reimplement !verifyobj and !dumpruntimetypes (#3811)

* Update ClrMD Version

* Add C# based VerifyHeap command

* Fix verifyobj command impl

* Add !sos dumpruntimetypes

* Remove dead code

* Remove object verification code

* Remove last use of RefIterator

* Remove RefIterator

* Test updates

* Update src/Microsoft.Diagnostics.ExtensionCommands/ExtensionMethodHelpers.cs

Co-authored-by: Günther Foidl <[email protected]>

* Update src/Microsoft.Diagnostics.ExtensionCommands/VerifyObjectCommand.cs

Co-authored-by: Günther Foidl <[email protected]>

* Fix managed commands

* Update soscommand.cpp

---------

Co-authored-by: Günther Foidl <[email protected]>

* Support debug connecting to a remote port (#3813)

* support for connect to remote port

* Fix compilation
Add \n in the last line of dbgshim.h
Remove sleep to attach debugger.
Add exports.

* Implement !threadpool in C# (#3824)

* Add initial ThreadPoolCommand

Only implemented dumping work items.

* Remove -live

* Fix issue with Marshal.SizeOf

Marshal.SizeOf does not allow enums.  Unsafe.SizeOf is what we want here.

* Implement the remainder of ThreadPool

* Use C# version of !threadpool

* Remove ObjectIterator and GCHeap

* Bump clrmd version

* Fix issue with usingPortableCompletionPorts

threadPool.Portable means that we found a PortableThreadPool in the BCL.  We need to check that we found that portable threadpool and also that the PortableIOField is true (or missing), instead of if the portable threadpool exists at all.

* Move cancellation to inside the loop

* Update dependencies from https://github.com/dotnet/source-build-reference-packages build 20230413.2 (#3825)

[main] Update dependencies from dotnet/source-build-reference-packages

* Update dependencies from https://github.com/dotnet/symstore build 20230412.1 (#3826)

[main] Update dependencies from dotnet/symstore

* Update dependencies from https://github.com/dotnet/aspnetcore build 20230413.2 (#3827)

[main] Update dependencies from dotnet/aspnetcore

* dotnet-dump returns failure after exhausting retries on ERROR_PARTIAL_COPY (#3830)

* updated to retry on ERROR_PARTIAL_COPY more times and to return a failure on the last loop

* Update Dumper.Windows.cs

---------

Co-authored-by: apmoskevitz <[email protected]>

* Update dependencies from https://github.com/dotnet/source-build-reference-packages build 20230414.3 (#3831)

[main] Update dependencies from dotnet/source-build-reference-packages

* Update ClrMD (#3835)

* Updates with breaking changes from ClrMD 3.0 beta

* Update NativeAddressHelper with ISOSDacInterface13 improvements

* Fix null size issue

* Fix assert

* Properly handle GCBookkeeping regions

* Fix incorrect rendering of counters (#3816)

* Fix incorrect rendering of counters

* Fixing IDE0008 Use explicit type instead of 'var' build error

* PR feedback and truncate output for multiple providers

* Simplify counter refresh console output

* Better drawing for very small console height screens

* Remove lambda to avoid unnecessary memory allocations

* Fix #3699 (#3836)

* Update dependencies from https://github.com/dotnet/source-build-reference-packages build 20230417.1 (#3838)

[main] Update dependencies from dotnet/source-build-reference-packages

* Remove BOM marker from the middle of !traversexml (#3844)

* Update dependencies from https://github.com/dotnet/symstore build 20230418.1 (#3845)

[main] Update dependencies from dotnet/symstore

* Update dependencies from https://github.com/dotnet/source-build-reference-packages build 20230418.5 (#3846)

[main] Update dependencies from dotnet/source-build-reference-packages

* Update dependencies from https://github.com/dotnet/source-build-reference-packages build 20230420.1 (#3847)

[main] Update dependencies from dotnet/source-build-reference-packages

* Update dependencies from https://github.com/dotnet/source-build-reference-packages build 20230421.1 (#3848)

[main] Update dependencies from dotnet/source-build-reference-packages

* Reimplement !dso and !fq in C# (#3837)

* Add initial managed !fq command

* Update ClrMD version

* Finish managed !fq implementation

* Implement managed !dumpstackobjs

* Remove !dso and !fq C++ implementations

* Remove more dead code

* More dead code

* Remove ObjectSize helpers

* Remove usages of g_snapshot

* Remove GCHeap logic from SOS

* Cleanup

* Add RcwCleanup output

* Ensure what we don't read past stack range

* Change validation

* Update validation

* Add registers, fix output

* Remove !dso heading in C++

* Fix dso regexes

* Always print the statistics table

* Always print dumpheap statistics

* Add proper flush check

* Restore previous DumpHeapService behavior

Only print header when we have objects.

* Update ClrMD version

* Code review feedback

* TESTONLY:  Add !runtimes to get more diagnostics

* TESTONLY:  Fix previous command

* TESTONLY: Write all warning/errors to normal

* TESTONLY: Printf debugging

* Fix DumpStackObject failures. Remove the test only code. Enable sos logging to a file

---------

Co-authored-by: Mike McLaughlin <[email protected]>

* Update dependencies from https://github.com/dotnet/source-build-reference-packages build 20230424.3 (#3851)

[main] Update dependencies from dotnet/source-build-reference-packages

* Update dependencies from https://github.com/dotnet/symstore build 20230424.1 (#3850)

[main] Update dependencies from dotnet/symstore

* Update dependencies from https://github.com/dotnet/source-build-reference-packages build 20230425.2 (#3854)

[main] Update dependencies from dotnet/source-build-reference-packages

* Improve lldb discovery for tests (#3855)

* Update docker images to latest tags (#3535)

* Update docker images to latest tags

* Make the CentOS7 builds temporarily build only.

* Add buildAndSkipTest. Remove _BuildOnly; it didn't do what it was named

---------

Co-authored-by: Mike McLaughlin <[email protected]>

* Fit and Finish: Clean up SOS command table output (#3852)

* Initial version of Table

* Update !dumpheap

* Update DumpObjGCRefsHelper.cs

* Update !dumpruntimetypes

* Fix dml escape issue

* Update !dso

* Update !eeheap

* Update !fq

* Fix truncation for types

* Update FindEphemeralReferencesToLOHCommand.cs

* Update !lno

* Update !findpointersin

* Add BorderedTable

* Update !ephrefs

* Update !sos GCHeapStat

* Update !gcroot

* Update GCToNative

* Update GCWhere

* Update maddress

* Update SizeStatsCommand.cs

* Update !vh

* Update !threadpool

* Add a reason to !verifyheap

* Remove debug code

* Dml cleanup

* Remove DumpHeapSegment

* Update comments

* Fix test whitespace dependency

* Revert previous test behavior, change !dumpheap

* Ignore whitespace

* One last fix?

* Code review feedback

* Update dependencies from https://github.com/dotnet/source-build-reference-packages build 20230426.1 (#3858)

[main] Update dependencies from dotnet/source-build-reference-packages

* Deal with 8.0 DAC passing bigger thread context to data target's GetThreadContext() (#3856)

* Enable UpDownCounter For Dotnet-Counters and Dotnet-Monitor (#3849)

* Use value from UDC event payload.
* Adding support for UpDownCounter reporting a value instead of a rate
* Check for payload version, don't attempt to parse if version 0
* Don't get rate for updowncounter payload

* dotnet-stack: Fix parsing of thread names (#3860)

* Fix issue with !sos maddress (#3868)

Previous refactoring accidently eliminated the case where the CLR region perfectly overlapped the memory region.

* [main] Update dependencies from dotnet/symstore (#3863)

* Update dependencies from https://github.com/dotnet/symstore build 20230501.1

Microsoft.SymbolStore
 From Version 1.0.422401 -> To Version 1.0.425101

* Update dependencies from https://github.com/dotnet/symstore build 20230508.1

Microsoft.SymbolStore
 From Version 1.0.422401 -> To Version 1.0.425801

---------

Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>

* [main] Update dependencies from dotnet/source-build-reference-packages (#3861)

* Update dependencies from https://github.com/dotnet/source-build-reference-packages build 20230428.2

Microsoft.SourceBuild.Intermediate.source-build-reference-packages
 From Version 8.0.0-alpha.1.23226.1 -> To Version 8.0.0-alpha.1.23228.2

* Update dependencies from https://github.com/dotnet/source-build-reference-packages build 20230501.2

Microsoft.SourceBuild.Intermediate.source-build-reference-packages
 From Version 8.0.0-alpha.1.23226.1 -> To Version 8.0.0-alpha.1.23251.2

* Update dependencies from https://github.com/dotnet/source-build-reference-packages build 20230503.2

Microsoft.SourceBuild.Intermediate.source-build-reference-packages
 From Version 8.0.0-alpha.1.23226.1 -> To Version 8.0.0-alpha.1.23253.2

* Update dependencies from https://github.com/dotnet/source-build-reference-packages build 20230508.2

Microsoft.SourceBuild.Intermediate.source-build-reference-packages
 From Version 8.0.0-alpha.1.23226.1 -> To Version 8.0.0-alpha.1.23258.2

---------

Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>

* fix implementation of RegisterForRuntimeStartupRemotePort and CreateCoreDbgRemotePort (#3869)

* Add static variable names to !gcroot (#3872)

Static variables can be opaque to the user when looking at !gcroot, since they show up as a pinned handle to an object array.  It's also difficult to distinguish things _other_ than static variables which follow the same pattern.  This change adds the static variable name to the output of !gcroot to help distinguish these differences.

- Remove "this will take a while" warning output from !dumpheap -short.
- Added StaticVariableService to resolve the address/objects of static variables.  This can be a relatively expensive operation, so it's important to cache the result.
- Updated GCRootCommand with the heuristic.

* Fix issue with nint/nuint formatting (#3871)

* Fix integer formatting

StringBuilder.Format doesn't respect "x" when with nint/nuint.

* Update Formats.cs

* [main] Update dependencies from microsoft/clrmd (#3864)

[main] Update dependencies from microsoft/clrmd

* Update DumpAsync to allow method table and object address to not have 0x prefix (#3876)

* Update DumpAsync to allow method table and object address to not have 0x prefix

* Specify null-return OK

* Update dependencies from https://github.com/dotnet/symstore build 20230515.1 (#3879)

[main] Update dependencies from dotnet/symstore

* [main] Update dependencies from dotnet/source-build-reference-packages (#3870)

[main] Update dependencies from dotnet/source-build-reference-packages

* Update dependencies from https://github.com/dotnet/source-build-reference-packages build 20230516.4 (#3881)

[main] Update dependencies from dotnet/source-build-reference-packages

* Fix native build broken by glibc dependencies. Fix latest 8.0 runtime testing. (#3878)

* Fix native build

Update dependencies from https://github.com/dotnet/arcade build 20230424.1

Microsoft.DotNet.Arcade.Sdk , Microsoft.DotNet.CodeAnalysis
 From Version 8.0.0-beta.23168.1 -> To Version 8.0.0-beta.23224.1

Dependency coherency updates

Microsoft.SourceLink.GitHub
 From Version 1.2.0-beta-23165-02 -> To Version 8.0.0-beta.23218.3 (parent: Microsoft.DotNet.Arcade.Sdk

Update dependencies from https://github.com/dotnet/arcade build 20230505.2

Microsoft.DotNet.Arcade.Sdk , Microsoft.DotNet.CodeAnalysis
 From Version 8.0.0-beta.23168.1 -> To Version 8.0.0-beta.23255.2

Dependency coherency updates

Microsoft.SourceLink.GitHub
 From Version 1.2.0-beta-23165-02 -> To Version 8.0.0-beta.23218.3 (parent: Microsoft.DotNet.Arcade.Sdk

Update dependencies from https://github.com/dotnet/source-build-reference-packages build 20230512.1

Microsoft.SourceBuild.Intermediate.source-build-reference-packages
 From Version 8.0.0-alpha.1.23258.2 -> To Version 8.0.0-alpha.1.23262.1

Update dependencies from https://github.com/dotnet/arcade build 20230512.5

Microsoft.DotNet.Arcade.Sdk , Microsoft.DotNet.CodeAnalysis
 From Version 8.0.0-beta.23168.1 -> To Version 8.0.0-beta.23262.5

Dependency coherency updates

Microsoft.SourceLink.GitHub
 From Version 1.2.0-beta-23165-02 -> To Version 8.0.0-beta.23218.3 (parent: Microsoft.DotNet.Arcade.Sdk

Update dependencies from https://github.com/dotnet/installer build 20230514.2

Microsoft.Dotnet.Sdk.Internal
 From Version 8.0.100-preview.3.23156.1 -> To Version 8.0.100-preview.5.23264.2

Update dependencies from https://github.com/dotnet/runtime build 20230515.1

Microsoft.NETCore.App.Runtime.win-x64 , VS.Redist.Common.NetCore.SharedFramework.x64.8.0
 From Version 8.0.0-preview.3.23155.1 -> To Version 8.0.0-preview.5.23265.1

Update dependencies from https://github.com/dotnet/aspnetcore build 20230515.1

Microsoft.AspNetCore.App.Ref , Microsoft.AspNetCore.App.Ref.Internal
 From Version 8.0.0-preview.4.23213.2 -> To Version 8.0.0-preview.5.23265.1

* Fix PR test legs

* Update dependencies from https://github.com/microsoft/clrmd build 20230517.2 (#3883)

[main] Update dependencies from microsoft/clrmd

* [main] Update dependencies from dotnet/runtime (#3857)

* Update dependencies from https://github.com/dotnet/runtime build 20230427.1

Microsoft.NETCore.App.Runtime.win-x64 , VS.Redist.Common.NetCore.SharedFramework.x64.8.0
 From Version 8.0.0-preview.3.23155.1 -> To Version 8.0.0-preview.5.23227.1

* Update dependencies from https://github.com/dotnet/runtime build 20230428.1

Microsoft.NETCore.App.Runtime.win-x64 , VS.Redist.Common.NetCore.SharedFramework.x64.8.0
 From Version 8.0.0-preview.3.23155.1 -> To Version 8.0.0-preview.5.23228.1

* Update dependencies from https://github.com/dotnet/runtime build 20230428.8

Microsoft.NETCore.App.Runtime.win-x64 , VS.Redist.Common.NetCore.SharedFramework.x64.8.0
 From Version 8.0.0-preview.3.23155.1 -> To Version 8.0.0-preview.5.23228.8

* Update dependencies from https://github.com/dotnet/runtime build 20230429.2

Microsoft.NETCore.App.Runtime.win-x64 , VS.Redist.Common.NetCore.SharedFramework.x64.8.0
 From Version 8.0.0-preview.3.23155.1 -> To Version 8.0.0-preview.5.23229.2

* Update dependencies from https://github.com/dotnet/runtime build 20230501.1

Microsoft.NETCore.App.Runtime.win-x64 , VS.Redist.Common.NetCore.SharedFramework.x64.8.0
 From Version 8.0.0-preview.3.23155.1 -> To Version 8.0.0-preview.5.23251.1

* Update dependencies from https://github.com/dotnet/runtime build 20230502.1

Microsoft.NETCore.App.Runtime.win-x64 , VS.Redist.Common.NetCore.SharedFramework.x64.8.0
 From Version 8.0.0-preview.3.23155.1 -> To Version 8.0.0-preview.5.23252.1

* Update dependencies from https://github.com/dotnet/runtime build 20230502.13

Microsoft.NETCore.App.Runtime.win-x64 , VS.Redist.Common.NetCore.SharedFramework.x64.8.0
 From Version 8.0.0-preview.3.23155.1 -> To Version 8.0.0-preview.5.23252.13

* Update dependencies from https://github.com/dotnet/runtime build 20230504.1

Microsoft.NETCore.App.Runtime.win-x64 , VS.Redist.Common.NetCore.SharedFramework.x64.8.0
 From Version 8.0.0-preview.3.23155.1 -> To Version 8.0.0-preview.5.23254.1

* Update dependencies from https://github.com/dotnet/runtime build 20230504.7

Microsoft.NETCore.App.Runtime.win-x64 , VS.Redist.Common.NetCore.SharedFramework.x64.8.0
 From Version 8.0.0-preview.3.23155.1 -> To Version 8.0.0-preview.5.23254.7

* Update dependencies from https://github.com/dotnet/runtime build 20230505.8

Microsoft.NETCore.App.Runtime.win-x64 , VS.Redist.Common.NetCore.SharedFramework.x64.8.0
 From Version 8.0.0-preview.3.23155.1 -> To Version 8.0.0-preview.5.23255.8

* Update dependencies from https://github.com/dotnet/runtime build 20230506.4

Microsoft.NETCore.App.Runtime.win-x64 , VS.Redist.Common.NetCore.SharedFramework.x64.8.0
 From Version 8.0.0-preview.3.23155.1 -> To Version 8.0.0-preview.5.23256.4

* Update dependencies from https://github.com/dotnet/runtime build 20230507.3

Microsoft.NETCore.App.Runtime.win-x64 , VS.Redist.Common.NetCore.SharedFramework.x64.8.0
 From Version 8.0.0-preview.3.23155.1 -> To Version 8.0.0-preview.5.23257.3

* Update dependencies from https://github.com/dotnet/runtime build 20230509.1

Microsoft.NETCore.App.Runtime.win-x64 , VS.Redist.Common.NetCore.SharedFramework.x64.8.0
 From Version 8.0.0-preview.3.23155.1 -> To Version 8.0.0-preview.5.23259.1

* Update dependencies from https://github.com/dotnet/runtime build 20230509.10

Microsoft.NETCore.App.Runtime.win-x64 , VS.Redist.Common.NetCore.SharedFramework.x64.8.0
 From Version 8.0.0-preview.3.23155.1 -> To Version 8.0.0-preview.5.23259.10

* Update dependencies from https://github.com/dotnet/runtime build 20230510.3

Microsoft.NETCore.App.Runtime.win-x64 , VS.Redist.Common.NetCore.SharedFramework.x64.8.0
 From Version 8.0.0-preview.3.23155.1 -> To Version 8.0.0-preview.5.23260.3

* Update dependencies from https://github.com/dotnet/runtime build 20230512.13

Microsoft.NETCore.App.Runtime.win-x64 , VS.Redist.Common.NetCore.SharedFramework.x64.8.0
 From Version 8.0.0-preview.3.23155.1 -> To Version 8.0.0-preview.5.23262.13

* Update dependencies from https://github.com/dotnet/runtime build 20230513.4

Microsoft.NETCore.App.Runtime.win-x64 , VS.Redist.Common.NetCore.SharedFramework.x64.8.0
 From Version 8.0.0-preview.3.23155.1 -> To Version 8.0.0-preview.5.23263.4

* Update dependencies from https://github.com/dotnet/runtime build 20230515.1

Microsoft.NETCore.App.Runtime.win-x64 , VS.Redist.Common.NetCore.SharedFramework.x64.8.0
 From Version 8.0.0-preview.3.23155.1 -> To Version 8.0.0-preview.5.23265.1

* Update dependencies from https://github.com/dotnet/runtime build 20230515.26

Microsoft.NETCore.App.Runtime.win-x64 , VS.Redist.Common.NetCore.SharedFramework.x64.8.0
 From Version 8.0.0-preview.3.23155.1 -> To Version 8.0.0-preview.5.23265.26

* Update dependencies from https://github.com/dotnet/runtime build 20230517.1

Microsoft.NETCore.App.Runtime.win-x64 , VS.Redist.Common.NetCore.SharedFramework.x64.8.0
 From Version 8.0.0-preview.3.23155.1 -> To Version 8.0.0-preview.5.23267.1

* Update dependencies from https://github.com/dotnet/runtime build 20230518.1

Microsoft.NETCore.App.Runtime.win-x64 , VS.Redist.Common.NetCore.SharedFramework.x64.8.0
 From Version 8.0.0-preview.5.23265.1 -> To Version 8.0.0-preview.5.23268.1

---------

Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>
Co-authored-by: Mike McLaughlin <[email protected]>

* Update dependencies from https://github.com/microsoft/clrmd build 20230518.1 (#3887)

[main] Update dependencies from microsoft/clrmd

* Update dependencies from https://github.com/dotnet/aspnetcore build 20230518.15 (#3886)

[main] Update dependencies from dotnet/aspnetcore

* Update dependencies from https://github.com/dotnet/runtime build 20230518.14 (#3888)

[main] Update dependencies from dotnet/runtime

* Add PGO to DacpTieredVersionData (#3890)

PGO introduces two new native code version types. The runtime already has this
change, but SOS does not.

* Update dependencies from https://github.com/dotnet/source-build-reference-packages build 20230519.1 (#3894)

[main] Update dependencies from dotnet/source-build-reference-packages

* Update dependencies from https://github.com/dotnet/aspnetcore build 20230519.8 (#3891)

[main] Update dependencies from dotnet/aspnetcore

* Update dependencies from https://github.com/dotnet/aspnetcore build 20230520.1 (#3896)

[main] Update dependencies from dotnet/aspnetcore

* Update dependencies from https://github.com/dotnet/aspnetcore build 20230521.1 (#3899)

[main] Update dependencies from dotnet/aspnetcore

* Update dependencies from https://github.com/dotnet/arcade build 20230519.2 (#3897)

[main] Update dependencies from dotnet/arcade
- Coherency Updates:
  - Microsoft.SourceLink.GitHub: from 8.0.0-beta.23218.3 to 8.0.0-beta.23252.2 (parent: Microsoft.DotNet.Arcade.Sdk)

* [main] Update dependencies from dotnet/installer (#3898)

[main] Update dependencies from dotnet/installer


 - Fix single-file version

* Clean up IRuntime instance flushing (#3895)

* Fix ClrRuntime flushing which is causing random SOS test failures in gcroot

* Code review feedback

* More changes

* Fix failures

* Update dependencies from https://github.com/microsoft/clrmd build 20230519.1 (#3892)

Microsoft.Diagnostics.Runtime , Microsoft.Diagnostics.Runtime.Utilities
 From Version 3.0.0-beta.23268.1 -> To Version 3.0.0-beta.23269.1

Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>

* [main] Update dependencies from dotnet/runtime (#3893)

* Update dependencies from https://github.com/dotnet/runtime build 20230519.11

Microsoft.NETCore.App.Runtime.win-x64 , VS.Redist.Common.NetCore.SharedFramework.x64.8.0
 From Version 8.0.0-preview.5.23268.14 -> To Version 8.0.0-preview.5.23269.11

* Update dependencies from https://github.com/dotnet/runtime build 20230520.7

Microsoft.NETCore.App.Runtime.win-x64 , VS.Redist.Common.NetCore.SharedFramework.x64.8.0
 From Version 8.0.0-preview.5.23268.14 -> To Version 8.0.0-preview.5.23270.7

* Update dependencies from https://github.com/dotnet/runtime build 20230522.1

Microsoft.NETCore.App.Runtime.win-x64 , VS.Redist.Common.NetCore.SharedFramework.x64.8.0
 From Version 8.0.0-preview.5.23268.14 -> To Version 8.0.0-preview.5.23272.1

---------

Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>

* Only run sign, package and publish on internal builds

* Update dependencies from https://github.com/dotnet/source-build-reference-packages build 20230523.1 (#3904)

Microsoft.SourceBuild.Intermediate.source-build-reference-packages
 From Version 8.0.0-alpha.1.23269.1 -> To Version 8.0.0-alpha.1.23273.1

Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>

* Update dependencies from https://github.com/dotnet/runtime build 20230523.1 (#3903)

Microsoft.NETCore.App.Runtime.win-x64 , VS.Redist.Common.NetCore.SharedFramework.x64.8.0
 From Version 8.0.0-preview.5.23272.1 -> To Version 8.0.0-preview.5.23273.1

Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>

* Update dependencies from https://github.com/dotnet/aspnetcore build 20230523.2 (#3902)

Microsoft.AspNetCore.App.Ref , Microsoft.AspNetCore.App.Ref.Internal
 From Version 8.0.0-preview.5.23271.1 -> To Version 8.0.0-preview.5.23273.2

Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>

* Test against new Ubuntu 22.04 image (#3906)

* Test against new Ubuntu 22.04 image

* Add python path

* Update dependencies from https://github.com/dotnet/source-build-reference-packages build 20230523.2 (#3909)

Microsoft.SourceBuild.Intermediate.source-build-reference-packages
 From Version 8.0.0-alpha.1.23273.1 -> To Version 8.0.0-alpha.1.23273.2

Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>

* Update dependencies from https://github.com/dotnet/runtime build 20230524.1 (#3908)

Microsoft.NETCore.App.Runtime.win-x64 , VS.Redist.Common.NetCore.SharedFramework.x64.8.0
 From Version 8.0.0-preview.5.23273.1 -> To Version 8.0.0-preview.5.23274.1

Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>

* Update dependencies from https://github.com/dotnet/aspnetcore build 20230523.11 (#3907)

Microsoft.AspNetCore.App.Ref , Microsoft.AspNetCore.App.Ref.Internal
 From Version 8.0.0-preview.5.23273.2 -> To Version 8.0.0-preview.6.23273.11

Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>

* Update dependencies from https://github.com/dotnet/source-build-reference-packages build 20230524.2 (#3912)

Microsoft.SourceBuild.Intermediate.source-build-reference-packages
 From Version 8.0.0-alpha.1.23273.2 -> To Version 8.0.0-alpha.1.23274.2

Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>

* Update dependencies from https://github.com/dotnet/aspnetcore build 20230524.6 (#3910)

Microsoft.AspNetCore.App.Ref , Microsoft.AspNetCore.App.Ref.Internal
 From Version 8.0.0-preview.6.23273.11 -> To Version 8.0.0-preview.6.23274.6

Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>

* Update dependencies from https://github.com/dotnet/runtime build 20230524.13 (#3911)

Microsoft.NETCore.App.Runtime.win-x64 , VS.Redist.Common.NetCore.SharedFramework.x64.8.0
 From Version 8.0.0-preview.5.23274.1 -> To Version 8.0.0-preview.5.23274.13

Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>

* Update dependencies from https://github.com/dotnet/symstore build 20230525.1 (#3915)

Microsoft.SymbolStore
 From Version 1.0.426501 -> To Version 1.0.427501

Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>

* Update dependencies from https://github.com/dotnet/runtime build 20230526.1 (#3916)

Microsoft.NETCore.App.Runtime.win-x64 , VS.Redist.Common.NetCore.SharedFramework.x64.8.0
 From Version 8.0.0-preview.5.23274.13 -> To Version 8.0.0-preview.5.23276.1

Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>

* Update dependencies from https://github.com/dotnet/aspnetcore build 20230525.7 (#3914)

Microsoft.AspNetCore.App.Ref , Microsoft.AspNetCore.App.Ref.Internal
 From Version 8.0.0-preview.6.23274.6 -> To Version 8.0.0-preview.6.23275.7

Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>

* Fix gcroot test failures (#3919)

The SOS DataReader impl given to clrmd didn't copy the thread context correctly.

A future PR will improve the IThread.GetThreadContext() interface method to reduce these kind of bugs.

* Update dependencies from https://github.com/dotnet/aspnetcore build 20230526.6 (#3920)

[main] Update dependencies from dotnet/aspnetcore

* Update dependencies from https://github.com/dotnet/runtime build 20230526.2 (#3921)

[main] Update dependencies from dotnet/runtime

* Update dependencies from https://github.com/dotnet/aspnetcore build 20230527.1 (#3922)

[main] Update dependencies from dotnet/aspnetcore

* Update dependencies from https://github.com/dotnet/arcade build 20230529.1 (#3923)

[main] Update dependencies from dotnet/arcade

* Update dependencies from https://github.com/dotnet/runtime build 20230529.2 (#3925)

[main] Update dependencies from dotnet/runtime

* [main] Update dependencies from dotnet/installer (#3924)

[main] Update dependencies from dotnet/installer


 - Update single-file runtime version

* Update dependencies from https://github.com/dotnet/runtime build 20230529.6 (#3928)

[main] Update dependencies from dotnet/runtime

* Update dependencies from https://github.com/dotnet/aspnetcore build 20230529.8 (#3927)

[main] Update dependencies from dotnet/aspnetcore

* Update dependencies from https://github.com/dotnet/source-build-reference-packages build 20230529.2 (#3929)

[main] Update dependencies from dotnet/source-build-reference-packages

* Update dependencies from https://github.com/dotnet/aspnetcore build 20230531.2 (#3930)

[main] Update dependencies from dotnet/aspnetcore

* Update dependencies from https://github.com/dotnet/runtime build 20230530.5 (#3931)

[main] Update dependencies from dotnet/runtime

* Update dependencies from https://github.com/dotnet/runtime build 20230601.1 (#3933)

[main] Update dependencies from dotnet/runtime

* Update dependencies from https://github.com/dotnet/aspnetcore build 20230531.5 (#3932)

[main] Update dependencies from dotnet/aspnetcore

* Update dependencies from https://github.com/dotnet/source-build-reference-packages build 20230531.1 (#3936)

[main] Update dependencies from dotnet/source-build-reference-packages

* Update dependencies from https://github.com/dotnet/aspnetcore build 20230601.3 (#3937)

[main] Update dependencies from dotnet/aspnetcore

* Update dependencies from https://github.com/dotnet/source-build-reference-packages build 20230601.1 (#3939)

Microsoft.SourceBuild.Intermediate.source-build-reference-packages
 From Version 8.0.0-alpha.1.23281.1 -> To Version 8.0.0-alpha.1.23301.1

Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>

* Update dependencies from https://github.com/dotnet/runtime build 20230602.1 (#3938)

Microsoft.NETCore.App.Runtime.win-x64 , VS.Redist.Common.NetCore.SharedFramework.x64.8.0
 From Version 8.0.0-preview.6.23301.1 -> To Version 8.0.0-preview.6.23302.1

Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>

* Fix Watson crash on null module names (#3940)

* Update dependencies from https://github.com/microsoft/clrmd build 20230602.1 (#3942)

[main] Update dependencies from microsoft/clrmd

* Update dependencies from https://github.com/dotnet/symstore build 20230602.1 (#3943)

[main] Update dependencies from dotnet/symstore

* Update dependencies from https://github.com/dotnet/runtime build 20230602.11 (#3944)

[main] Update dependencies from dotnet/runtime

* Update dependencies from https://github.com/dotnet/aspnetcore build 20230602.1 (#3941)

[main] Update dependencies from dotnet/aspnetcore

* Update dependencies from https://github.com/dotnet/source-build-reference-packages build 20230602.3 (#3945)

[main] Update dependencies from dotnet/source-build-reference-packages

* Update dependencies from https://github.com/dotnet/runtime build 20230603.4 (#3946)

[main] Update dependencies from dotnet/runtime

* Update dependencies from https://github.com/dotnet/arcade build 20230602.3 (#3947)

[main] Update dependencies from dotnet/arcade

* Update dependencies from https://github.com/dotnet/runtime build 20230604.2 (#3949)

[main] Update dependencies from dotnet/runtime

* [main] Update dependencies from dotnet/installer (#3948)

[main] Update dependencies from dotnet/installer


 - Update single-file version

---------

Co-authored-by: Lee Culver <[email protected]>
Co-authored-by: dotnet-maestro[bot] <42748379+dotnet-maestro[bot]@users.noreply.github.com>
Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>
Co-authored-by: Juan Hoyos <[email protected]>
Co-authored-by: Günther Foidl <[email protected]>
Co-authored-by: Thays Grazia <[email protected]>
Co-authored-by: Andrew Moskevitz <[email protected]>
Co-authored-by: apmoskevitz <[email protected]>
Co-authored-by: Tom McDonald <[email protected]>
Co-authored-by: Nickolas McDonald <[email protected]>
Co-authored-by: Adeel Mujahid <[email protected]>
Co-authored-by: kkeirstead <[email protected]>
Co-authored-by: Grisha Kotler <[email protected]>
Co-authored-by: Andy Ayers <[email protected]>
@github-actions github-actions bot locked and limited conversation to collaborators Jan 11, 2024
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.

Labels

DO NOT MERGE do not merge this PR

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants