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