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