DYN-10516: remove duplicate LibG PackageReferences blocking signed DLL delivery#17181
Merged
jasonstratton merged 1 commit intoJun 19, 2026
Merged
Conversation
Cherry-pick of DynamoDS#17175 added LibG 5334/5336 entries but left the old 4610/4614 entries in place. NuGet resolved the conflict by picking the lower version, causing unsigned en-GB locale DLLs in the build output. Remove the 16 stale duplicate entries. Co-Authored-By: Claude Sonnet 4.6 (1M context) <noreply@anthropic.com>
There was a problem hiding this comment.
See the ticket for this pull request: https://jira.autodesk.com/browse/DYN-10516
881773d
into
DynamoDS:RC4.1.2_master
20 of 21 checks passed
|
1 task
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.



Purpose
Fixes the root cause of unsigned en-GB locale DLLs in the Dynamo 4.1.2 release zip.
The cherry-pick of #17175 (LibG version bump to 4.0.0.5334 / 4.0.0.5336) added the new
PackageReferenceentries to 16 csproj files onRC4.1.2_masterbut did not remove the pre-existing old entries (4.0.0.4610 / 4.0.0.4614). NuGet NU1504 duplicate resolution picked the lower version, so the build restored the old unsigned packages instead of the new signed ones.This PR removes the 16 stale duplicate entries, leaving only the correct 4.0.0.5334 / 4.0.0.5336 references.
Files affected: 10 src csproj files + 6 test csproj files
Validation
After merge, trigger a new build on master-15 with
DynamoBranch = RC4.1.2_masterand verify the en-GB locale DLLs in the output zip are signed by Autodesk, Inc. and carry version 4.0.0.5334.API Changes
Release Notes
N/A - infrastructure fix for RC4.1.2_master, no user-facing change.