Skip to content

Commit

Permalink
Adding the 9.0.2xx channels (#15097)
Browse files Browse the repository at this point in the history
  • Loading branch information
marcpopMSFT committed Sep 20, 2024
1 parent ac8f5da commit 14ffcc4
Showing 1 changed file with 20 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -795,6 +795,26 @@ public enum BuildQuality
symbolTargetType: SymbolPublishVisibility.Internal,
filenamesToExclude: FilenamesToExclude),

// .NET 9.0.2xx SDK,
new TargetChannelConfig(
id: 5286,
isInternal: false,
publishingInfraVersion: PublishingInfraVersion.Latest,
akaMSChannelNames: new List<string>() { "9.0.2xx" },
targetFeeds: DotNet9Feeds,
symbolTargetType: SymbolPublishVisibility.Public,
filenamesToExclude: FilenamesToExclude),

// .NET 9.0.2xx SDK Internal,
new TargetChannelConfig(
id: 5287,
isInternal: true,
publishingInfraVersion: PublishingInfraVersion.Latest,
akaMSChannelNames: new List<string>() { "internal/9.0.2xx" },
targetFeeds: DotNet9InternalFeeds,
symbolTargetType: SymbolPublishVisibility.Internal,
filenamesToExclude: FilenamesToExclude),

// .NET 9 RC 1
new TargetChannelConfig(
id: 5119,
Expand Down

0 comments on commit 14ffcc4

Please sign in to comment.