Merge v2.13 to main - #1129
Merged
Merged
Conversation
Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com>
This will avoid github API rate throttling for OSS repos that use nuget.org as their package feed.
Specifically, this merges [6dc5571 from that repo](AArnott/Library.Template@6dc5571).
…t crash The Process.Exited event fires as soon as the child process terminates, but OutputDataReceived/ErrorDataReceived callbacks can still fire afterward while the OS pipe buffers are being drained. Previously, the test awaited only the process exit, so the test method could return (and xunit could deactivate the TestOutputHelper) before all output was consumed. Late-arriving output then called logger.WriteLine() with no active test, causing xunit v3's strict TestOutputHelper to throw InvalidOperationException on a threadpool thread, crashing the test host process (exit code 7). This was exposed by the upgrade from xunit.runner.visualstudio (VSTest) to xunit.v3.mtp-v2 (MTP v2), which enforces that QueueTestOutput is only called while a test is active. Fix: track stdout/stderr EOF via TaskCompletionSources (signaled when e.Data is null) and wait for both stream completions in addition to the process exit before returning from the test.
Merge Library.Template into v2.13
npm trusted publishing
AArnott
enabled auto-merge
July 27, 2026 18:04
Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
No description provided.