From 4fe2f9b53909dbf0898a72b383ec6ced9c157fe0 Mon Sep 17 00:00:00 2001 From: Christopher Costa Date: Wed, 29 Mar 2023 08:47:36 -0700 Subject: [PATCH] Make VS 17.7 and 17.8 promotable --- .../src/model/PublishingConstants.cs | 20 +++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/src/Microsoft.DotNet.Build.Tasks.Feed/src/model/PublishingConstants.cs b/src/Microsoft.DotNet.Build.Tasks.Feed/src/model/PublishingConstants.cs index 1760a369a3a..a107a61058d 100644 --- a/src/Microsoft.DotNet.Build.Tasks.Feed/src/model/PublishingConstants.cs +++ b/src/Microsoft.DotNet.Build.Tasks.Feed/src/model/PublishingConstants.cs @@ -943,6 +943,26 @@ public enum BuildQuality symbolTargetType: PublicAndInternalSymbolTargets, filenamesToExclude: FilenamesToExclude, flatten: false), + // VS 17.7, + new TargetChannelConfig( + id: 3581, + isInternal: false, + publishingInfraVersion: PublishingInfraVersion.All, + akaMSChannelNames: new List(), + targetFeeds: DotNetToolsFeeds, + symbolTargetType: PublicAndInternalSymbolTargets, + filenamesToExclude: FilenamesToExclude, + flatten: false), + // VS 17.8, + new TargetChannelConfig( + id: 3582, + isInternal: false, + publishingInfraVersion: PublishingInfraVersion.All, + akaMSChannelNames: new List(), + targetFeeds: DotNetToolsFeeds, + symbolTargetType: PublicAndInternalSymbolTargets, + filenamesToExclude: FilenamesToExclude, + flatten: false), }; #endregion }