11 references to FeedConfigs
Microsoft.DotNet.Build.Tasks.Feed (10)
src\PublishArtifactsInManifestBase.cs (4)
430
if (
FeedConfigs
.TryGetValue(category, out HashSet<TargetFeedConfig> feedConfigsForCategory))
602
HashSet<TargetFeedConfig> feedConfigsForSymbols =
FeedConfigs
[TargetFeedContentType.Symbols];
877
if (
FeedConfigs
.TryGetValue(category, out HashSet<TargetFeedConfig> feedConfigsForCategory))
1097
if (
FeedConfigs
.TryGetValue(category, out HashSet<TargetFeedConfig> feedConfigsForCategory))
src\PublishArtifactsInManifestV3.cs (3)
179
if (!
FeedConfigs
.TryGetValue(categoryKey, out _))
181
FeedConfigs
[categoryKey] = new HashSet<TargetFeedConfig>();
184
FeedConfigs
[categoryKey].Add(feedConfig);
src\PublishArtifactsInManifestV4.cs (3)
174
if (!
FeedConfigs
.TryGetValue(categoryKey, out _))
176
FeedConfigs
[categoryKey] = new HashSet<TargetFeedConfig>();
179
FeedConfigs
[categoryKey].Add(feedConfig);
Microsoft.DotNet.Build.Tasks.Feed.Tests (1)
PublishToSymbolServerTest.cs (1)
228
task.
FeedConfigs
.Add(TargetFeedContentType.Symbols, feedConfigsForSymbols);