2 instantiations of Asset
NuGet.Packaging (2)
ContentModel\ContentItemCollection.cs (2)
46
_assets.Add(new
Asset
()
55
_assets.Add(new
Asset
12 references to Asset
NuGet.Packaging (12)
ContentModel\ContentItemCollection.cs (12)
19
private static readonly SimplePool<List<
Asset
>> ListAssetPool = new(() => new List<
Asset
>());
20
private static readonly SimplePool<Dictionary<ContentItem, List<
Asset
>>> GroupAssetsPool = new(() => new(GroupComparer.DefaultComparer));
22
private List<
Asset
>? _assets;
39
_assets = new List<
Asset
>();
96
Dictionary<ContentItem, List<
Asset
>>? groupAssets = null;
97
foreach (
var
asset in _assets)
248
private List<ContentItem> FindItemsImplementation(PatternSet definition, IEnumerable<
Asset
> assets)
254
foreach (
var
asset in assets.NoAllocEnumerate())
281
internal string? GetRelatedFileExtensionProperty(string assemblyPath, IEnumerable<
Asset
> assets)
292
foreach (
Asset
asset in assets.NoAllocEnumerate())
342
static ReadOnlyMemory<char> GetExtension(
Asset
asset)