Conversation
System.Threading.Channels (pinned to *) resolves to 10.0.5, which transitively requires Microsoft.Bcl.AsyncInterfaces >= 10.0.5. With our explicit pin at 10.0.3 NuGet emitted a NU1605 downgrade warning on every build target. Bumping the direct reference to 10.0.5 aligns it with the transitive requirement and eliminates the warning. No API surface change; all 348/348 tests pass. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
dsyme
approved these changes
Mar 25, 2026
3 tasks
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.
🤖 This PR was created by Repo Assist, an automated AI assistant.
Summary
Bumps
Microsoft.Bcl.AsyncInterfacesfrom10.0.3→10.0.5in the library project to eliminate a recurringNU1605build warning.Root Cause
The library references
System.Threading.Channelswith a floating version (*), which currently resolves to10.0.5. That version ofSystem.Threading.Channelshas a transitive requirement onMicrosoft.Bcl.AsyncInterfaces >= 10.0.5. Our explicit pin of10.0.3caused NuGet to emit a downgrade warning on every build:This warning appeared for both
netstandard2.0andnetstandard2.1targets on every build.Fix
One-line change in
FSharp.Control.AsyncSeq.fsproj:Impact
NU1605warnings per build (one per target framework).Test Status
✅ All 348/348 tests pass.
✅ No
NU1605warning in the test build output.