@@ -76,6 +76,8 @@ public enum BuildQuality
76
76
77
77
private const string FeedDotNetExperimental = "https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet-experimental/nuget/v3/index.json" ;
78
78
79
+ private const string FeedDotNetExperimentalInternal = "https://pkgs.dev.azure.com/dnceng/internal/_packaging/dotnet-experimental-internal/nuget/v3/index.json" ;
80
+
79
81
public const string FeedDotNetEng = "https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet-eng/nuget/v3/index.json" ;
80
82
81
83
private const string FeedDotNetTools = "https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet-tools/nuget/v3/index.json" ;
@@ -259,6 +261,14 @@ public enum BuildQuality
259
261
( TargetFeedContentType . Checksum , FeedStagingForChecksums ) ,
260
262
} ;
261
263
264
+ private static TargetFeedSpecification [ ] DotNetExperimentalInternalFeeds =
265
+ {
266
+ ( TargetFeedContentType . Package , FeedDotNetExperimentalInternal , AssetSelection . ShippingOnly ) ,
267
+ ( TargetFeedContentType . Package , FeedDotNetExperimentalInternal , AssetSelection . NonShippingOnly ) ,
268
+ ( InstallersAndSymbols , FeedStagingInternalForInstallers ) ,
269
+ ( TargetFeedContentType . Checksum , FeedStagingInternalForChecksums ) ,
270
+ } ;
271
+
262
272
private static TargetFeedSpecification [ ] DotNetLibrariesFeeds =
263
273
{
264
274
( TargetFeedContentType . Package , FeedDotNetLibrariesShipping , AssetSelection . ShippingOnly ) ,
@@ -1076,6 +1086,18 @@ public enum BuildQuality
1076
1086
symbolTargetType : SymbolPublishVisibility . Public ,
1077
1087
flatten : false ) ,
1078
1088
1089
+ // .NET Experimental Internal,
1090
+ new TargetChannelConfig (
1091
+ id : 6820 ,
1092
+ isInternal : true ,
1093
+ publishingInfraVersion : PublishingInfraVersion . Latest ,
1094
+ akaMSChannelNames : [ ] ,
1095
+ akaMSCreateLinkPatterns : DefaultAkaMSCreateLinkPatterns ,
1096
+ akaMSDoNotCreateLinkPatterns : DefaultAkaMSDoNotCreateLinkPatterns ,
1097
+ targetFeeds : DotNetExperimentalInternalFeeds ,
1098
+ symbolTargetType : SymbolPublishVisibility . Internal ,
1099
+ flatten : false ) ,
1100
+
1079
1101
// .NET Core Tooling Dev,
1080
1102
new TargetChannelConfig (
1081
1103
id : 548 ,
0 commit comments