build: bump NuGet.Packaging to 7.9.0 to unbreak the NUKE build on SDK 10.0.400 - #175
Open
DenDeline wants to merge 1 commit into
Open
build: bump NuGet.Packaging to 7.9.0 to unbreak the NUKE build on SDK 10.0.400#175DenDeline wants to merge 1 commit into
DenDeline wants to merge 1 commit into
Conversation
DenDeline
marked this pull request as ready for review
August 20, 2026 05:57
|
PR author is not in the allowed authors list. |
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.
Problem
NUKE project evaluation fails on .NET SDK 10.0.400 before tests run:
Cause
The NUKE project pins NuGet.Packaging 7.0.3, which brings an app-local NuGet.Frameworks 7.0.3 into the build output. SDK 10.0.400 MSBuild requires NuGet.Frameworks 7.9.0.0, so the older app-local assembly shadows the SDK copy and fails assembly binding.
Expected behavior
NUKE should evaluate net10.0 projects and execute build targets under SDK 10.0.400.
Change
Bump NuGet.Packaging to 7.9.0 so the NuGet assembly family is compatible with the current SDK. No workflow, product, or API changes are included.
Verification
Related
Mirrors elsa-workflows/elsa-core#7919, which fixed the same SDK 10.0.400 failure in Elsa Core.