1 write to ContentTypes
Microsoft.DotNet.Build.Tasks.Feed (1)
src\model\TargetChannelConfig.cs (1)
193ContentTypes = contentTypes.ToImmutableList();
9 references to ContentTypes
Microsoft.DotNet.Build.Tasks.Feed (8)
src\model\SetupTargetFeedConfigV3.cs (1)
127foreach (var type in spec.ContentTypes)
src\model\SetupTargetFeedConfigV4.cs (1)
128foreach (var type in spec.ContentTypes)
src\model\TargetChannelConfig.cs (6)
85$"\n {string.Join("\n ", TargetFeeds.Select(f => $"{string.Join(", ", f.ContentTypes)} -> {f.FeedUrl}"))}" + 203public bool Equals(TargetFeedSpecification other) => ContentTypes.Count == other.ContentTypes.Count && 204ContentTypes.Zip(other.ContentTypes, (l, r) => l.Equals(r)).All(b => b) && 210foreach (var t in ContentTypes)
Microsoft.DotNet.Build.Tasks.Feed.Tests (1)
GeneralTests.cs (1)
35channelConfig.TargetFeeds.Should().Contain(f => f.ContentTypes.Contains(type));