[Repo Assist] eng: fix NU1605 — bump Microsoft.Bcl.AsyncInterfaces 10.0.6 → 10.0.7#323
Draft
github-actions[bot] wants to merge 2 commits intomainfrom
Conversation
System.Threading.Channels (resolved as 10.0.7 via Version="*") transitively requires Microsoft.Bcl.AsyncInterfaces >= 10.0.7, but the project pinned it at 10.0.6. This produced 5 NU1605 package- downgrade warnings on every restore/build. Bumping the direct reference to 10.0.7 aligns both packages to the same .NET 10.0.7 release, eliminating all 5 NU1605 warnings. Total build warnings: 12 → 7. Co-authored-by: Copilot <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.
🤖 This PR was created by Repo Assist, an automated AI assistant.
Summary
Bumps
Microsoft.Bcl.AsyncInterfacesfrom10.0.6→10.0.7inFSharp.Control.AsyncSeq.fsproj.Problem
System.Threading.Channelsis referenced withVersion="*"(latest) and resolves to10.0.7. That package transitively requiresMicrosoft.Bcl.AsyncInterfaces >= 10.0.7, but the project directly pinned it at10.0.6. This created a version downgrade conflict, producing 5 NU1605 warnings on every restore and build:Fix
Pin
Microsoft.Bcl.AsyncInterfacesto10.0.7, matching the version transitively required bySystem.Threading.Channels 10.0.7. Both packages are part of the same .NET 10.0.7 release and have a compatible API surface.Test Status
✅ Build: 0 errors
✅ Warnings: reduced from 12 → 7 (5 NU1605 warnings eliminated; remaining 7 are pre-existing FS9999
groupBydeadlock notices)✅ Tests: 422/422 passed (package-only change — no code changes)