1 write to _properties
NuGet.ProjectModel (1)
LockFile\LockFileItem.cs (1)
33
_properties
??= new Dictionary<string, string>();
8 references to _properties
NuGet.ProjectModel (8)
LockFile\LockFileItem.cs (8)
29
if (
_properties
== null)
37
return
_properties
;
58
bool thisEmpty =
_properties
== null ||
_properties
.Count == 0;
59
bool otherEmpty = other.
_properties
== null || other.
_properties
.Count == 0;
67
return
_properties
.OrderedEquals(other.
_properties
, pair => pair.Key, StringComparer.Ordinal);