4 references to Attributes
NuGet.Packaging (4)
Rules\DependenciesGroupsForEachTFMRule.cs (1)
195
return nuspec.Descendants(XName.Get("{" + name.NamespaceName + "}dependencies")).Elements().
Attributes
("targetFramework").Select(f => NuGetFramework.Parse(f.Value));
Rules\ReferencesInNuspecMatchRefAssetsRule.cs (3)
39
var targetFrameworks = nuspec.Descendants(XName.Get("{" + name.NamespaceName + "}references")).Elements().
Attributes
("targetFramework");
41
k => k.Parent!.Elements().
Attributes
("file").Select(f => f.Value));
43
.Elements().
Attributes
("file").Select(f => f.Value);