Bootstrap repo fix for 2xx#2806
Merged
mthalman merged 6 commits intoOct 13, 2025
Merged
Conversation
MichaelSimons
approved these changes
Oct 10, 2025
MichaelSimons
approved these changes
Oct 10, 2025
Member
Author
|
/backport to release/10.0.1xx |
Contributor
|
Started backporting to release/10.0.1xx: https://github.com/dotnet/dotnet/actions/runs/18503225160 |
Member
Author
|
/backport to main |
Contributor
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.
VMR builds for
release/10.0.2xxare failing for SB legs that are not based on CentOS with the following error:/repos/dotnet2/src/source-build-reference-packages/src/targetPacks/ILsrc/netstandard.library/2.0.3/NETStandard.Library.2.0.3.csproj error NU1603: NETStandard.Library.2.0.3 depends on runtime.ubuntu.24.04-x64.Microsoft.NETCore.ILAsm (>= 10.0.0-rc.1.25451.107) but runtime.ubuntu.24.04-x64.Microsoft.NETCore.ILAsm 10.0.0-rc.1.25451.107 was not found. runtime.ubuntu.24.04-x64.Microsoft.NETCore.ILAsm 10.0.0-rc.2.25479.113 was resolved instead. [/repos/dotnet2/.dotnet/sdk/10.0.100-rc.2.25479.113/NuGet.targets]This occurs because the
MicrosoftNETCoreILAsmPackageVersionproperty is not being overridden. It's using the version from PSB instead of from the shared components (1xx branch).This is due to the logic which collects the packages that are relevant for representation within the
PackageVersions.*.SharedComponents.propsfile. That excludes all packages when processing thesource-build-reference-packages. But we do want to allow for packages where the SBRP repo itself has a dependency on.This is fixed by explicitly allowing for SBRP's dependency packages to be included in this process of generating the SharedComponents.props file.
Another fix that was needed was to fix the pipeline logic to allow for artifact bootstrapping in 2xx builds. This was being skipped in the script.