Skip to content

Commit

Permalink
Add publishing for 6.0.3xx SDK channels (#8391)
Browse files Browse the repository at this point in the history
* add publishing for 6.0.3xx SDK channels
  • Loading branch information
riarenas authored Jan 25, 2022
1 parent 35d25de commit d8aec81
Showing 1 changed file with 22 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -401,7 +401,7 @@ public enum BuildQuality
2434,
false,
PublishingInfraVersion.All,
new List<string>() { "6.0.2xx", "6.0" },
new List<string>() { "6.0.2xx" },
DotNet6Feeds,
PublicAndInternalSymbolTargets,
filenamesToExclude: FilenamesToExclude),
Expand All @@ -411,7 +411,27 @@ public enum BuildQuality
2435,
true,
PublishingInfraVersion.All,
new List<string>() { "internal/6.0.2xx", "internal/6.0" },
new List<string>() { "internal/6.0.2xx" },
DotNet6InternalFeeds,
InternalSymbolTargets,
filenamesToExclude: FilenamesToExclude),

// ".NET 6 SDK 6.0.3xx",
new TargetChannelConfig(
2551,
false,
PublishingInfraVersion.All,
new List<string>() { "6.0.3xx", "6.0" },
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),
Expand Down

0 comments on commit d8aec81

Please sign in to comment.