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