-
Notifications
You must be signed in to change notification settings - Fork 379
Update internal publishing to use fine-grained publishing targets for .NET 10 channels #16244
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
mmitche
merged 7 commits into
main
from
copilot/update-internal-publishing-targets-again
Oct 31, 2025
Merged
Update internal publishing to use fine-grained publishing targets for .NET 10 channels #16244
mmitche
merged 7 commits into
main
from
copilot/update-internal-publishing-targets-again
Oct 31, 2025
Conversation
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
Co-authored-by: mmitche <[email protected]>
Co-authored-by: mmitche <[email protected]>
Co-authored-by: mmitche <[email protected]>
Copilot
AI
changed the title
[WIP] Update internal publishing for .NET 10 channels
Update internal publishing to use fine-grained publishing targets for .NET 10 channels
Oct 24, 2025
Copilot finished work on behalf of
mmitche
October 24, 2025 15:04
mmitche
reviewed
Oct 24, 2025
src/Microsoft.DotNet.Build.Tasks.Feed/src/model/PublishingConstants.cs
Outdated
Show resolved
Hide resolved
mmitche
reviewed
Oct 24, 2025
…for tooling packages Co-authored-by: mmitche <[email protected]>
…n changes Co-authored-by: mmitche <[email protected]>
Copilot finished work on behalf of
mmitche
October 24, 2025 16:18
mmitche
approved these changes
Oct 28, 2025
akoeplinger
approved these changes
Oct 30, 2025
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.
Summary
This PR implements fine-grained asset category-based publishing for .NET 10 internal channels, mirroring the behavior already used by public .NET 10 channels. This ensures that infrastructure and tooling packages are published to their dedicated internal feeds rather than the general .NET 10 internal feeds.
Problem
Previously, all .NET 10 internal channel packages were published to either
dotnet10-internal(shipping) ordotnet10-internal-transport(non-shipping) feeds, regardless of the asset category. This differed from the public channels, which route packages based on their category:dotnet-engdotnet-toolsdotnet-librariesfeedsSolution
Updated
DotNet10InternalFeedsto use the same fine-grained targeting approach:dotnet-eng-internaldotnet-eng-internaldotnet-tools-internaldotnet-tools-internaldotnet-libraries-internaldotnet-libraries-internal-transportdotnet10-internaldotnet10-internal-transportdotnet10-internaldotnet10-internal-transportChanges
Added new feed constant:
FeedDotNetEngInternalfor infrastructure packagesFeedDotNetToolsInternalfor tooling packages (both shipping and non-shipping)Updated
DotNet10InternalFeedsarray to route by asset category (14 feed specifications total, up from 4)Impact
This change affects all .NET 10 internal channels:
Testing
Fixes: Context from https://github.com/dotnet/release/issues/1617
Original prompt
💡 You can make Copilot smarter by setting up custom instructions, customizing its development environment and configuring Model Context Protocol (MCP) servers. Learn more Copilot coding agent tips in the docs.