2 instantiations of NodeWarningProperties
NuGet.Commands (2)
RestoreCommand\Logging\TransitiveNoWarnUtils.cs (2)
704
internal static readonly NodeWarningProperties Empty = new
NodeWarningProperties
(null, null);
871
return new
NodeWarningProperties
(projectWide, packageSpecific);
25 references to NodeWarningProperties
NuGet.Commands (25)
RestoreCommand\Logging\TransitiveNoWarnUtils.cs (25)
93
var seen = new Dictionary<string,
NodeWarningProperties
>(StringComparer.OrdinalIgnoreCase);
143
NodeWarningProperties =
NodeWarningProperties
.Create(nodeProjectWideNoWarn, nodePackageSpecificNoWarn)
153
var
parentNoWarn =
NodeWarningProperties
.Create(parentProjectWideNoWarn, parentPackageSpecificNoWarn);
175
var
pathWarningProperties = node.NodeWarningProperties;
182
NodeWarningProperties
nodeWarningProperties = nodeLookUp.NodeWarningProperties;
267
private static bool AddToSeen(Dictionary<string,
NodeWarningProperties
> seen, DependencyNode node)
270
var
nodeProps = node.NodeWarningProperties;
272
if (!seen.TryGetValue(id, out
var
visitedProps))
294
NodeWarningProperties
nodeWarningProperties)
321
NodeWarningProperties
nodeWarningProperties,
632
public
NodeWarningProperties
NodeWarningProperties { get; }
637
NodeWarningProperties =
NodeWarningProperties
.Create(projectWideNoWarn, packageSpecificNoWarn);
641
public DependencyNode(string id, bool isProject,
NodeWarningProperties
nodeWarningProperties)
695
public
NodeWarningProperties
NodeWarningProperties { get; set; }
701
public class NodeWarningProperties : IEquatable<
NodeWarningProperties
>
704
internal static readonly
NodeWarningProperties
Empty = new NodeWarningProperties(null, null);
736
return Equals(obj as
NodeWarningProperties
);
739
public bool Equals(
NodeWarningProperties
other)
762
public
NodeWarningProperties
GetIntersect(
NodeWarningProperties
other)
809
public bool IsSubSetOf(
NodeWarningProperties
other)
862
internal static
NodeWarningProperties
Create(
880
internal
NodeWarningProperties
Merge(
NodeWarningProperties
other)