1 write to FilenamesToExclude
Microsoft.DotNet.Build.Tasks.Feed (1)
src\model\TargetFeedConfig.cs (1)
88FilenamesToExclude = filenamesToExclude?.ToImmutableList() ?? ImmutableList<string>.Empty;
8 references to FilenamesToExclude
Microsoft.DotNet.Build.Tasks.Feed (8)
src\common\LatestLinksManager.cs (1)
78.Where(asset => !feedConfig.FilenamesToExclude.Contains(Path.GetFileName(asset)))
src\model\TargetFeedConfig.cs (7)
107if (FilenamesToExclude is null) 108return other.FilenamesToExclude is null; 110if (other.FilenamesToExclude is null) 113return FilenamesToExclude.SequenceEqual(other.FilenamesToExclude); 121return (ContentType, Type, AssetSelection, Isolated, Internal, AllowOverwrite, string.Join(" ", LatestLinkShortUrlPrefixes), TargetURL, Token, Flatten, string.Join(" ", FilenamesToExclude)).GetHashCode(); 135$"\n FilenamesToExclude: \n\t{string.Join("\n\t", FilenamesToExclude)}" +