11 references to FeedConfigs
Microsoft.DotNet.Build.Tasks.Feed (10)
src\PublishArtifactsInManifestBase.cs (4)
377
if (
FeedConfigs
.TryGetValue(category, out HashSet<TargetFeedConfig> feedConfigsForCategory))
548
HashSet<TargetFeedConfig> feedConfigsForSymbols =
FeedConfigs
[TargetFeedContentType.Symbols];
823
if (
FeedConfigs
.TryGetValue(category, out HashSet<TargetFeedConfig> feedConfigsForCategory))
1043
if (
FeedConfigs
.TryGetValue(category, out HashSet<TargetFeedConfig> feedConfigsForCategory))
src\PublishArtifactsInManifestV3.cs (3)
175
if (!
FeedConfigs
.TryGetValue(categoryKey, out _))
177
FeedConfigs
[categoryKey] = new HashSet<TargetFeedConfig>();
180
FeedConfigs
[categoryKey].Add(feedConfig);
src\PublishArtifactsInManifestV4.cs (3)
170
if (!
FeedConfigs
.TryGetValue(categoryKey, out _))
172
FeedConfigs
[categoryKey] = new HashSet<TargetFeedConfig>();
175
FeedConfigs
[categoryKey].Add(feedConfig);
Microsoft.DotNet.Build.Tasks.Feed.Tests (1)
PublishToSymbolServerTest.cs (1)
228
task.
FeedConfigs
.Add(TargetFeedContentType.Symbols, feedConfigsForSymbols);