Skip to content
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

Add publishing for 6.0.3xx SDK channels #8391

Merged
merged 4 commits into from
Jan 25, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -416,6 +416,26 @@ public enum BuildQuality
InternalSymbolTargets,
filenamesToExclude: FilenamesToExclude),

// ".NET 6 SDK 6.0.3xx",
new TargetChannelConfig(
2551,
false,
PublishingInfraVersion.All,
new List<string>() { "6.0.3xx", "6.0" },
riarenas marked this conversation as resolved.
Show resolved Hide resolved
DotNet6Feeds,
PublicAndInternalSymbolTargets,
filenamesToExclude: FilenamesToExclude),

// ".NET 6 SDK 6.0.3xx Internal",
new TargetChannelConfig(
2552,
true,
PublishingInfraVersion.All,
new List<string>() { "internal/6.0.3xx", "internal/6.0" },
DotNet6InternalFeeds,
InternalSymbolTargets,
filenamesToExclude: FilenamesToExclude),

// ".NET 5" (public),
new TargetChannelConfig(
1299,
Expand Down