1 instantiation of CatalogEntry
Microsoft.DotNet.Build.Tasks.FileCatalog (1)
CatalogEntry.cs (1)
56return new CatalogEntry(name ?? Path.GetFileName(filePath), sha1.GetHashAndReset(), sha256.GetHashAndReset());
6 references to CatalogEntry
Microsoft.DotNet.Build.Tasks.FileCatalog (6)
CatalogBuilder.cs (5)
34private readonly List<CatalogEntry> _entries = new(); 65public IReadOnlyList<CatalogEntry> Entries => _entries; 68public CatalogBuilder Add(CatalogEntry entry) 81=> Add(CatalogEntry.FromFile(filePath, name)); 110foreach (CatalogEntry entry in _entries)
CatalogEntry.cs (1)
27public static CatalogEntry FromFile(string filePath, string? name = null)